diff --git a/bitnami/kubeapps/CHANGELOG.md b/bitnami/kubeapps/CHANGELOG.md index c4571b2d4d..d2a8a8d555 100644 --- a/bitnami/kubeapps/CHANGELOG.md +++ b/bitnami/kubeapps/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog -## 15.2.2 (2024-06-05) +## 15.3.0 (2024-06-06) -* [bitnami/kubeapps] Bump chart version ([#26842](https://github.com/bitnami/charts/pull/26842)) +* [bitnami/kubeapps] Enable PodDisruptionBudgets (part 2) ([#26701](https://github.com/bitnami/charts/pull/26701)) + +## 15.2.2 (2024-06-05) + +* [bitnami/kubeapps] Bump chart version (#26842) ([16d5b78](https://github.com/bitnami/charts/commit/16d5b784039a37ca643ac685c56d87373b1edaf7)), closes [#26842](https://github.com/bitnami/charts/issues/26842) ## 15.2.1 (2024-06-05) diff --git a/bitnami/kubeapps/Chart.yaml b/bitnami/kubeapps/Chart.yaml index 42139aecea..d5fe16ed71 100644 --- a/bitnami/kubeapps/Chart.yaml +++ b/bitnami/kubeapps/Chart.yaml @@ -52,4 +52,4 @@ maintainers: name: kubeapps sources: - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps -version: 15.2.2 +version: 15.3.0 diff --git a/bitnami/kubeapps/README.md b/bitnami/kubeapps/README.md index df992e99b3..b049a9855d 100644 --- a/bitnami/kubeapps/README.md +++ b/bitnami/kubeapps/README.md @@ -269,7 +269,7 @@ In the first two cases, it is needed a certificate and a key. We would expect th | `frontend.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for frontend container(s) | `[]` | | `frontend.sidecars` | Add additional sidecar containers to the frontend pod | `[]` | | `frontend.initContainers` | Add additional init containers to the frontend pods | `[]` | -| `frontend.pdb.create` | Enable/disable a Pod Disruption Budget creation | `false` | +| `frontend.pdb.create` | Enable/disable a Pod Disruption Budget creation | `true` | | `frontend.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `""` | | `frontend.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `frontend.pdb.minAvailable` and `frontend.pdb.maxUnavailable` are empty. | `""` | | `frontend.service.type` | Frontend service type | `ClusterIP` | @@ -377,7 +377,7 @@ In the first two cases, it is needed a certificate and a key. We would expect th | `dashboard.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for Dashboard container(s) | `[]` | | `dashboard.sidecars` | Add additional sidecar containers to the Dashboard pod | `[]` | | `dashboard.initContainers` | Add additional init containers to the Dashboard pods | `[]` | -| `dashboard.pdb.create` | Enable/disable a Pod Disruption Budget creation | `false` | +| `dashboard.pdb.create` | Enable/disable a Pod Disruption Budget creation | `true` | | `dashboard.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `""` | | `dashboard.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `dashboard.pdb.minAvailable` and `dashboard.pdb.maxUnavailable` are empty. | `""` | | `dashboard.service.ports.http` | Dashboard service HTTP port | `8080` | @@ -460,7 +460,7 @@ In the first two cases, it is needed a certificate and a key. We would expect th | `apprepository.hostAliases` | Custom host aliases for AppRepository Controller pods | `[]` | | `apprepository.sidecars` | Add additional sidecar containers to the AppRepository Controller pod(s) | `[]` | | `apprepository.initContainers` | Add additional init containers to the AppRepository Controller pod(s) | `[]` | -| `apprepository.pdb.create` | Enable/disable a Pod Disruption Budget creation | `false` | +| `apprepository.pdb.create` | Enable/disable a Pod Disruption Budget creation | `true` | | `apprepository.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `""` | | `apprepository.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `apprepository.pdb.minAvailable` and `apprepository.pdb.maxUnavailable` are empty. | `""` | | `apprepository.networkPolicy.enabled` | Specifies whether a NetworkPolicy should be created | `true` | @@ -680,7 +680,7 @@ In the first two cases, it is needed a certificate and a key. We would expect th | `kubeappsapis.hostAliases` | Custom host aliases for KubeappsAPIs pods | `[]` | | `kubeappsapis.sidecars` | Add additional sidecar containers to the KubeappsAPIs pod(s) | `[]` | | `kubeappsapis.initContainers` | Add additional init containers to the KubeappsAPIs pod(s) | `[]` | -| `kubeappsapis.pdb.create` | Enable/disable a Pod Disruption Budget creation | `false` | +| `kubeappsapis.pdb.create` | Enable/disable a Pod Disruption Budget creation | `true` | | `kubeappsapis.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `""` | | `kubeappsapis.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `kubeappsapis.pdb.minAvailable` and `kubeappsapis.pdb.maxUnavailable` are empty. | `""` | | `kubeappsapis.service.ports.http` | KubeappsAPIs service HTTP port | `8080` | diff --git a/bitnami/kubeapps/values.yaml b/bitnami/kubeapps/values.yaml index 39bd71b744..abfef2f891 100644 --- a/bitnami/kubeapps/values.yaml +++ b/bitnami/kubeapps/values.yaml @@ -491,7 +491,7 @@ frontend: ## @param frontend.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `frontend.pdb.minAvailable` and `frontend.pdb.maxUnavailable` are empty. ## pdb: - create: false + create: true minAvailable: "" maxUnavailable: "" ## Frontend service parameters @@ -939,7 +939,7 @@ dashboard: ## @param dashboard.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `dashboard.pdb.minAvailable` and `dashboard.pdb.maxUnavailable` are empty. ## pdb: - create: false + create: true minAvailable: "" maxUnavailable: "" ## Dashboard service parameters @@ -1339,7 +1339,7 @@ apprepository: ## @param apprepository.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `apprepository.pdb.minAvailable` and `apprepository.pdb.maxUnavailable` are empty. ## pdb: - create: false + create: true minAvailable: "" maxUnavailable: "" ## Network Policies @@ -2171,7 +2171,7 @@ kubeappsapis: ## @param kubeappsapis.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `kubeappsapis.pdb.minAvailable` and `kubeappsapis.pdb.maxUnavailable` are empty. ## pdb: - create: false + create: true minAvailable: "" maxUnavailable: "" ## kubeappsapis service parameters