From fa5bc7e30ee62df23489fd66de52eca421c39f48 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Thu, 9 Oct 2025 14:42:45 +0200 Subject: [PATCH] deploy argocd image updater --- argocd/templates/argocd_image_updater.yaml | 14 ++++++++++++++ argocd/values.yaml | 8 ++++++++ 2 files changed, 22 insertions(+) create mode 100644 argocd/templates/argocd_image_updater.yaml diff --git a/argocd/templates/argocd_image_updater.yaml b/argocd/templates/argocd_image_updater.yaml new file mode 100644 index 0000000..971d26d --- /dev/null +++ b/argocd/templates/argocd_image_updater.yaml @@ -0,0 +1,14 @@ +{{ with ( .Values.argocd_image_updater_chart_values ) }} +apiVersion: helm.cattle.io/v1 +kind: HelmChart +metadata: + name: argocd-image-updater + namespace: kube-system +spec: + repo: https://argoproj.github.io/argo-helm + chart: argocd-image-updater + targetNamespace: argocd + valuesContent: |- + {{- toYaml . | nindent 4 }} +{{- end -}} +--- \ No newline at end of file diff --git a/argocd/values.yaml b/argocd/values.yaml index 9ac734e..c998a4d 100644 --- a/argocd/values.yaml +++ b/argocd/values.yaml @@ -7,3 +7,11 @@ gitea_applications: - webapp - erp - cms + +argocd_image_updater_chart_values: + config: + argocd: + grpcWeb: false + serverAddress: "https://argocd.arcodange.duckdns.org/" + insecure: true + plaintext: true \ No newline at end of file