Skip to content

Commit 7f9a1c5

Browse files
author
Ruslan Gainutdinov
committed
fix: revert to the correct OS images in prod
1 parent f5c275c commit 7f9a1c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/clusters_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ def create_cluster_example():
3535

3636
# Get available images for cluster type
3737
images = verda.clusters.get_cluster_images('16B200')
38-
if 'ubuntu-22.04-cuda-12.4-cluster' not in images:
38+
if 'ubuntu-22.04-cuda-12.9-cluster' not in images:
3939
raise ValueError('Ubuntu 22.04 CUDA 12.9 cluster image is not supported for 16B200')
4040

4141
# Create a 16B200 cluster
4242
cluster = verda.clusters.create(
4343
hostname='my-compute-cluster',
4444
cluster_type='16B200',
45-
image='ubuntu-22.04-cuda-12.4-cluster',
45+
image='ubuntu-22.04-cuda-12.9-cluster',
4646
description='Example compute cluster for distributed training',
4747
ssh_key_ids=ssh_keys,
4848
location=Locations.FIN_03,

0 commit comments

Comments
 (0)