[stable/sentry] Support loadBalancerSourceRanges on Service template (#13665)

* Support loadBalancerSourceRanges on Service

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>

* Chart version bump

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>

* Adding default values and README

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>

* Revert "Adding default values and README"

This reverts commit 940f3e294e.

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>

* Version bump

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>

* Another version bump

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>

* Version bump

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>

* Add documentation on values and README

Signed-off-by: Wilfrido Vidana <wvidanas@gmail.com>
This commit is contained in:
Wilfrido Vidana
2019-05-31 18:16:24 -07:00
committed by Kubernetes Prow Robot
parent 47f8cb748b
commit 576a3aa9e1
4 changed files with 9 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.4.0
version: 1.4.1
appVersion: 9.1.1
keywords:
- debugging
+1
View File
@@ -104,6 +104,7 @@ The following table lists the configurable parameters of the Sentry chart and th
| `service.internalPort` | Kubernetes internal service port | `9000` |
| `service.annotations` | Service annotations | `{}` |
| `service.nodePort` | Kubernetes service NodePort port | Randomly chosen by Kubernetes |
| `service.loadBalancerSourceRanges` | Allow list for the load balancer | `nil` |
| `ingress.enabled` | Enable ingress controller resource | `false` |
| `ingress.annotations` | Ingress annotations | `{}` |
| `ingress.hostname` | URL to address your Sentry installation | `sentry.local` |
+4
View File
@@ -32,3 +32,7 @@ spec:
selector:
app: {{ template "fullname" . }}
role: web
{{- with .Values.service.loadBalancerSourceRanges }}
loadBalancerSourceRanges:
{{- toYaml . | nindent 4 }}
{{- end }}
+3
View File
@@ -106,6 +106,9 @@ service:
# externalIPs:
# - 192.168.0.1
## Load Balancer allow-list
# loadBalancerSourceRanges: []
## Enable persistence using Persistent Volume Claims
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
##