From 1a83e4be895997b649e51314883c808163f9969e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 14 Oct 2023 07:28:05 -0500 Subject: [PATCH] ntfy: 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. --- ntfy/ntfy.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ntfy/ntfy.yaml b/ntfy/ntfy.yaml index 4b8c234..3e3ccf9 100644 --- a/ntfy/ntfy.yaml +++ b/ntfy/ntfy.yaml @@ -2,6 +2,8 @@ apiVersion: v1 kind: Namespace metadata: name: ntfy + labels: + app.kubernetes.io/instance: ntfy --- apiVersion: v1