Skip to content

Commit

Permalink
update: terraform does not like 0 as a string
Browse files Browse the repository at this point in the history
  • Loading branch information
nickumia-reisys committed Dec 9, 2021
1 parent 1c7365e commit 574336a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terraform/provision/solr-crd/templates/solrcloud-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ spec:
nginx.ingress.kubernetes.io/auth-type: basic
nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required - admin'
nginx.ingress.kubernetes.io/auth-secret: {{ .Values.secretName | quote }}
nginx.ingress.kubernetes.io/proxy-body-size: 0
# 0 doesn't parse as terraform string
nginx.ingress.kubernetes.io/proxy-body-size: 999m
{{- range $key, $value := .Values.ingress.annotations }}
{{ $key }}: {{ $value | quote }}
{{- end }}

0 comments on commit 574336a

Please sign in to comment.