diff --git a/stable/sentry/Chart.yaml b/stable/sentry/Chart.yaml index db4f35a6a7..a6d19e3b37 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: 1.3.5 +version: 1.3.6 appVersion: 9.0 keywords: - debugging diff --git a/stable/sentry/README.md b/stable/sentry/README.md index 63da2da50e..27f96ac402 100644 --- a/stable/sentry/README.md +++ b/stable/sentry/README.md @@ -107,6 +107,7 @@ The following table lists the configurable parameters of the Sentry chart and th | `ingress.enabled` | Enable ingress controller resource | `false` | | `ingress.annotations` | Ingress annotations | `{}` | | `ingress.hostname` | URL to address your Sentry installation | `sentry.local` | +| `ingress.path` | path to address your Sentry installation | `/` | | `ingress.tls` | Ingress TLS configuration | `[]` | | `postgresql.enabled` | Deploy postgres server (see below) | `true` | | `postgresql.postgresDatabase` | Postgres database name | `sentry` | diff --git a/stable/sentry/templates/ingress.yaml b/stable/sentry/templates/ingress.yaml index a8ac294524..6530d43882 100644 --- a/stable/sentry/templates/ingress.yaml +++ b/stable/sentry/templates/ingress.yaml @@ -17,7 +17,7 @@ spec: - host: {{ .Values.ingress.hostname }} http: paths: - - path: / + - path: {{ default "/" .Values.ingress.path | quote }} backend: serviceName: {{ template "fullname" . }} servicePort: {{ .Values.service.externalPort }}