File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ A Helm chart for installing ggbridge
6565| networkPolicy.ingressNSMatchLabels | object | ` {} ` | Labels to match to allow traffic to the proxy server from other namespaces |
6666| networkPolicy.ingressNSPodMatchLabels | object | ` {} ` | Pod labels to match to allow traffic to the proxy server from other namespaces |
6767| nodeSelector | object | ` {} ` | Node labels for pod assignment |
68- | pdb.create | bool | ` true ` | Enable/disable a Pod Disruption Budget creation |
68+ | pdb.create | bool | ` false ` | Enable/disable a Pod Disruption Budget creation |
6969| pdb.maxUnavailable | string | ` "" ` | Max number of pods that can be unavailable after the eviction |
7070| pdb.minAvailable | int | ` 1 ` | Minimum number of pods that must still be available after the eviction |
7171| podAnnotations | object | ` {} ` | This is for setting Kubernetes Annotations to a Pod |
Original file line number Diff line number Diff line change 1- {{- if and (eq .Values.mode "server") }}
1+ {{- if and (eq .Values.mode "server") .Values.pdb.create }}
22 {{- range $index := until (int .Values.deploymentCount) }}
33 {{- $fullname := include "ggbridge.fullname" $ }}
44 {{- $serverFullname := include "ggbridge.server.fullname" $ }}
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ labels: {}
226226
227227pdb :
228228 # -- Enable/disable a Pod Disruption Budget creation
229- create : true
229+ create : false
230230 # -- Minimum number of pods that must still be available after the eviction
231231 minAvailable : 1
232232 # -- Max number of pods that can be unavailable after the eviction
You can’t perform that action at this time.
0 commit comments