replaces hard-coded probe delays with helm values (#12805)

This commit is contained in:
Jacques Arnoux 2022-07-26 01:34:06 -07:00 committed by GitHub
parent 2e616e633a
commit 6b0b1d7af3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -30,7 +30,7 @@ dependencies:
version: 8.6.4
repository: https://charts.helm.sh/stable
condition: postgresql.enabled
version: 0.3.0
version: 0.3.1
home: https://druid.apache.org/
icon: https://druid.apache.org/img/favicon.png
sources:

View File

@ -105,12 +105,12 @@ spec:
resources:
{{ toYaml .Values.historical.resources | indent 12 }}
livenessProbe:
initialDelaySeconds: 60
initialDelaySeconds: {{ .Values.historical.livenessProbeInitialDelaySeconds }}
httpGet:
path: /status/health
port: {{ .Values.historical.port }}
readinessProbe:
initialDelaySeconds: 60
initialDelaySeconds: {{ .Values.historical.readinessProbeInitialDelaySeconds }}
httpGet:
path: /status/health
port: {{ .Values.historical.port }}

View File

@ -233,6 +233,9 @@ historical:
# cpu: 500m
# memory: 512Mi
livenessProbeInitialDelaySeconds: 60
readinessProbeInitialDelaySeconds: 60
## (dict) If specified, apply these annotations to each master Pod
podAnnotations: {}