-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indexer image secret #6
Conversation
@@ -0,0 +1,117 @@ | |||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i believe this yaml manifest was commited by mistake. To be removed.
charts/indexer/values.yaml
Outdated
@@ -16,6 +16,9 @@ image: | |||
tag: latest | |||
pullPolicy: IfNotPresent | |||
|
|||
imagePullSecrets: | |||
name: "PLACEHOLDER_REGISTRY_SECRET_NAME" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- it should be an array.
- by default should be empty
imagePullSecrets: []
{{- range .Values.imagePullSecrets }} | ||
- name: {{ .name }} | ||
{{- end }} | ||
{{- end }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or could be:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
No description provided.