Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/kafka-ui/CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
| `imagePullSecrets` | Docker registry secret names as an array | `[]` |
| `nameOverride` | String to partially override chart name | `""` |
| `fullnameOverride` | String to fully override app name | `""` |
| `extraManifests` | Arbitrary Kubernetes manifests | `[]` |

### ServiceAccount configuration

Expand Down
2 changes: 1 addition & 1 deletion charts/kafka-ui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ apiVersion: v2
name: kafka-ui
description: A Helm chart for kafka-UI
type: application
version: 1.6.4
version: 1.7.0
appVersion: v1.5.0
icon: https://raw.githubusercontent.com/kafbat/kafka-ui/main/documentation/images/logo_new.png
8 changes: 8 additions & 0 deletions charts/kafka-ui/templates/extra-manifests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{{ range .Values.extraManifests }}
---
{{- if typeIs "string" . }}
{{ tpl . $ }}
{{ else }}
{{ tpl (. | toYaml) $ }}
{{- end }}
{{ end }}
3 changes: 3 additions & 0 deletions charts/kafka-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ imagePullSecrets: []
nameOverride: ""
## @param fullnameOverride String to fully override app name
fullnameOverride: ""
## @param extraManifests Arbitrary Kubernetes manifests
extraManifests: []

## @section ServiceAccount configuration
serviceAccount:
Expand Down Expand Up @@ -294,3 +296,4 @@ affinity: {}

## @param revisionHistoryLimit [nullable] Specify how many old ReplicaSets for this Deployment you want to retain
revisionHistoryLimit: null