Skip to content

Commit

Permalink
Allow to configure labels for Ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent MIJOULE committed Aug 21, 2024
1 parent c61305f commit 4606c36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/kafka-ui/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ metadata:
namespace: {{ .Release.Namespace }}
labels:
{{- include "kafka-ui.labels" . | nindent 4 }}
{{- with .Values.ingress.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/kafka-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ ingress:
# Annotations for the Ingress
annotations: {}

# Labels for the Ingress
labels: {}

# ingressClassName for the Ingress
ingressClassName: ""

Expand Down

0 comments on commit 4606c36

Please sign in to comment.