From fe6cc1f9e79ebf652feb61c22a016e1ce0156bb5 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Thu, 25 Dec 2025 19:20:02 +0900 Subject: [PATCH] REFACTOR(falco): move Falco Ingress to falco folder - Move ingress configuration to falco directory - Disable SSL redirect --- falco/ingress/falco-ui-ingress.yaml | 25 +++++++++++++++++++++++++ falco/kustomization.yaml | 3 +++ 2 files changed, 28 insertions(+) create mode 100644 falco/ingress/falco-ui-ingress.yaml diff --git a/falco/ingress/falco-ui-ingress.yaml b/falco/ingress/falco-ui-ingress.yaml new file mode 100644 index 0000000..6fc1acb --- /dev/null +++ b/falco/ingress/falco-ui-ingress.yaml @@ -0,0 +1,25 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: falco-ui-ingress + namespace: falco + annotations: + # cert-manager.io/cluster-issuer: letsencrypt-prod # Disabled due to rate limit +spec: + ingressClassName: haproxy + # TLS disabled temporarily due to Let's Encrypt rate limit + # 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 e405e43..f11538b 100644 --- a/falco/kustomization.yaml +++ b/falco/kustomization.yaml @@ -4,3 +4,6 @@ kind: Kustomization resources: # ArgoCD Application 리소스는 root kustomization.yaml에서 관리 # - argocd/falco.yaml + + # Falco UI Ingress + - ingress/falco-ui-ingress.yaml