mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 06:47:30 +08:00
[bitnami/kibana] add revisionHistoryLimit for deployments (#35298)
* feat(kibana): add revisionHistoryLimit for deployments Signed-off-by: Dieter Saeys <dieter.saeys@aholddelhaize.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> --------- Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> Signed-off-by: Alvaro Neira Ayuso <alvaro.neira@broadcom.com> Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com> Co-authored-by: Alvaro Neira Ayuso <alvaro.neira@broadcom.com>
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 12.1.9 (2025-08-13)
|
||||
## 12.1.10 (2025-08-21)
|
||||
|
||||
* [bitnami/kibana] :zap: :arrow_up: Update dependency references ([#35779](https://github.com/bitnami/charts/pull/35779))
|
||||
* [bitnami/kibana] add revisionHistoryLimit for deployments ([#35298](https://github.com/bitnami/charts/pull/35298))
|
||||
|
||||
## <small>12.1.9 (2025-08-13)</small>
|
||||
|
||||
* [bitnami/kibana] :zap: :arrow_up: Update dependency references (#35779) ([b3130ee](https://github.com/bitnami/charts/commit/b3130ee8577511a79b8f6457d3a2076fe7d47fdb)), closes [#35779](https://github.com/bitnami/charts/issues/35779)
|
||||
|
||||
## <small>12.1.8 (2025-08-07)</small>
|
||||
|
||||
|
||||
@@ -35,4 +35,4 @@ maintainers:
|
||||
name: kibana
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/kibana
|
||||
version: 12.1.9
|
||||
version: 12.1.10
|
||||
|
||||
@@ -309,6 +309,7 @@ You can enable this initContainer by setting `volumePermissions.enabled` to `tru
|
||||
| `image.debug` | Enable %%MAIN_CONTAINER%% image debug mode | `false` |
|
||||
| `replicaCount` | Number of replicas of the Kibana Pod | `1` |
|
||||
| `updateStrategy.type` | Set up update strategy for Kibana installation. | `RollingUpdate` |
|
||||
| `revisionHistoryLimit` | Number of old replicasets to retain | `10` |
|
||||
| `schedulerName` | Alternative scheduler | `""` |
|
||||
| `priorityClassName` | %%MAIN_CONTAINER_NAME%% pods' priorityClassName | `""` |
|
||||
| `terminationGracePeriodSeconds` | In seconds, time the given to the %%MAIN_CONTAINER_NAME%% pod needs to terminate gracefully | `""` |
|
||||
|
||||
@@ -18,6 +18,7 @@ spec:
|
||||
{{- if .Values.updateStrategy }}
|
||||
strategy: {{- toYaml .Values.updateStrategy | nindent 4 }}
|
||||
{{- end }}
|
||||
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
|
||||
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
|
||||
selector:
|
||||
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
|
||||
|
||||
@@ -121,6 +121,9 @@ replicaCount: 1
|
||||
##
|
||||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
## @param revisionHistoryLimit Number of old replicasets to retain
|
||||
##
|
||||
revisionHistoryLimit: 10
|
||||
## @param schedulerName Alternative scheduler
|
||||
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user