fixes host and path in deployment.yaml
Some checks failed
ci / build (push) Failing after 7s

This commit is contained in:
franz.germann 2025-03-20 17:18:28 +01:00
parent 2f6691fab5
commit f199d2ebe8

View file

@ -44,10 +44,10 @@ metadata:
nginx.ingress.kubernetes.io/ssl-redirect: "false" nginx.ingress.kubernetes.io/ssl-redirect: "false"
spec: spec:
rules: rules:
- host: ascii.live - host: {{{ .Env.DOMAIN }}}
http: http:
paths: paths:
- path: / - path: /ascii-live
pathType: Prefix pathType: Prefix
backend: backend:
service: service:
@ -57,4 +57,4 @@ spec:
tls: tls:
- secretName: ascii-live-tls-prod-cert - secretName: ascii-live-tls-prod-cert
hosts: hosts:
- ascii.live - {{{ .Env.DOMAIN }}}