Skip to content

Commit 8b319ab

Browse files
committed
Let's be a bit more patient.
1 parent 12c3352 commit 8b319ab

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

charts/eoapi/templates/mock-oidc/deployment.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,30 @@ spec:
4141
- name: http
4242
containerPort: {{ .Values.mockOidcServer.port | default 8888 }}
4343
protocol: TCP
44-
livenessProbe:
44+
startupProbe:
4545
httpGet:
4646
path: /.well-known/openid-configuration
4747
port: http
4848
initialDelaySeconds: 10
49+
periodSeconds: 5
50+
failureThreshold: 12
51+
timeoutSeconds: 3
52+
livenessProbe:
53+
httpGet:
54+
path: /.well-known/openid-configuration
55+
port: http
56+
initialDelaySeconds: 30
4957
periodSeconds: 10
58+
failureThreshold: 3
59+
timeoutSeconds: 3
5060
readinessProbe:
5161
httpGet:
5262
path: /.well-known/openid-configuration
5363
port: http
5464
initialDelaySeconds: 5
5565
periodSeconds: 5
66+
failureThreshold: 3
67+
timeoutSeconds: 3
5668
{{- if .Values.mockOidcServer.resources }}
5769
resources:
5870
{{- toYaml .Values.mockOidcServer.resources | nindent 10 }}

0 commit comments

Comments
 (0)