mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
Kubernetes Prow Robot
parent
47f8cb748b
commit
576a3aa9e1
@@ -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
|
||||
|
||||
@@ -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` |
|
||||
|
||||
@@ -32,3 +32,7 @@ spec:
|
||||
selector:
|
||||
app: {{ template "fullname" . }}
|
||||
role: web
|
||||
{{- with .Values.service.loadBalancerSourceRanges }}
|
||||
loadBalancerSourceRanges:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
|
||||
@@ -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/
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user