Fix deployment extraEnvs indentation in operator chart (#2814)
* Fix operator extraEnvs indentation Fix bad operator extraEnvs indentation by matching the statement to how other lists are expanded in the deployment template * Replace nindent by indent to fully mirror the other similar lines in the file --------- Co-authored-by: Felix Kunde <felix-kunde@gmx.de>
This commit is contained in:
		
							parent
							
								
									d97c271b84
								
							
						
					
					
						commit
						548e387745
					
				|  | @ -54,7 +54,7 @@ spec: | ||||||
|           value: {{ template "postgres-operator.controllerID" . }} |           value: {{ template "postgres-operator.controllerID" . }} | ||||||
|       {{- end }} |       {{- end }} | ||||||
|       {{- if .Values.extraEnvs }} |       {{- if .Values.extraEnvs }} | ||||||
|       {{- .Values.extraEnvs | toYaml | nindent 8 }} | {{ toYaml .Values.extraEnvs | indent 8 }} | ||||||
|       {{- end }} |       {{- end }} | ||||||
|         resources: |         resources: | ||||||
| {{ toYaml .Values.resources | indent 10 }} | {{ toYaml .Values.resources | indent 10 }} | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue