FEAT(falco): add HAProxy Ingress for Falco UI

- Add HAProxy ingress at falco0213.kro.kr
- Configure SSL/TLS
This commit is contained in:
2025-12-25 19:03:59 +09:00
parent ac5fde6ba4
commit c5c5a7e469
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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

View File

@@ -4,3 +4,6 @@ kind: Kustomization
resources:
# ArgoCD Application 리소스는 root kustomization.yaml에서 관리
# - argocd/falco.yaml
# Falco UI Ingress
- ingress/falco-ui-ingress.yaml