Add support for hostAliases
Closed this issue · 2 comments
submac commented
This is rather a straightforward request to provide the support to override hostname resolution with hostAliases as described here.
Example of how this could look like in cronjob:
...
spec:
serviceAccountName: {{ include "renovate.serviceAccountName" . }}
restartPolicy: {{ .Values.cronjob.jobRestartPolicy }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 12 }}
{{- end }}
...
submac commented
I prepped a quick PR #235
Let me know if anything else is missing to push this forward.
kvanzuijlen commented
@viceice I believe this issue can be closed, correct?