123456789101112131415161718192021222324252627282930 |
- {{/* Deployment Validation */}}
- {{/* Call this template:
- {{ include "ix.v1.common.lib.workload.deploymentValidation" (dict "objectData" $objectData) -}}
- rootCtx: The root context of the chart.
- objectData:
- strategy: The strategy of the object.
- rollingUpdate: The rollingUpdate of the object.
- */}}
- {{- define "ix.v1.common.lib.workload.deploymentValidation" -}}
- {{- $objectData := .objectData -}}
- {{- if $objectData.strategy -}}
- {{- $strategy := $objectData.strategy -}}
- {{- $strategies := (list "Recreate" "RollingUpdate") -}}
- {{- if not (mustHas $strategy $strategies) -}}
- {{- fail (printf "Deployment - Expected <strategy> to be one of [%s], but got [%v]" (join ", " $strategies) $strategy) -}}
- {{- end -}}
- {{- end -}}
- {{- if $objectData.rollingUpdate -}}
- {{- $rollUp := $objectData.rollingUpdate -}}
- {{- if and $rollUp (not (kindIs "map" $rollUp)) -}}
- {{- fail (printf "Deployment - Expected <rollingUpdate> to be a dictionary, but got [%v]" (kindOf $rollUp)) -}}
- {{- end -}}
- {{- end -}}
- {{- end -}}
|