INIT(repo): add jovies, portfolio, todo apps

- Add ArgoCD Application definitions for each app
- Add Kubernetes Deployment, Service, Ingress for each app
- Add ExternalSecret for todo (Vault integration)
- Configure Traefik ingress with Let's Encrypt TLS

Domains:
- jovies.kro.kr
- minjo0213.kro.kr
- todo0213.kro.kr
This commit is contained in:
2026-01-05 01:55:49 +09:00
commit ebeb9945db
17 changed files with 459 additions and 0 deletions

34
jovies/ingress.yaml Normal file
View File

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