From cb66358a0efa015ad9b21df99258108e22900dc1 Mon Sep 17 00:00:00 2001 From: Vegard Hagen Date: Sun, 20 Jul 2025 13:30:16 +0200 Subject: [PATCH] fix(argocd): remove grpcroute the tlsroute should be able to handle grpc-connections, having both seem to create some trouble Signed-off-by: Vegard Hagen --- k8s/infra/controllers/argocd/grpc-route.yaml | 13 ------------- k8s/infra/controllers/argocd/kustomization.yaml | 1 - 2 files changed, 14 deletions(-) delete mode 100644 k8s/infra/controllers/argocd/grpc-route.yaml diff --git a/k8s/infra/controllers/argocd/grpc-route.yaml b/k8s/infra/controllers/argocd/grpc-route.yaml deleted file mode 100644 index 5916234..0000000 --- a/k8s/infra/controllers/argocd/grpc-route.yaml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: gateway.networking.k8s.io/v1 -kind: GRPCRoute -metadata: - name: argocd - namespace: argocd -spec: - parentRefs: - - { name: internal, namespace: gateway } - hostnames: [ argocd.stonegarden.dev ] - rules: - - backendRefs: [ { name: argocd-server, port: 443 } ] - matches: - - headers: [ { name: Content-Type, value: application/grpc } ] diff --git a/k8s/infra/controllers/argocd/kustomization.yaml b/k8s/infra/controllers/argocd/kustomization.yaml index 6133fbf..999edfd 100644 --- a/k8s/infra/controllers/argocd/kustomization.yaml +++ b/k8s/infra/controllers/argocd/kustomization.yaml @@ -3,7 +3,6 @@ kind: Kustomization resources: - ns.yaml - - grpc-route.yaml - tls-route.yaml - oidc.yaml