mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 02:12:55 +02:00
Add bolletjestrui app + vic.rubenhensen.nl
Deploys ghcr.io/rubenhensen/bolletjestrui at vic.rubenhensen.nl: - bolletjestrui/ folder: deployment (SQLite on a PVC, migrate-on-start, ORIGIN + raised BODY_SIZE_LIMIT for GPX uploads), service, nginx ingress with prod-cluster-issuer TLS, PVC, and a Vault ExternalSecret (kv/bolletjestrui: site_password, admin_password, key_secret). - apps/templates/bolletjestrui-folder.yaml: ArgoCD Application. - dns: vic A record -> 46.224.26.65 (ingress LB). - renovate: watch bolletjestrui/ for image tag bumps. Committed locally, not pushed: needs the Vault secret created and the ghcr package made public first.
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: bolletjestrui-ingress
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: prod-cluster-issuer
|
||||
nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
|
||||
nginx.ingress.kubernetes.io/ssl-passthrough: "false"
|
||||
nginx.ingress.kubernetes.io/proxy-body-size: "10m"
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
rules:
|
||||
- host: vic.rubenhensen.nl
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: bolletjestrui
|
||||
port:
|
||||
number: 3000
|
||||
tls:
|
||||
- secretName: letsencrypt-prod
|
||||
hosts:
|
||||
- vic.rubenhensen.nl
|
||||
Reference in New Issue
Block a user