From 86adca6f4292cc30a5012f722e924ee68311db99 Mon Sep 17 00:00:00 2001 From: Ashley Nelson Date: Tue, 20 May 2025 12:49:10 -0400 Subject: [PATCH] k8s/quickstart: specify default namespace for client deployment The registration entry for the workload specifies a selector of `k8s:ns:default`, which means the workload should be running in the default namespace. If the namespace isn't specified in the yaml, the workload will deploy to whichever namespace your context is currently set to, which can cause issue spiffe/spire-tutorials#123. Fixes #123. Signed-off-by: Ashley Nelson --- k8s/quickstart/client-deployment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/k8s/quickstart/client-deployment.yaml b/k8s/quickstart/client-deployment.yaml index b22bdc4..37f278a 100644 --- a/k8s/quickstart/client-deployment.yaml +++ b/k8s/quickstart/client-deployment.yaml @@ -2,6 +2,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: client + namespace: default labels: app: client spec: