mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/sentry] Fix .Values.web.podLabels usage. (#19072)
Signed-off-by: Andrey Voronkov <avoronkov@enapter.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
d064b1c7cb
commit
71d3a6b700
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Sentry is a cross-platform crash reporting and aggregation platform.
|
||||
name: sentry
|
||||
version: 3.1.3
|
||||
version: 3.1.4
|
||||
appVersion: 9.1.2
|
||||
keywords:
|
||||
- debugging
|
||||
|
||||
@@ -68,7 +68,7 @@ Parameter | Description
|
||||
`image.imagePullSecrets` | Specify image pull secrets | `[]`
|
||||
`sentrySecret` | Specify SENTRY_SECRET_KEY. If isn't specified it will be generated automatically. | `nil`
|
||||
`web.podAnnotations` | Web pod annotations | `{}`
|
||||
`web.podLabels` | Worker pod extra labels | `{}`
|
||||
`web.podLabels` | Web pod extra labels | `{}`
|
||||
`web.replicacount` | Amount of web pods to run | `1`
|
||||
`web.resources.limits` | Web resource limits | `{cpu: 500m, memory: 500Mi}`
|
||||
`web.resources.requests` | Web resource requests | `{cpu: 300m, memory: 300Mi}`
|
||||
@@ -77,7 +77,7 @@ Parameter | Description
|
||||
`web.affinity` | Affinity settings for web pod assignment | `{}`
|
||||
`web.schedulerName` | Name of an alternate scheduler for web pod | `nil`
|
||||
`web.tolerations` | Toleration labels for web pod assignment | `[]`
|
||||
`web.probeInitialDelaySeconds` | The number of seconds before the probe doing healthcheck | `50`
|
||||
`web.probeInitialDelaySeconds` | The number of seconds before the probe doing healthcheck | `50`
|
||||
`web.priorityClassName` | The priorityClassName on web deployment | `nil`
|
||||
`cron.podAnnotations` | Cron pod annotations | `{}`
|
||||
`cron.podLabels` | Worker pod extra labels | `{}`
|
||||
|
||||
@@ -28,8 +28,8 @@ spec:
|
||||
app: {{ template "sentry.fullname" . }}
|
||||
release: "{{ .Release.Name }}"
|
||||
role: web
|
||||
{{- if .Values.worker.podLabels }}
|
||||
{{ toYaml .Values.worker.podLabels | indent 8 }}
|
||||
{{- if .Values.web.podLabels }}
|
||||
{{ toYaml .Values.web.podLabels | indent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- if .Values.web.affinity }}
|
||||
|
||||
Reference in New Issue
Block a user