REFACTOR(falco): move Falco Ingress to falco folder
- Move ingress configuration to falco directory - Disable SSL redirect
This commit is contained in:
25
falco/ingress/falco-ui-ingress.yaml
Normal file
25
falco/ingress/falco-ui-ingress.yaml
Normal file
@@ -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
|
||||
@@ -4,3 +4,6 @@ kind: Kustomization
|
||||
resources:
|
||||
# ArgoCD Application 리소스는 root kustomization.yaml에서 관리
|
||||
# - argocd/falco.yaml
|
||||
|
||||
# Falco UI Ingress
|
||||
- ingress/falco-ui-ingress.yaml
|
||||
|
||||
Reference in New Issue
Block a user