From 74bf7a2a8490a3d1d918edea549c6ea019429219 Mon Sep 17 00:00:00 2001 From: Matt Pryor Date: Thu, 2 Sep 2021 09:48:58 +0100 Subject: [PATCH] Fix typo in machine image for node group --- .../templates/node-group/openstack-machine-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openstack-cluster/templates/node-group/openstack-machine-template.yaml b/charts/openstack-cluster/templates/node-group/openstack-machine-template.yaml index 0004b95..7ed28c0 100644 --- a/charts/openstack-cluster/templates/node-group/openstack-machine-template.yaml +++ b/charts/openstack-cluster/templates/node-group/openstack-machine-template.yaml @@ -11,7 +11,7 @@ template: kind: Secret name: {{ include "openstack-cluster.componentName" (list $ctx "cloud-config") }} cloudName: openstack - image: {{ tpl (required ".Values.machineImage is required" $ctx.Values.machineImage) . }} + image: {{ tpl (required ".Values.machineImage is required" $ctx.Values.machineImage) $ctx }} flavor: {{ pluck "machineFlavor" $nodeGroup $ctx.Values.nodeGroupDefaults | first | required (printf "no flavor specified for node group '%s'" $nodeGroup.name) }} sshKeyName: {{ $ctx.Values.machineSSHKeyName | required ".Values.machineSSHKeyName is required" }} {{- end }}