Make config names configurable
Signed-off-by: Talia Stocks <928827+taliastocks@users.noreply.github.com>
This commit is contained in:
parent
f9e2a94bb6
commit
a1af6995fb
1 changed files with 11 additions and 11 deletions
|
@ -45,31 +45,31 @@ spec:
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: applications_api
|
key: applications_api
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: ARGOCD_GRPC_WEB
|
- name: ARGOCD_GRPC_WEB
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: argocd.grpc_web
|
key: argocd.grpc_web
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: ARGOCD_SERVER
|
- name: ARGOCD_SERVER
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: argocd.server_addr
|
key: argocd.server_addr
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: ARGOCD_INSECURE
|
- name: ARGOCD_INSECURE
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: argocd.insecure
|
key: argocd.insecure
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: ARGOCD_PLAINTEXT
|
- name: ARGOCD_PLAINTEXT
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: argocd.plaintext
|
key: argocd.plaintext
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: ARGOCD_TOKEN
|
- name: ARGOCD_TOKEN
|
||||||
valueFrom:
|
valueFrom:
|
||||||
|
@ -81,25 +81,25 @@ spec:
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: log.level
|
key: log.level
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: GIT_COMMIT_USER
|
- name: GIT_COMMIT_USER
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: git.user
|
key: git.user
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: GIT_COMMIT_EMAIL
|
- name: GIT_COMMIT_EMAIL
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: git.email
|
key: git.email
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
- name: IMAGE_UPDATER_KUBE_EVENTS
|
- name: IMAGE_UPDATER_KUBE_EVENTS
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: kube.events
|
key: kube.events
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
{{- with .Values.extraEnv }}
|
{{- with .Values.extraEnv }}
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
|
@ -152,7 +152,7 @@ spec:
|
||||||
path: registries.conf
|
path: registries.conf
|
||||||
- key: git.commit-message-template
|
- key: git.commit-message-template
|
||||||
path: commit.template
|
path: commit.template
|
||||||
name: argocd-image-updater-config
|
name: {{ .Values.configName }}
|
||||||
optional: true
|
optional: true
|
||||||
name: image-updater-conf
|
name: image-updater-conf
|
||||||
{{- if .Values.authScripts.enabled }}
|
{{- if .Values.authScripts.enabled }}
|
||||||
|
@ -168,7 +168,7 @@ spec:
|
||||||
optional: true
|
optional: true
|
||||||
name: ssh-known-hosts
|
name: ssh-known-hosts
|
||||||
- configMap:
|
- configMap:
|
||||||
name: argocd-image-updater-ssh-config
|
name: {{ .Values.sshConfigName }}
|
||||||
optional: true
|
optional: true
|
||||||
name: ssh-config
|
name: ssh-config
|
||||||
{{- with .Values.volumes }}
|
{{- with .Values.volumes }}
|
||||||
|
|
Loading…
Reference in a new issue