working state

This commit is contained in:
baschno
2026-04-02 21:14:53 +02:00
parent 37fc96023a
commit bc69332ca5
2 changed files with 22 additions and 5 deletions

View File

@@ -15,6 +15,8 @@ install:
just add-helm-repos just add-helm-repos
gomplate -f traefik-values-gomplate.yaml -o traefik-values.yaml
helm upgrade traefik traefik/traefik \ helm upgrade traefik traefik/traefik \
--install \ --install \
--cleanup-on-fail \ --cleanup-on-fail \
@@ -60,3 +62,8 @@ status:
echo "" echo ""
echo "CRDs:" echo "CRDs:"
kubectl get crd | grep cert-manager.io kubectl get crd | grep cert-manager.io
ingressroute:
#!/bin/bash
set -euo pipefail
gomplate -f traefik-ingressroute-gomplate.yaml | kubectl apply -f -

View File

@@ -1,9 +1,19 @@
ports: ports:
web: web:
redirections: port: 8000
entryPoint: exposed: true
to: websecure exposedPort: 80
scheme: https protocol: TCP
redirectTo:
port: websecure
websecure:
port: 8443
exposed: true
exposedPort: 443
http3:
enabled: false
tls:
enabled: true
logs: logs:
general: general:
level: DEBUG level: DEBUG