diff --git a/stable/sentry/Chart.yaml b/stable/sentry/Chart.yaml index e2a9a205be..3bf3090dec 100644 --- a/stable/sentry/Chart.yaml +++ b/stable/sentry/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Sentry is a cross-platform crash reporting and aggregation platform. name: sentry -version: 4.2.0 +version: 4.2.1 appVersion: 9.1.2 keywords: - debugging diff --git a/stable/sentry/README.md b/stable/sentry/README.md index cfb95f8973..1e4be936e7 100644 --- a/stable/sentry/README.md +++ b/stable/sentry/README.md @@ -138,6 +138,7 @@ Parameter | Description `service.loadBalancerSourceRanges` | Allow list for the load balancer | `nil` `ingress.enabled` | Enable ingress controller resource | `false` `ingress.annotations` | Ingress annotations | `{}` +`ingress.labels` | Ingress labels | `{}` `ingress.hostname` | URL to address your Sentry installation | `sentry.local` `ingress.path` | path to address your Sentry installation | `/` `ingress.tls` | Ingress TLS configuration | `[]` diff --git a/stable/sentry/templates/ingress.yaml b/stable/sentry/templates/ingress.yaml index cb5381820f..3b97f0db88 100644 --- a/stable/sentry/templates/ingress.yaml +++ b/stable/sentry/templates/ingress.yaml @@ -8,6 +8,9 @@ metadata: chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.ingress.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} annotations: {{- range $key, $value := .Values.ingress.annotations }} {{ $key }}: {{ $value | quote }} diff --git a/stable/sentry/values.yaml b/stable/sentry/values.yaml index a0b1330788..2a07960787 100644 --- a/stable/sentry/values.yaml +++ b/stable/sentry/values.yaml @@ -204,6 +204,11 @@ ingress: # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: 'true' + ## Ingress labels + # + labels: {} + # env: dev + ## Ingress TLS configuration ## Secrets must be manually created in the namespace ##