You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| pdb.maxUnavailable | string | `""` | Set number of pods that are unavailable after eviction as number of percentage |
123
123
| pdb.minAvailable | string | `""` | Set number of pods that are available after eviction as number of percentage |
124
+
| persistence | object | See below | Configure persistence for the chart Additional items can be added by adding a dictionary key similar to the 'data' key. |
| persistence.data.nameOverride | string | `nil` | Override the PVC name |
129
+
| persistence.data.retain | bool | `false` | Set to true to retain the PVC upon `helm uninstall` |
130
+
| persistence.data.size | string | `"1Gi"` | (required) Set the requested size for persistent volume |
131
+
| persistence.data.storageClass | string | `nil` | Set Storage Class for PVC object If set to `-`, dynamic provisioning is disabled. If set to something else, the given storageClass is used. If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. |
124
132
| podAnnotations | object | `{}` | Set additional pod annotations |
125
133
| podLabels | object | `{}` | Set additional pod labels |
126
134
| podSecurityContext | object | `{}` | Set security context for the pod |
@@ -155,7 +163,7 @@ dependencies:
155
163
| tolerations | list | `[]` | Set tolerations constrains |
156
164
| topologySpreadConstraints | list | `[]` | Set topologySpreadConstraints rules. Helm template supported. Passed through `tpl`, should be configured as string |
157
165
| volumes | object | See below | Configure volume for the controller. Additional items can be added by adding a dictionary key similar to the 'config'/`secret` key. |
158
-
| volumes.config | object | `{"enabled":false,"type":"configMap"}` | Volume name. Make sure to use the same name in `configMaps`/`secrets` and `container.volumeMounts` |
166
+
| volumes.config | object | `{"enabled":false,"type":"configMap"}` | Volume name. Make sure to use the same name in `configMaps`/`secrets`/`persistence` and `container.volumeMounts` |
0 commit comments