Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified helm/name-lookup/renci-dev-values-populated.yaml
Binary file not shown.
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