Skip to content

Commit 2be6185

Browse files
committed
fix: Replace empty string as Nutanix image name placeholder value
When we update to the next minor release of CAPX (v1.8.x), the empty string we use as the image name placeholder will be invalid. This replaces the empty string with a value that will be valid in CAPX v1.8.x, but is also valid in all previous CAPX versions.
1 parent e059bb5 commit 2be6185

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charts/cluster-api-runtime-extensions-nutanix/defaultclusterclasses/nutanix-cluster-class.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ spec:
344344
spec:
345345
bootType: legacy
346346
image:
347-
name: ""
347+
name: PLACEHOLDER
348348
type: name
349349
memorySize: 4Gi
350350
systemDiskSize: 40Gi
@@ -362,7 +362,7 @@ spec:
362362
spec:
363363
bootType: legacy
364364
image:
365-
name: ""
365+
name: PLACEHOLDER
366366
type: name
367367
memorySize: 4Gi
368368
systemDiskSize: 40Gi

0 commit comments

Comments
 (0)