mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Sentry: Add annotations to service (#7985)
* [stable/sentry] add annotations to service Signed-off-by: Eric Lordahl <eric@koto.ai> * [stable/sentry] v0.4.2 Signed-off-by: Eric Lordahl <eric@koto.ai> * v0.5.0 Signed-off-by: Eric Lordahl <eric@koto.ai>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
984997d6c6
commit
28b33e5bf5
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Sentry is a cross-platform crash reporting and aggregation platform.
|
||||
name: sentry
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
appVersion: 9.0
|
||||
keywords:
|
||||
- debugging
|
||||
|
||||
@@ -99,6 +99,7 @@ The following table lists the configurable parameters of the Sentry chart and th
|
||||
| `service.name` | Kubernetes service name | `sentry` |
|
||||
| `service.externalPort` | Kubernetes external service port | `9000` |
|
||||
| `service.internalPort` | Kubernetes internal service port | `9000` |
|
||||
| `service.annotations` | Service annotations | `{}` |
|
||||
| `ingress.enabled` | Enable ingress controller resource | `false` |
|
||||
| `ingress.annotations` | Ingress annotations | `{}` |
|
||||
| `ingress.hostname` | URL to address your Sentry installation | `sentry.local` |
|
||||
|
||||
@@ -2,6 +2,10 @@ apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ template "fullname" . }}
|
||||
annotations:
|
||||
{{- range $key, $value := .Values.service.annotations }}
|
||||
{{ $key }}: {{ $value | quote }}
|
||||
{{- end }}
|
||||
labels:
|
||||
app: {{ template "fullname" . }}
|
||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}"
|
||||
|
||||
@@ -89,6 +89,11 @@ service:
|
||||
type: LoadBalancer
|
||||
externalPort: 9000
|
||||
internalPort: 9000
|
||||
|
||||
## Service annotations
|
||||
##
|
||||
annotations: {}
|
||||
|
||||
## External IP addresses of service
|
||||
## Default: nil
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user