From 81e000260f9bb18e4df502a28fbf11ee776e9c93 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Thu, 25 Dec 2025 19:04:51 +0900 Subject: [PATCH] FEAT(falco): add Falco UI Ingress via infrastructure - Add ingress for Falco UI - Configure routing --- falco/ingress/falco-ui-ingress.yaml | 24 ------------------------ falco/kustomization.yaml | 3 --- 2 files changed, 27 deletions(-) delete mode 100644 falco/ingress/falco-ui-ingress.yaml diff --git a/falco/ingress/falco-ui-ingress.yaml b/falco/ingress/falco-ui-ingress.yaml deleted file mode 100644 index d7cef31..0000000 --- a/falco/ingress/falco-ui-ingress.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: falco-ui-ingress - namespace: falco - annotations: - cert-manager.io/cluster-issuer: letsencrypt-prod -spec: - ingressClassName: haproxy - tls: - - hosts: - - falco0213.kro.kr - secretName: falco-ui-tls - rules: - - host: falco0213.kro.kr - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: falco-falcosidekick-ui - port: - number: 2802 diff --git a/falco/kustomization.yaml b/falco/kustomization.yaml index f11538b..e405e43 100644 --- a/falco/kustomization.yaml +++ b/falco/kustomization.yaml @@ -4,6 +4,3 @@ kind: Kustomization resources: # ArgoCD Application 리소스는 root kustomization.yaml에서 관리 # - argocd/falco.yaml - - # Falco UI Ingress - - ingress/falco-ui-ingress.yaml