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:
Eric Lordahl
2019-01-15 23:18:51 -08:00
committed by Kubernetes Prow Robot
parent 984997d6c6
commit 28b33e5bf5
4 changed files with 11 additions and 1 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.0.2
version: 1.1.0
appVersion: 9.0
keywords:
- debugging
+1
View File
@@ -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` |
+4
View File
@@ -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 "+" "_" }}"
+5
View File
@@ -89,6 +89,11 @@ service:
type: LoadBalancer
externalPort: 9000
internalPort: 9000
## Service annotations
##
annotations: {}
## External IP addresses of service
## Default: nil
##