argo-cd: set pull secret + init containers on repo server
This commit is contained in:
parent
e206bd9fbf
commit
a03e84c99a
4 changed files with 24 additions and 23 deletions
|
@ -75,6 +75,8 @@ $ helm install --name my-release argo/argo-cd
|
||||||
| repoServer.servicePort | int | `8081` | Service port for repo server |
|
| repoServer.servicePort | int | `8081` | Service port for repo server |
|
||||||
| repoServer.volumeMounts | list | `[]` | Additional volume mounts |
|
| repoServer.volumeMounts | list | `[]` | Additional volume mounts |
|
||||||
| repoServer.volumes | list | `[]` | Additional volumes |
|
| repoServer.volumes | list | `[]` | Additional volumes |
|
||||||
|
| repoServer.initContainers | list | `[]` | Initialisation containers, see [values.yaml](./values.yaml) for syntax for Helm v2.12.3 |
|
||||||
|
| repoServer.imagePullSecrets | list | `[]` | List of image pull secrets, see [values.yaml](./values.yaml) for syntax for a secret called "docker-auth-secret" |
|
||||||
| server.annotations | object | `{}` | Annotations for the server deployment |
|
| server.annotations | object | `{}` | Annotations for the server deployment |
|
||||||
| server.containerPort | int | `8080` | Container port for server |
|
| server.containerPort | int | `8080` | Container port for server |
|
||||||
| server.extraArgs | list | `[]` | Add additional arguments |
|
| server.extraArgs | list | `[]` | Add additional arguments |
|
||||||
|
@ -87,5 +89,3 @@ $ helm install --name my-release argo/argo-cd
|
||||||
| server.servicePortHttps | int | `443` | HTTPS Container port for server |
|
| server.servicePortHttps | int | `443` | HTTPS Container port for server |
|
||||||
| 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.imagePullSecrets | list | `[]` | List of image pull secrets, see [values.yaml](./values.yaml) for syntax for a secret called "docker-auth-secret" |
|
|
||||||
|
|
|
@ -59,3 +59,11 @@ spec:
|
||||||
{{- if .Values.repoServer.volumes }}
|
{{- if .Values.repoServer.volumes }}
|
||||||
{{ toYaml .Values.repoServer.volumes | nindent 6 | trim }}
|
{{ toYaml .Values.repoServer.volumes | nindent 6 | trim }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.repoServer.initContainers }}
|
||||||
|
initContainers:
|
||||||
|
{{ toYaml .Values.repoServer.initContainers | nindent 6 | trim }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.repoServer.initContainers }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{ toYaml .Values.repoServer.imagePullSecrets | nindent 6 | trim }}
|
||||||
|
{{- end }}
|
|
@ -74,11 +74,4 @@ spec:
|
||||||
{{- if .Values.server.volumes }}
|
{{- if .Values.server.volumes }}
|
||||||
{{ toYaml .Values.server.volumes | nindent 6 | trim }}
|
{{ toYaml .Values.server.volumes | nindent 6 | trim }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.server.initContainers }}
|
|
||||||
initContainers:
|
|
||||||
{{ toYaml .Values.server.initContainers | nindent 6 | trim }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.server.initContainers }}
|
|
||||||
imagePullSecrets:
|
|
||||||
{{ toYaml .Values.server.imagePullSecrets | nindent 6 | trim }}
|
|
||||||
{{- end }}
|
|
||||||
|
|
|
@ -27,6 +27,17 @@ server:
|
||||||
# - name: ssh-known-hosts
|
# - name: ssh-known-hosts
|
||||||
# configMap:
|
# configMap:
|
||||||
# name: argocd-ssh-known-hosts-cm
|
# name: argocd-ssh-known-hosts-cm
|
||||||
|
annotations: {}
|
||||||
|
|
||||||
|
repoServer:
|
||||||
|
containerPort: 8081
|
||||||
|
servicePort: 8081
|
||||||
|
image:
|
||||||
|
repository: argoproj/argocd
|
||||||
|
tag: v1.2.3
|
||||||
|
pullPolicy: Always
|
||||||
|
volumeMounts: []
|
||||||
|
volumes: []
|
||||||
# - name: custom-tools
|
# - name: custom-tools
|
||||||
# emptyDir: {}
|
# emptyDir: {}
|
||||||
initContainers: []
|
initContainers: []
|
||||||
|
@ -41,17 +52,6 @@ server:
|
||||||
# name: custom-tools
|
# name: custom-tools
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
# - name: docker-auth-secret
|
# - name: docker-auth-secret
|
||||||
annotations: {}
|
|
||||||
|
|
||||||
repoServer:
|
|
||||||
containerPort: 8081
|
|
||||||
servicePort: 8081
|
|
||||||
image:
|
|
||||||
repository: argoproj/argocd
|
|
||||||
tag: v1.2.3
|
|
||||||
pullPolicy: Always
|
|
||||||
volumeMounts: []
|
|
||||||
volumes: []
|
|
||||||
|
|
||||||
dexServer:
|
dexServer:
|
||||||
containerPortHttp: 5556
|
containerPortHttp: 5556
|
||||||
|
|
Loading…
Reference in a new issue