Skip to content

Commit 32e03a7

Browse files
authored
Merge pull request #4281 from Shuang-cnt/update_a3_mega_debian_image
update debian image and kernel header in a3m and CRD
2 parents 71d3fa3 + 88e0bb7 commit 32e03a7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

community/modules/remote-desktop/chrome-remote-desktop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ No resources.
8585
| <a name="input_guest_accelerator"></a> [guest\_accelerator](#input\_guest\_accelerator) | List of the type and count of accelerator cards attached to the instance. Requires virtual workstation accelerator if Nvidia Grid Drivers are required | <pre>list(object({<br/> type = string,<br/> count = number<br/> }))</pre> | <pre>[<br/> {<br/> "count": 1,<br/> "type": "nvidia-tesla-t4-vws"<br/> }<br/>]</pre> | no |
8686
| <a name="input_install_nvidia_driver"></a> [install\_nvidia\_driver](#input\_install\_nvidia\_driver) | Installs the nvidia driver (true/false). For details, see https://cloud.google.com/compute/docs/gpus/install-drivers-gpu | `bool` | n/a | yes |
8787
| <a name="input_instance_count"></a> [instance\_count](#input\_instance\_count) | Number of instances | `number` | `1` | no |
88-
| <a name="input_instance_image"></a> [instance\_image](#input\_instance\_image) | Image used to build chrome remote desktop node. The default image is<br/>name="debian-12-bookworm-v20250415" and project="debian-cloud".<br/>NOTE: uses fixed version of image to avoid NVIDIA driver compatibility issues.<br/><br/>An alternative image is from name="ubuntu-2204-jammy-v20240126" and project="ubuntu-os-cloud".<br/><br/>Expected Fields:<br/>name: The name of the image. Mutually exclusive with family.<br/>family: The image family to use. Mutually exclusive with name.<br/>project: The project where the image is hosted. | `map(string)` | <pre>{<br/> "name": "debian-12-bookworm-v20250415",<br/> "project": "debian-cloud"<br/>}</pre> | no |
88+
| <a name="input_instance_image"></a> [instance\_image](#input\_instance\_image) | Image used to build chrome remote desktop node. The default image is<br/>name="debian-12-bookworm-v20250610" and project="debian-cloud".<br/>NOTE: uses fixed version of image to avoid NVIDIA driver compatibility issues.<br/><br/>An alternative image is from name="ubuntu-2204-jammy-v20240126" and project="ubuntu-os-cloud".<br/><br/>Expected Fields:<br/>name: The name of the image. Mutually exclusive with family.<br/>family: The image family to use. Mutually exclusive with name.<br/>project: The project where the image is hosted. | `map(string)` | <pre>{<br/> "name": "debian-12-bookworm-v20250610",<br/> "project": "debian-cloud"<br/>}</pre> | no |
8989
| <a name="input_labels"></a> [labels](#input\_labels) | Labels to add to the instances. Key-value pairs. | `map(string)` | `{}` | no |
9090
| <a name="input_machine_type"></a> [machine\_type](#input\_machine\_type) | Machine type to use for the instance creation. Must be N1 family if GPU is used. | `string` | `"n1-standard-8"` | no |
9191
| <a name="input_metadata"></a> [metadata](#input\_metadata) | Metadata, provided as a map | `map(string)` | `{}` | no |

community/modules/remote-desktop/chrome-remote-desktop/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ variable "network_storage" {
5858
variable "instance_image" {
5959
description = <<-EOD
6060
Image used to build chrome remote desktop node. The default image is
61-
name="debian-12-bookworm-v20250415" and project="debian-cloud".
61+
name="debian-12-bookworm-v20250610" and project="debian-cloud".
6262
NOTE: uses fixed version of image to avoid NVIDIA driver compatibility issues.
6363
6464
An alternative image is from name="ubuntu-2204-jammy-v20240126" and project="ubuntu-os-cloud".
@@ -71,7 +71,7 @@ variable "instance_image" {
7171
type = map(string)
7272
default = {
7373
project = "debian-cloud"
74-
name = "debian-12-bookworm-v20250415"
74+
name = "debian-12-bookworm-v20250610"
7575
}
7676
}
7777

examples/machine-learning/a3-megagpu-8g/debian/slurm-a3mega-image.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ validators:
2424
# deployment-image-cluster.yaml
2525
vars:
2626
deployment_name: a3mega-image
27-
source_image: debian-12-bookworm-v20250415
27+
source_image: debian-12-bookworm-v20250610
2828

2929
deployment_groups:
3030
- group: build_script
@@ -95,7 +95,7 @@ deployment_groups:
9595
hosts: all
9696
become: true
9797
vars:
98-
package_url: https://snapshot.debian.org/archive/debian/20250415T211946Z/pool/main/l/linux/linux-headers-6.1.0-33-cloud-amd64_6.1.133-1_amd64.deb
98+
package_url: https://snapshot.debian.org/archive/debian/20250525T205402Z/pool/main/l/linux/linux-headers-6.1.0-37-cloud-amd64_6.1.140-1_amd64.deb
9999
package_filename: /tmp/{{ package_url | basename }}
100100
tasks:
101101
- name: Download kernel headers package

0 commit comments

Comments
 (0)