mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
stable/sentry: make ingress path configurable (#14000)
Signed-off-by: Patrik Votoček <patrik@votocek.cz>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
efa091f8c6
commit
a0dbd4d3f7
@@ -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
|
||||
|
||||
@@ -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` |
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user