File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
charts/postgres-operator-ui Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 9494 {{- if .Values.extraEnvs }}
9595 {{- .Values.extraEnvs | toYaml | nindent 12 }}
9696 {{- end }}
97+ affinity :
98+ {{ toYaml .Values.affinity | indent 8 }}
99+ nodeSelector :
100+ {{ toYaml .Values.nodeSelector | indent 8 }}
101+ tolerations :
102+ {{ toYaml .Values.tolerations | indent 8 }}
103+ {{- if .Values.priorityClassName }}
104+ priorityClassName : {{ .Values.priorityClassName }}
105+ {{- end }}
Original file line number Diff line number Diff line change @@ -111,3 +111,18 @@ ingress:
111111 # - secretName: ui-tls
112112 # hosts:
113113 # - ui.exmaple.org
114+
115+ # priority class for operator-ui pod
116+ priorityClassName : " "
117+
118+ # Affinity for pod assignment
119+ # Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
120+ affinity : {}
121+
122+ # Node labels for pod assignment
123+ # Ref: https://kubernetes.io/docs/user-guide/node-selection/
124+ nodeSelector : {}
125+
126+ # Tolerations for pod assignment
127+ # Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
128+ tolerations : []
You can’t perform that action at this time.
0 commit comments