From 53a057666ae823a424d882227d7e2a38c9220c97 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 14 Oct 2023 21:45:01 -0500 Subject: [PATCH] kitchen: 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. --- kitchen/kustomization.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kitchen/kustomization.yaml b/kitchen/kustomization.yaml index 892f5b9..63aec31 100644 --- a/kitchen/kustomization.yaml +++ b/kitchen/kustomization.yaml @@ -1,6 +1,10 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization +labels: +- pairs: + app.kubernetes.io/instance: kitchen + resources: - kitchen.yaml - secrets.yaml