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 @@ -81,6 +81,7 @@
| `ingress.pathType` | Ingress path type | `Prefix` |
| `ingress.host` | Default hostname for the ingress record | `""` |
| `ingress.tls.enabled` | Enable TLS configuration for the host defined at `ingress.host` parameter | `false` |
| `ingress.tls.host` | Optional host value for TLS certificate used by the ingress, value of `ingress.host` is used if not defined | `""` |
| `ingress.tls.secretName` | The name of a pre-created Secret containing a TLS private key and certificate | `""` |
| `ingress.precedingPaths` | HTTP paths to add to the Ingress before the default path | `[]` |
| `ingress.succeedingPaths` | Http paths to add to the Ingress after the default path | `[]` |
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.3
version: 1.6.4
appVersion: v1.4.2
icon: https://raw.githubusercontent.com/kafbat/kafka-ui/main/documentation/images/logo_new.png
2 changes: 1 addition & 1 deletion charts/kafka-ui/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
{{- if .Values.ingress.tls.enabled }}
tls:
- hosts:
- {{ tpl .Values.ingress.host . }}
- "{{ tpl (.Values.ingress.tls.host | default .Values.ingress.host) . }}"
secretName: {{ .Values.ingress.tls.secretName }}
{{- end }}
{{- if .Values.ingress.ingressClassName }}
Expand Down
2 changes: 2 additions & 0 deletions charts/kafka-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,8 @@ ingress:
# Enable TLS termination for the Ingress
## @param ingress.tls.enabled Enable TLS configuration for the host defined at `ingress.host` parameter
enabled: false
## @param ingress.tls.host Optional host value for TLS certificate used by the ingress, value of `ingress.host` is used if not defined
host: ""
## @param ingress.tls.secretName [string] The name of a pre-created Secret containing a TLS private key and certificate
secretName: ""

Expand Down
Loading