{{/* Job Validation */}} {{/* Call this template: {{ include "ix.v1.common.lib.workload.jobValidation" (dict "objectData" $objectData) -}} rootCtx: The root context of the chart. objectData: completionMode: The completionMode of the object. completions: The completions of the object. parallelism: The parallelism of the object. */}} {{- define "ix.v1.common.lib.workload.jobValidation" -}} {{- $objectData := .objectData -}} {{- if $objectData.completionMode -}} {{- $completionMode := $objectData.completionMode -}} {{- if not (mustHas $completionMode (list "Indexed" "NonIndexed")) -}} {{- fail (printf "Job - Expected to be one of [Indexed, NonIndexed], but got [%v]" $completionMode) -}} {{- end -}} {{- if eq $completionMode "Indexed" -}} {{- if not $objectData.completions -}} {{- fail "Job - Expected to be set when is set to [Indexed]" -}} {{- end -}} {{- if not $objectData.parallelism -}} {{- fail "Job - Expected to be set when is set to [Indexed]" -}} {{- end -}} {{- end -}} {{- end -}} {{- end -}}