diff --git a/stable/cerebro/Chart.yaml b/stable/cerebro/Chart.yaml index e5c12a203d..b091d265d3 100644 --- a/stable/cerebro/Chart.yaml +++ b/stable/cerebro/Chart.yaml @@ -1,5 +1,5 @@ name: cerebro -version: 1.0.1 +version: 1.0.2 appVersion: 0.8.3 apiVersion: v1 description: A Helm chart for Cerebro - a web admin tool that replaces Kopf. diff --git a/stable/cerebro/README.md b/stable/cerebro/README.md index e75a6a9d3b..a400109951 100644 --- a/stable/cerebro/README.md +++ b/stable/cerebro/README.md @@ -57,6 +57,7 @@ The following table lists the configurable parameters of the cerebro chart and t | `resources.requests.memory` | Memory resource requests | | | `resources.limits.memory` | Memory resource limits | | | `ingress` | Settings for ingress | `{}` | +| `ingress.labels` | Labels to add to the ingress | `{}` | | `nodeSelector` | Settings for nodeselector | `{}` | | `tolerations` | Settings for toleration | `{}` | | `affinity` | Settings for affinity | `{}` | diff --git a/stable/cerebro/templates/ingress.yaml b/stable/cerebro/templates/ingress.yaml index 47b795b14d..79f37534e6 100644 --- a/stable/cerebro/templates/ingress.yaml +++ b/stable/cerebro/templates/ingress.yaml @@ -10,6 +10,9 @@ metadata: chart: {{ template "cerebro.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} +{{- if .Values.ingress.labels }} +{{ toYaml .Values.ingress.labels | indent 4 }} +{{- end }} {{- with .Values.ingress.annotations }} annotations: {{ toYaml . | indent 4 }} diff --git a/stable/cerebro/values.yaml b/stable/cerebro/values.yaml index 175a0e5a25..e65c63bce7 100644 --- a/stable/cerebro/values.yaml +++ b/stable/cerebro/values.yaml @@ -35,6 +35,7 @@ ingress: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" + labels: {} path: / hosts: - chart-example.local