common/templates/job_start

28 lines
893 B
Plaintext

datacenters = [[ .nomad.datacenters | toJSON ]]
[[- if has .nomad "region" ]]
region = [[ .nomad.region | toJSON ]]
[[- end ]]
[[- if has .nomad "node_pool" ]]
node_pool = [[ .nomad.node_pool | toJSON ]]
[[- end ]]
[[- if has .nomad "priority" ]]
priority = [[ .nomad.priority ]]
[[- end ]]
[[ template "common/constraints" . ]]
[[- if has .nomad "update" ]]
update {
[[- range $key := coll.Slice "max_parallel" "health_check" "min_healthy_time" "healthy_deadline" "progress_deadline" "auto_revert" "auto_promote" "canary" "stagger" ]]
[[- if has $.nomad.update $key ]]
[[- if or (test.IsKind "bool" (index $.nomad.update $key)) (test.IsKind "number" (index $.nomad.update $key)) ]]
[[ $key ]] = [[ index $.nomad.update $key ]]
[[- else ]]
[[ $key ]] = [[ index $.nomad.update $key | toJSON ]]
[[- end ]]
[[- end ]]
[[- end ]]
}
[[- end ]]