Commit 3a0b858 1 parent dea10ac commit 3a0b858 Copy full SHA for 3a0b858
File tree 2 files changed +32
-4
lines changed
2 files changed +32
-4
lines changed Original file line number Diff line number Diff line change
1
+ {{- $podDisruptionBudgets := (index .Values "podDisruptionBudgets") }}
2
+ {{- range .Values.podDisruptionBudgets }}
3
+ {{ toYaml . }}
4
+ ---
5
+ {{- end -}}
Original file line number Diff line number Diff line change @@ -255,12 +255,12 @@ authentication:
255
255
authorization :
256
256
rbac :
257
257
enabled : false
258
- # admins :
258
+ # root_users :
259
259
# - admin_user1
260
260
# - admin_user2
261
- # viewers :
262
- # - viewer_user1
263
- # - readonly_user1
261
+ # root_groups :
262
+ # - /root_group1
263
+ # - /root_group2
264
264
admin_list :
265
265
enabled : false
266
266
# users:
@@ -2046,3 +2046,26 @@ affinity:
2046
2046
# #
2047
2047
priorityClassName : " "
2048
2048
globalPriorityClassName : " "
2049
+
2050
+ # Optionally define a list of pod disruption budgets.
2051
+ # Below are commented examples on how to configure this option.
2052
+ # ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
2053
+ podDisruptionBudgets :
2054
+ # - apiVersion: policy/v1
2055
+ # kind: PodDisruptionBudget
2056
+ # metadata:
2057
+ # name: weaviate
2058
+ # spec:
2059
+ # minAvailable: 1
2060
+ # selector:
2061
+ # matchLabels:
2062
+ # app: weaviate
2063
+ # - apiVersion: policy/v1
2064
+ # kind: PodDisruptionBudget
2065
+ # metadata:
2066
+ # name: transformers-inference
2067
+ # spec:
2068
+ # minAvailable: 1
2069
+ # selector:
2070
+ # matchLabels:
2071
+ # app: transformers-inference
You can’t perform that action at this time.
0 commit comments