Skip to content

Commit

Permalink
[bitnami/minio] PDB review (#25986)
Browse files Browse the repository at this point in the history
Signed-off-by: Fran Mulero <[email protected]>
Signed-off-by: Andrés Bono <[email protected]>
Co-authored-by: Andrés Bono <[email protected]>
  • Loading branch information
fmulero and andresbono authored May 20, 2024
1 parent 68e5a56 commit 06839ae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bitnami/minio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ maintainers:
name: minio
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/minio
version: 14.4.3
version: 14.5.0
10 changes: 5 additions & 5 deletions bitnami/minio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,11 +473,11 @@ You can enable this initContainer by setting `volumePermissions.enabled` to `tru

### Other parameters

| Name | Description | Value |
| -------------------- | --------------------------------------------------------------------------------- | ------- |
| `pdb.create` | Enable/disable a Pod Disruption Budget creation | `false` |
| `pdb.minAvailable` | Minimum number/percentage of pods that must still be available after the eviction | `1` |
| `pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable after the eviction | `""` |
| Name | Description | Value |
| -------------------- | --------------------------------------------------------------------------------- | ------ |
| `pdb.create` | Enable/disable a Pod Disruption Budget creation | `true` |
| `pdb.minAvailable` | Minimum number/percentage of pods that must still be available after the eviction | `1` |
| `pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable after the eviction | `""` |

### Metrics parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if and .Values.pdb.create (eq .Values.mode "distributed") }}
{{- if .Values.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
metadata:
Expand Down
2 changes: 1 addition & 1 deletion bitnami/minio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1170,7 +1170,7 @@ serviceAccount:
pdb:
## @param pdb.create Enable/disable a Pod Disruption Budget creation
##
create: false
create: true
## @param pdb.minAvailable Minimum number/percentage of pods that must still be available after the eviction
##
minAvailable: 1
Expand Down

0 comments on commit 06839ae

Please sign in to comment.