mirror of https://git.rancher.io/charts
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
--- charts-original/templates/gateway-deployment.yaml
|
|
+++ charts/templates/gateway-deployment.yaml
|
|
@@ -66,7 +66,7 @@
|
|
{{- end }}
|
|
containers:
|
|
- name: {{ .Chart.Name }}
|
|
- image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
+ image: "{{ default .Values.image.registry (include "registry-url" .) }}{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
command:
|
|
- "/bin/sh"
|
|
@@ -140,19 +140,18 @@
|
|
{{- end}}
|
|
resources:
|
|
{{ toYaml .Values.resources | indent 12 }}
|
|
-{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
-{{ toYaml . | indent 8 }}
|
|
-{{- end }}
|
|
+ {{- include "linux-node-selector" . | nindent 8 }}
|
|
{{- include "minio.imagePullSecrets" . | indent 6 }}
|
|
{{- with .Values.affinity }}
|
|
affinity:
|
|
{{ toYaml . | indent 8 }}
|
|
{{- end }}
|
|
-{{- with .Values.tolerations }}
|
|
tolerations:
|
|
-{{ toYaml . | indent 8 }}
|
|
-{{- end }}
|
|
+ {{- include "linux-node-tolerations" . | nindent 8 }}
|
|
+ {{- with .Values.tolerations }}
|
|
+ {{ toYaml . | indent 8 }}
|
|
+ {{- end }}
|
|
volumes:
|
|
- name: export
|
|
{{- if .Values.persistence.enabled }}
|