Skip to content

Commit

Permalink
Add support for custom annotations on ingress objects.
Browse files Browse the repository at this point in the history
  • Loading branch information
marchermans committed Dec 28, 2024
1 parent d92c244 commit 4db8e4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Charts/ldtteam-authentication-server/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ metadata:
nginx.ingress.kubernetes.io/proxy-buffering: 'on'
nginx.ingress.kubernetes.io/proxy-buffers-number: '4'
nginx.ingress.kubernetes.io/proxy-max-temp-file-size: 1024m
{{- if .Values.ingress.annotations }}
{{ toYaml .Values.ingress.annotations }}
{{- end }}
spec:
ingressClassName: "nginx"
tls:
Expand Down
2 changes: 2 additions & 0 deletions Charts/ldtteam-authentication-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ service:
ingress:
enabled: true
hostname: auth.minecolonies.com
annotations:
external-dns.alpha.kubernetes.io/target: cluster.ldtteam.com

livenessProbe:
httpGet:
Expand Down

0 comments on commit 4db8e4a

Please sign in to comment.