From c214ae7de8dc7051c1ad2c36350748236a215695 Mon Sep 17 00:00:00 2001 From: Drew Bowering Date: Wed, 4 Feb 2026 13:52:30 -0700 Subject: [PATCH] update to modern syntax --- apps/kustomize/web/envs/stage/kustomization.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/kustomize/web/envs/stage/kustomization.yaml b/apps/kustomize/web/envs/stage/kustomization.yaml index 749a1cc..c320858 100644 --- a/apps/kustomize/web/envs/stage/kustomization.yaml +++ b/apps/kustomize/web/envs/stage/kustomization.yaml @@ -4,7 +4,7 @@ kind: Kustomization resources: - ../../base -patchesStrategicMerge: - - web/ingress.yaml - - web/web-backend-tls.yaml - - web/web-image.yaml +patches: + - path: web/ingress.yaml + - path: web/web-backend-tls.yaml + - path: web/web-image.yaml