From 3e5b2df607140ff65ee4b86bfc9fbc44311b0713 Mon Sep 17 00:00:00 2001 From: Nacho Barrientos Date: Mon, 16 Sep 2024 16:20:42 +0200 Subject: [PATCH 1/3] Allow configuring revisionHistoryLimit --- charts/kafka-ui/Chart.yaml | 2 +- charts/kafka-ui/templates/deployment.yaml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/charts/kafka-ui/Chart.yaml b/charts/kafka-ui/Chart.yaml index cf5f9fb..0b25c0e 100644 --- a/charts/kafka-ui/Chart.yaml +++ b/charts/kafka-ui/Chart.yaml @@ -2,6 +2,6 @@ apiVersion: v2 name: kafka-ui description: A Helm chart for kafka-UI type: application -version: 1.4.4 +version: 1.5.0 appVersion: v1.0.0 icon: https://raw.githubusercontent.com/kafbat/kafka-ui/main/documentation/images/logo_new.png diff --git a/charts/kafka-ui/templates/deployment.yaml b/charts/kafka-ui/templates/deployment.yaml index ae307c1..b44831a 100644 --- a/charts/kafka-ui/templates/deployment.yaml +++ b/charts/kafka-ui/templates/deployment.yaml @@ -16,6 +16,9 @@ spec: selector: matchLabels: {{- include "kafka-ui.selectorLabels" . | nindent 6 }} + {{- if .Values.revisionHistoryLimit }} + revisionHistoryLimit: {{ .Values.revisionHistoryLimit }} + {{- end }} template: metadata: annotations: From 498b3caad5d65dd9e4a98aceed537f7d7d94d4d6 Mon Sep 17 00:00:00 2001 From: Azat Safin Date: Tue, 17 Sep 2024 15:33:15 +0300 Subject: [PATCH 2/3] Update patch version sorry, it should be patch version --- charts/kafka-ui/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/kafka-ui/Chart.yaml b/charts/kafka-ui/Chart.yaml index 0b25c0e..14e7d25 100644 --- a/charts/kafka-ui/Chart.yaml +++ b/charts/kafka-ui/Chart.yaml @@ -2,6 +2,6 @@ apiVersion: v2 name: kafka-ui description: A Helm chart for kafka-UI type: application -version: 1.5.0 +version: 1.4.5 appVersion: v1.0.0 icon: https://raw.githubusercontent.com/kafbat/kafka-ui/main/documentation/images/logo_new.png From d47b72ebaf25421d8116393ee27ac28d8ac1556d Mon Sep 17 00:00:00 2001 From: Azat Safin Date: Tue, 17 Sep 2024 15:37:48 +0300 Subject: [PATCH 3/3] add revisionHistoryLimit without default value just want to let users know that it exists --- charts/kafka-ui/values.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/kafka-ui/values.yaml b/charts/kafka-ui/values.yaml index 649fcdd..95e2864 100644 --- a/charts/kafka-ui/values.yaml +++ b/charts/kafka-ui/values.yaml @@ -197,3 +197,4 @@ extraContainers: | # ports: # - name: proxy-web # containerPort: 4181 +revisionHistoryLimit: null