mirror of https://github.com/apache/druid.git
replaces hard-coded probe delays with helm values (#12805)
This commit is contained in:
parent
2e616e633a
commit
6b0b1d7af3
|
@ -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:
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -233,6 +233,9 @@ historical:
|
|||
# cpu: 500m
|
||||
# memory: 512Mi
|
||||
|
||||
livenessProbeInitialDelaySeconds: 60
|
||||
readinessProbeInitialDelaySeconds: 60
|
||||
|
||||
## (dict) If specified, apply these annotations to each master Pod
|
||||
podAnnotations: {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue