File tree 2 files changed +24
-0
lines changed
charts/postgres-operator-ui
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 94
94
{{- if .Values.extraEnvs }}
95
95
{{- .Values.extraEnvs | toYaml | nindent 12 }}
96
96
{{- 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:
111
111
# - secretName: ui-tls
112
112
# hosts:
113
113
# - 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