mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/sentry] Add Ingress extraPaths to prepend to every host configuration (#22822)
Signed-off-by: Evgeniy Moskalenko <evgeniy.moskalenko@exness.com> Co-authored-by: Evgeniy Moskalenko <evgeniy.moskalenko@exness.com>
This commit is contained in:
co-authored by
Evgeniy Moskalenko
parent
d407562106
commit
db2373fe20
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Sentry is a cross-platform crash reporting and aggregation platform.
|
||||
name: sentry
|
||||
version: 4.2.4
|
||||
version: 4.3.0
|
||||
appVersion: 9.1.2
|
||||
keywords:
|
||||
- debugging
|
||||
|
||||
@@ -152,6 +152,7 @@ Parameter | Description
|
||||
`ingress.labels` | Ingress labels | `{}`
|
||||
`ingress.hostname` | URL to address your Sentry installation | `sentry.local`
|
||||
`ingress.path` | path to address your Sentry installation | `/`
|
||||
`ingress.extraPaths` | Ingress extra paths to prepend to every host configuration. | `[]`
|
||||
`ingress.tls` | Ingress TLS configuration | `[]`
|
||||
`postgresql.enabled` | Deploy postgres server (see below) | `true`
|
||||
`postgresql.postgresqlDatabase` | Postgres database name | `sentry`
|
||||
|
||||
@@ -20,6 +20,12 @@ spec:
|
||||
- host: {{ .Values.ingress.hostname }}
|
||||
http:
|
||||
paths:
|
||||
{{- range .Values.ingress.extraPaths }}
|
||||
- path: {{ .path | quote }}
|
||||
backend:
|
||||
serviceName: {{ .backend.serviceName }}
|
||||
servicePort: {{ .backend.servicePort}}
|
||||
{{- end }}
|
||||
- path: {{ default "/" .Values.ingress.path | quote }}
|
||||
backend:
|
||||
serviceName: {{ template "sentry.fullname" . }}
|
||||
|
||||
@@ -198,6 +198,14 @@ ingress:
|
||||
enabled: false
|
||||
hostname: sentry.local
|
||||
|
||||
## Extra paths to prepend to every host configuration. This is useful when configuring custom actions with
|
||||
## [AWS ALB Ingress Controller](https://kubernetes-sigs.github.io/aws-alb-ingress-controller/guide/ingress/annotation/#actions).
|
||||
extraPaths: []
|
||||
# - path: /*
|
||||
# backend:
|
||||
# serviceName: ssl-redirect
|
||||
# servicePort: use-annotation
|
||||
|
||||
## Ingress annotations
|
||||
##
|
||||
annotations: {}
|
||||
|
||||
Reference in New Issue
Block a user