skip vlaidation on missing crd

This commit is contained in:
Ichen Chhoeng 2025-10-28 16:08:27 +07:00
parent d06f8e5721
commit a526fbffff

View File

@ -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