
fix(argocd-image-updater): Properly quoting the config map values fix(argocd-image-updater): Only adding a data field to argocd-image-updater-ssh-config when there's data to be added fix(argocd-image-updater): Only include config.argocd if config.applicationsAPIKind is set to 'argocd' chore(argocd-image-updater): removing unneeded whitespace in Role and RoleBinding Signed-off-by: Abdullah Alaqeel <a.alaqeel@sary.com>
11 lines
308 B
YAML
11 lines
308 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
labels:
|
|
{{- include "argocd-image-updater.labels" . | nindent 4 }}
|
|
name: argocd-image-updater-ssh-config
|
|
namespace: {{ include "argocd-image-updater.namespace" . | quote }}
|
|
{{- with .Values.config.sshConfig }}
|
|
data:
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|