Skip to content

Commit d9ce2cd

Browse files
authored
fix: workloads not scheduling on A3 Ultra clusters (#441)
1 parent d1b7331 commit d9ce2cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xpk/core/workload_decorators/rdma_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def add_annotations(job_manifest: dict, sub_networks: list[str]):
8585
annotations = job_manifest['spec']['template']['metadata']['annotations']
8686
interfaces_key, interfaces_value = get_interfaces_entry(sub_networks)
8787
annotations.update({
88-
'networking.gke.io/default-interface': "'eth0'",
88+
'networking.gke.io/default-interface': 'eth0',
8989
interfaces_key: interfaces_value,
9090
})
9191

0 commit comments

Comments
 (0)