fix(infra-ingress): add additional ports to traefik

This commit is contained in:
WrenIX 2024-01-16 03:46:55 +01:00
parent 4e456bfb5b
commit a3e21a0cc7
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 14 additions and 0 deletions

View file

@ -71,10 +71,20 @@ image::https://img.shields.io/badge/Version-application-informational?style=flat
| `0`
|
| traefik.additionalArguments
| list
| `[]`
|
| traefik.hostPath
| string
| `"/srv/k8s/pv/pvc-traefik-certs"`
|
| traefik.ports
| object
| `{}`
|
|===
Autogenerated from chart metadata using https://github.com/norwoodj/helm-docs[helm-docs]

View file

@ -60,6 +60,9 @@ spec:
hostPort: 443
http3:
enabled: true
{{- with .Values.traefik.ports }}
{{- toYaml . | nindent 6 }}
{{- end }}
providers:
kubernetesIngress:

View file

@ -20,5 +20,6 @@ commons:
controller: "traefik"
external: true
traefik:
ports: {}
hostPath: /srv/k8s/pv/pvc-traefik-certs
additionalArguments: []