Files
insurance/deploy/k8s/ingressroute-traefik.yaml
T
chpark 035eb0259f
Build & Deploy / build-and-deploy (push) Failing after 1m56s
feat: Kubernetes 자동 배포 파이프라인 구축
- Dockerfile: Expo web export → nginx multi-stage 빌드
- nginx.conf: SPA fallback, gzip, health endpoint
- K8s manifests: namespace, deployment (2 replicas), service, ingress
- Traefik IngressRoute (선택적) 포함
- Gitea Actions workflow: push 시 빌드→Gitea Registry push→rollout restart
- DEPLOY.md: 초기 설정 가이드 (kubeconfig, secrets, DNS)

Domain: insurance.junggomoa.com

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-22 23:59:51 +09:00

44 lines
841 B
YAML

apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: insurance-web
namespace: insurance
spec:
entryPoints:
- websecure
routes:
- match: Host(`insurance.junggomoa.com`)
kind: Rule
services:
- name: insurance-web
port: 80
tls:
secretName: insurance-tls
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: insurance-web-http
namespace: insurance
spec:
entryPoints:
- web
routes:
- match: Host(`insurance.junggomoa.com`)
kind: Rule
middlewares:
- name: insurance-redirect-https
services:
- name: insurance-web
port: 80
---
apiVersion: traefik.io/v1alpha1
kind: Middleware
metadata:
name: insurance-redirect-https
namespace: insurance
spec:
redirectScheme:
scheme: https
permanent: true