Skip to content
Binary file modified helm/name-lookup/renci-dev-values-populated.yaml
Binary file not shown.
4 changes: 2 additions & 2 deletions helm/name-lookup/templates/solr-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ spec:
httpGet:
port: {{ .Values.solr.port }}
path: /solr/admin/cores?action=STATUS
periodSeconds: 120
periodSeconds: 600
timeoutSeconds: 120
terminationGracePeriodSeconds: 600
terminationGracePeriodSeconds: 1200
{{- with .Values.solr.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 1 addition & 1 deletion helm/name-lookup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ solr:
# the memory to Solr helps with performance.
#
requests:
memory: "32Gi"
memory: "16Gi"
cpu: 4000m
limits:
memory: "32Gi"
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ spec:
{{ if .Values.web.startupProbe.enabled }}
startupProbe:
httpGet:
path: /docs
path: /status
port: {{ .Values.web.port }}
{{ with .Values.web.startupProbe.config }}
{{ . | toYaml | nindent 12 }}
Expand All @@ -85,7 +85,7 @@ spec:
{{ if .Values.web.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /docs
path: /status
port: {{ .Values.web.port }}
{{ with .Values.web.readinessProbe.config }}
{{ . | toYaml | nindent 12 }}
Expand All @@ -94,7 +94,7 @@ spec:
{{ if .Values.web.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /docs
path: /status
port: {{ .Values.web.port }}
{{ with .Values.web.livenessProbe.config }}
{{ . | toYaml | nindent 12 }}
Expand Down
12 changes: 6 additions & 6 deletions helm/node-normalization-web-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ web:
startupProbe:
enabled: true
config:
periodSeconds: 1
timeoutSeconds: 1
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
# to be able to detect pod started asap pinged every second, but not cause restart
failureThreshold: 1500
# if rediness probe fails no requests will be routed to the pod
readinessProbe:
enabled: true
config:
periodSeconds: 1
timeoutSeconds: 1
periodSeconds: 10
timeoutSeconds: 3
# to make sure that if a worker got booted
# we need to be sure before we start routing to that pod.
successThreshold: 1
Expand All @@ -68,10 +68,10 @@ web:
livenessProbe:
enabled: true
config:
periodSeconds: 5 # five seconds
periodSeconds: 30
timeoutSeconds: 30
successThreshold: 1
# if a pod fails twice on /docs we boot it.
# if a pod fails twice on /status we boot it.
failureThreshold: 2

resources:
Expand Down