Ability to configure schedulerName for helm charts (#10018)
* Update minio-service-deployment.yaml * Update redis-service-deployment.yaml * Update couchdb-backup.yaml * Update proxy-service-deployment.yaml * Update app-service-deployment.yaml * Update worker-service-deployment.yaml * Update app-service-deployment.yaml * Update couchdb-backup.yaml * Update minio-service-deployment.yaml * Update proxy-service-deployment.yaml * Update redis-service-deployment.yaml * Update worker-service-deployment.yaml
This commit is contained in:
parent
e841ccd0ed
commit
044a88dd8a
|
@ -232,6 +232,9 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{ if .Values.schedulerName }}
|
||||||
|
schedulerName: {{ .Values.schedulerName | quote }}
|
||||||
|
{{ end }}
|
||||||
{{ if .Values.imagePullSecrets }}
|
{{ if .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
||||||
|
|
|
@ -50,5 +50,8 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{ if .Values.schedulerName }}
|
||||||
|
schedulerName: {{ .Values.schedulerName | quote }}
|
||||||
|
{{ end }}
|
||||||
status: {}
|
status: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -72,6 +72,9 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{ if .Values.schedulerName }}
|
||||||
|
schedulerName: {{ .Values.schedulerName | quote }}
|
||||||
|
{{ end }}
|
||||||
{{ if .Values.imagePullSecrets }}
|
{{ if .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
||||||
|
|
|
@ -78,6 +78,9 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{ if .Values.schedulerName }}
|
||||||
|
schedulerName: {{ .Values.schedulerName | quote }}
|
||||||
|
{{ end }}
|
||||||
{{ if .Values.imagePullSecrets }}
|
{{ if .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
||||||
|
|
|
@ -50,6 +50,9 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{ if .Values.schedulerName }}
|
||||||
|
schedulerName: {{ .Values.schedulerName | quote }}
|
||||||
|
{{ end }}
|
||||||
{{ if .Values.imagePullSecrets }}
|
{{ if .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
||||||
|
|
|
@ -222,6 +222,9 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{ if .Values.schedulerName }}
|
||||||
|
schedulerName: {{ .Values.schedulerName | quote }}
|
||||||
|
{{ end }}
|
||||||
{{ if .Values.imagePullSecrets }}
|
{{ if .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }}
|
||||||
|
|
Loading…
Reference in New Issue