12345678910111213141516171819202122232425262728293031323334353637 |
- {{/* Returns Host Aliases */}}
- {{/* Call this template:
- {{ include "ix.v1.common.lib.pod.hostAliases" (dict "rootCtx" $ "objectData" $objectData) }}
- rootCtx: The root context of the chart.
- objectData: The object data to be used to render the Pod.
- */}}
- {{- define "ix.v1.common.lib.pod.hostAliases" -}}
- {{- $rootCtx := .rootCtx -}}
- {{- $objectData := .objectData -}}
- {{- $aliases := list -}}
- {{/* Initialize from the "global" option */}}
- {{- with $rootCtx.Values.podOptions.hostAliases -}}
- {{- $aliases = . -}}
- {{- end -}}
- {{/* Override with pod's option */}}
- {{- with $objectData.podSpec.hostAliases -}}
- {{- $aliases = . -}}
- {{- end -}}
- {{- range $aliases -}}
- {{- if not .ip -}}
- {{- fail (printf "Expected non-empty <ip> value on <hostAliases>.") -}}
- {{- end -}}
- {{- if not .hostnames -}}
- {{- fail (printf "Expected non-empty <hostames> list on <hostAliases>.") -}}
- {{- end }}
- - ip: {{ tpl .ip $rootCtx }}
- hostnames:
- {{- range .hostnames }}
- - {{ tpl . $rootCtx }}
- {{- end -}}
- {{- end -}}
- {{- end -}}
|