From 7bdf1f86b9afb2f249c617d8902dff1193c1c7e2 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 14 Oct 2023 10:47:07 -0500 Subject: [PATCH] authelia: Set instance label for Argo CD Argo CD wants every resource managed by an application to have that application's name as the value of the `app.kubernetes.io/instance` label. --- authelia/kustomization.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/authelia/kustomization.yaml b/authelia/kustomization.yaml index 88255b1..48c6f09 100644 --- a/authelia/kustomization.yaml +++ b/authelia/kustomization.yaml @@ -1,6 +1,10 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization +labels: +- pairs: + app.kubernetes.io/instance: authelia + resources: - secrets.yaml - authelia.yaml