Skip to content

Commit

Permalink
Fixed extra ingress annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-ontotext committed Oct 20, 2021
1 parent 8c7dd1c commit 7693a03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/gateway/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ metadata:
nginx.ingress.kubernetes.io/proxy-connect-timeout: {{ .Values.deployment.ingress.timeout.connect | quote }}
nginx.ingress.kubernetes.io/proxy-read-timeout: {{ .Values.deployment.ingress.timeout.read | quote }}
nginx.ingress.kubernetes.io/proxy-send-timeout: {{ .Values.deployment.ingress.timeout.send | quote }}
{{- range $key, $value := .Values.deployment.ingress.annotations }}
{{ $key }}: {{ $value | quote }}
{{- with .Values.deployment.ingress.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}

spec:
Expand Down

0 comments on commit 7693a03

Please sign in to comment.