Skip to content

Commit

Permalink
Merge pull request #92 from canonical/fix/optional-maas-tags
Browse files Browse the repository at this point in the history
make maas machine tags optional
  • Loading branch information
neoaggelos authored Mar 1, 2024
2 parents 25edd4e + 095da33 commit 22f9dc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/cluster-template-maas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
minMemory: ${CONTROL_PLANE_MACHINE_MINMEMORY}
image: ${CONTROL_PLANE_MACHINE_IMAGE}
resourcePool: ${CONTROL_PLANE_MACHINE_RESOURCEPOOL:= }
tags: [ ${CONTROL_PLANE_MACHINE_TAGS} ]
tags: [ ${CONTROL_PLANE_MACHINE_TAGS:= } ]
---
apiVersion: cluster.x-k8s.io/v1beta1
kind: MachineDeployment
Expand Down Expand Up @@ -90,7 +90,7 @@ spec:
minMemory: ${WORKER_MACHINE_MINMEMORY}
image: ${WORKER_MACHINE_IMAGE}
resourcePool: ${WORKER_MACHINE_RESOURCEPOOL:= }
tags: [ ${WORKER_MACHINE_TAGS} ]
tags: [ ${WORKER_MACHINE_TAGS:= } ]
---
apiVersion: bootstrap.cluster.x-k8s.io/v1beta1
kind: MicroK8sConfigTemplate
Expand Down

0 comments on commit 22f9dc6

Please sign in to comment.