stable/sentry: make ingress path configurable (#14000)

Signed-off-by: Patrik Votoček <patrik@votocek.cz>
This commit is contained in:
Patrik Votoček
2019-05-20 12:47:15 -07:00
committed by Kubernetes Prow Robot
parent efa091f8c6
commit a0dbd4d3f7
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -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
+1
View File
@@ -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` |
+1 -1
View File
@@ -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 }}