renovatebot/helm-charts

Add support for hostAliases

Closed this issue · 2 comments

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 }}
...

I prepped a quick PR #235
Let me know if anything else is missing to push this forward.

@viceice I believe this issue can be closed, correct?