From 08a6b18536537fd22e7761450579251af6a20606 Mon Sep 17 00:00:00 2001 From: Joel Robotham Date: Thu, 19 Mar 2026 18:46:31 +1100 Subject: [PATCH] fix: add app.kubernetes.io/name label to playpen pods The Istio Sidecar resource that maps inbound mesh traffic (port 8088) to the app (port 8080) selects pods by app.kubernetes.io/name. Without this label, playpen pods are not matched and mesh routing fails with a TLS error (mTLS traffic bypasses envoy and hits the app directly). Amp-Thread-ID: https://ampcode.com/threads/T-019d0486-63e6-754c-88dc-2af0542ee0c9 Co-authored-by: Amp --- .playpen/config.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.playpen/config.hcl b/.playpen/config.hcl index 69fb68d..fd495a0 100644 --- a/.playpen/config.hcl +++ b/.playpen/config.hcl @@ -1,4 +1,4 @@ -additional-labels = ["istio.io/rev"] +additional-labels = ["istio.io/rev", "app.kubernetes.io/name"] port-forward = "8080:8080" launchable-name = "cachewd" app-workdir = "/app"