Skip to content

Commit 22f9dc6

Browse files
authored
Merge pull request #92 from canonical/fix/optional-maas-tags
make maas machine tags optional
2 parents 25edd4e + 095da33 commit 22f9dc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/cluster-template-maas.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
minMemory: ${CONTROL_PLANE_MACHINE_MINMEMORY}
5555
image: ${CONTROL_PLANE_MACHINE_IMAGE}
5656
resourcePool: ${CONTROL_PLANE_MACHINE_RESOURCEPOOL:= }
57-
tags: [ ${CONTROL_PLANE_MACHINE_TAGS} ]
57+
tags: [ ${CONTROL_PLANE_MACHINE_TAGS:= } ]
5858
---
5959
apiVersion: cluster.x-k8s.io/v1beta1
6060
kind: MachineDeployment
@@ -90,7 +90,7 @@ spec:
9090
minMemory: ${WORKER_MACHINE_MINMEMORY}
9191
image: ${WORKER_MACHINE_IMAGE}
9292
resourcePool: ${WORKER_MACHINE_RESOURCEPOOL:= }
93-
tags: [ ${WORKER_MACHINE_TAGS} ]
93+
tags: [ ${WORKER_MACHINE_TAGS:= } ]
9494
---
9595
apiVersion: bootstrap.cluster.x-k8s.io/v1beta1
9696
kind: MicroK8sConfigTemplate

0 commit comments

Comments
 (0)