Skip to content

Commit 866264e

Browse files
committed
fix: Setting VM Image to PLACEHOLDER Value in templates
1 parent a78554d commit 866264e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

templates/base/nmt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
systemDiskSize: "${NUTANIX_SYSTEMDISK_SIZE=40Gi}"
1717
image:
1818
type: name
19-
name: "${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME}"
19+
name: "${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME:=placeholder-image}"
2020
cluster:
2121
type: name
2222
name: "${NUTANIX_PRISM_ELEMENT_CLUSTER_NAME}"

templates/cluster-template-csi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1925,7 +1925,7 @@ spec:
19251925
name: ${NUTANIX_PRISM_ELEMENT_CLUSTER_NAME}
19261926
type: name
19271927
image:
1928-
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME}
1928+
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME:=placeholder-image}
19291929
type: name
19301930
memorySize: ${NUTANIX_MACHINE_MEMORY_SIZE=4Gi}
19311931
providerID: nutanix://${CLUSTER_NAME}-m1

templates/cluster-template-csi3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2095,7 +2095,7 @@ spec:
20952095
name: ${NUTANIX_PRISM_ELEMENT_CLUSTER_NAME}
20962096
type: name
20972097
image:
2098-
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME}
2098+
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME:=placeholder-image}
20992099
type: name
21002100
memorySize: ${NUTANIX_MACHINE_MEMORY_SIZE=4Gi}
21012101
providerID: nutanix://${CLUSTER_NAME}-m1

templates/cluster-template-failure-domains.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ spec:
632632
spec:
633633
bootType: ${NUTANIX_MACHINE_BOOT_TYPE=legacy}
634634
image:
635-
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME}
635+
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME:=placeholder-image}
636636
type: name
637637
memorySize: ${NUTANIX_MACHINE_MEMORY_SIZE=4Gi}
638638
providerID: nutanix://${CLUSTER_NAME}-m1

templates/cluster-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ spec:
591591
name: ${NUTANIX_PRISM_ELEMENT_CLUSTER_NAME}
592592
type: name
593593
image:
594-
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME}
594+
name: ${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME:=placeholder-image}
595595
type: name
596596
memorySize: ${NUTANIX_MACHINE_MEMORY_SIZE=4Gi}
597597
providerID: nutanix://${CLUSTER_NAME}-m1

0 commit comments

Comments
 (0)