argo-cd: add server image pull secrets
useful to have when customizing server with Bring Your Own Image (BYOI)
This commit is contained in:
parent
874576fddc
commit
e206bd9fbf
3 changed files with 7 additions and 0 deletions
|
@ -88,3 +88,4 @@ $ helm install --name my-release argo/argo-cd
|
||||||
| server.volumeMounts | list | `[]` | Additional volume mounts, see [values.yaml](./values.yaml) for syntax for SSH known hosts |
|
| server.volumeMounts | list | `[]` | Additional volume mounts, see [values.yaml](./values.yaml) for syntax for SSH known hosts |
|
||||||
| server.volumes | list | `[]` | Additional volumes, see [values.yaml](./values.yaml) for syntax for SSH known hosts |
|
| server.volumes | list | `[]` | Additional volumes, see [values.yaml](./values.yaml) for syntax for SSH known hosts |
|
||||||
| server.initContainers | list | `[]` | Initialisation containers, see [values.yaml](./values.yaml) for syntax for Helm v2.12.3 |
|
| server.initContainers | list | `[]` | Initialisation containers, see [values.yaml](./values.yaml) for syntax for Helm v2.12.3 |
|
||||||
|
| server.imagePullSecrets | list | `[]` | List of image pull secrets, see [values.yaml](./values.yaml) for syntax for a secret called "docker-auth-secret" |
|
||||||
|
|
|
@ -78,3 +78,7 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
{{ toYaml .Values.server.initContainers | nindent 6 | trim }}
|
{{ toYaml .Values.server.initContainers | nindent 6 | trim }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.server.initContainers }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{ toYaml .Values.server.imagePullSecrets | nindent 6 | trim }}
|
||||||
|
{{- end }}
|
||||||
|
|
|
@ -39,6 +39,8 @@ server:
|
||||||
# volumeMounts:
|
# volumeMounts:
|
||||||
# - mountPath: /custom-tools
|
# - mountPath: /custom-tools
|
||||||
# name: custom-tools
|
# name: custom-tools
|
||||||
|
imagePullSecrets: []
|
||||||
|
# - name: docker-auth-secret
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
|
||||||
repoServer:
|
repoServer:
|
||||||
|
|
Loading…
Reference in a new issue