From a526fbffff829c4643e9345151819b8e1ef14315 Mon Sep 17 00:00:00 2001 From: Ichen Chhoeng Date: Tue, 28 Oct 2025 16:08:27 +0700 Subject: [PATCH] skip vlaidation on missing crd --- k8s/base/envoy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/k8s/base/envoy.yml b/k8s/base/envoy.yml index b319bc7..7ff3bbe 100644 --- a/k8s/base/envoy.yml +++ b/k8s/base/envoy.yml @@ -6,6 +6,8 @@ apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: name: my-gateway + annotations: + argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true spec: gatewayClassName: eg listeners: @@ -25,6 +27,8 @@ kind: HTTPRoute metadata: name: my-public-routes namespace: default + annotations: + argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true spec: parentRefs: - name: my-gateway @@ -59,6 +63,8 @@ kind: HTTPRoute metadata: name: my-protected-routes namespace: default + annotations: + argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true spec: parentRefs: - name: my-gateway