You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the process to build plus involves us pushing an image to an internally hosted repo that requires authentication. The current chart from what I can tell does not allow you to specify imagepullsecrets on release deployment.
Additional context
The current work around is for me to attach secret to service account or alter the helm chart to process an imagePullSecrets section. I am currently using the chart modification route which will eventually cause issues keeping the local chart in sync with the latest nginxinc chart.
Current work around
cat controller-daemonset.yaml
spec:
...
{{- if .Values.imagePullSecrets.name }}
imagePullSecrets:
- name: {{ .Values.imagePullSecrets.name | quote }}
{{- end }}
...
No reason other than not having to taint the service account namespace wide. Either would work in this particular case since we are only using a single release/service account.
Currently the process to build plus involves us pushing an image to an internally hosted repo that requires authentication. The current chart from what I can tell does not allow you to specify imagepullsecrets on release deployment.
Additional context
The current work around is for me to attach secret to service account or alter the helm chart to process an imagePullSecrets section. I am currently using the chart modification route which will eventually cause issues keeping the local chart in sync with the latest nginxinc chart.
Current work around
The text was updated successfully, but these errors were encountered: