Skip to content

Commit 06ee1f6

Browse files
committed
docs(network-nodes): clarify pdb exclusivity
1 parent 42f4c4c commit 06ee1f6

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

charts/network/charts/network-nodes/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,15 @@ A Helm chart for Kubernetes
127127
| podDisruptionBudgets.rpc.annotations | object | `{}` | Additional annotations applied to the RPC PodDisruptionBudget. |
128128
| podDisruptionBudgets.rpc.enabled | bool | `false` | Enable the RPC PodDisruptionBudget. |
129129
| podDisruptionBudgets.rpc.labels | object | `{}` | Additional labels applied to the RPC PodDisruptionBudget. |
130-
| podDisruptionBudgets.rpc.maxUnavailable | string | `nil` | Maximum RPC pods that can be disrupted at once. Accepts integers or percentages. |
131-
| podDisruptionBudgets.rpc.minAvailable | int | `1` | Minimum RPC pods that must remain available; ignored when maxUnavailable is set. |
130+
| podDisruptionBudgets.rpc.maxUnavailable | string | `nil` | Maximum RPC pods that can be disrupted at once. Mutually exclusive with minAvailable. |
131+
| podDisruptionBudgets.rpc.minAvailable | int | `1` | Minimum RPC pods that must remain available. Mutually exclusive with maxUnavailable. |
132132
| podDisruptionBudgets.rpc.unhealthyPodEvictionPolicy | string | `""` | Optional unhealthy pod eviction policy (Default or AlwaysAllow). |
133133
| podDisruptionBudgets.validator | object | `{"annotations":{},"enabled":false,"labels":{},"maxUnavailable":null,"minAvailable":1,"unhealthyPodEvictionPolicy":""}` | PodDisruptionBudget controlling voluntary disruptions for validator pods. |
134134
| podDisruptionBudgets.validator.annotations | object | `{}` | Additional annotations applied to the validator PodDisruptionBudget. |
135135
| podDisruptionBudgets.validator.enabled | bool | `false` | Enable the validator PodDisruptionBudget. |
136136
| podDisruptionBudgets.validator.labels | object | `{}` | Additional labels applied to the validator PodDisruptionBudget. |
137-
| podDisruptionBudgets.validator.maxUnavailable | string | `nil` | Maximum validator pods that can be disrupted at once. Accepts integers or percentages. |
138-
| podDisruptionBudgets.validator.minAvailable | int | `1` | Minimum validator pods that must remain available; ignored when maxUnavailable is set. |
137+
| podDisruptionBudgets.validator.maxUnavailable | string | `nil` | Maximum validator pods that can be disrupted at once. Mutually exclusive with minAvailable. |
138+
| podDisruptionBudgets.validator.minAvailable | int | `1` | Minimum validator pods that must remain available. Mutually exclusive with maxUnavailable. |
139139
| podDisruptionBudgets.validator.unhealthyPodEvictionPolicy | string | `""` | Optional unhealthy pod eviction policy (Default or AlwaysAllow). |
140140
| podLabels | object | `{}` | |
141141
| podSecurityContext | object | `{}` | |

charts/network/charts/network-nodes/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ podDisruptionBudgets:
5555
validator:
5656
# -- Enable the validator PodDisruptionBudget.
5757
enabled: false
58-
# -- Minimum validator pods that must remain available; ignored when maxUnavailable is set.
58+
# -- Minimum validator pods that must remain available. Mutually exclusive with maxUnavailable.
5959
minAvailable: 1
60-
# -- Maximum validator pods that can be disrupted at once. Accepts integers or percentages.
60+
# -- Maximum validator pods that can be disrupted at once. Mutually exclusive with minAvailable.
6161
maxUnavailable:
6262
# -- Optional unhealthy pod eviction policy (Default or AlwaysAllow).
6363
unhealthyPodEvictionPolicy: ""
@@ -69,9 +69,9 @@ podDisruptionBudgets:
6969
rpc:
7070
# -- Enable the RPC PodDisruptionBudget.
7171
enabled: false
72-
# -- Minimum RPC pods that must remain available; ignored when maxUnavailable is set.
72+
# -- Minimum RPC pods that must remain available. Mutually exclusive with maxUnavailable.
7373
minAvailable: 1
74-
# -- Maximum RPC pods that can be disrupted at once. Accepts integers or percentages.
74+
# -- Maximum RPC pods that can be disrupted at once. Mutually exclusive with minAvailable.
7575
maxUnavailable:
7676
# -- Optional unhealthy pod eviction policy (Default or AlwaysAllow).
7777
unhealthyPodEvictionPolicy: ""

0 commit comments

Comments
 (0)