Files
web-apps/jotion/ingress.yaml
Mayne0213 9e8d538ab1 FEAT(jotion): add jotion application
- Add ArgoCD Application definition
- Add deployment, service, ingress, external-secret
- Domain: jotion0213.kro.kr
- Vault secret path: secret/jotion
2026-01-05 02:32:18 +09:00

35 lines
684 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: jotion-ingress
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: traefik
tls:
- hosts:
- jotion0213.kro.kr
- www.jotion0213.kro.kr
secretName: jotion-tls
rules:
- host: jotion0213.kro.kr
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: jotion
port:
number: 80
- host: www.jotion0213.kro.kr
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: jotion
port:
number: 80