Skip to content

Commit

Permalink
Merge pull request #1216 from porter-dev/main
Browse files Browse the repository at this point in the history
merge timeoutSeconds into production
  • Loading branch information
d-g-town authored Mar 1, 2024
2 parents 79a38c1 + 5bea220 commit 5516cc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions applications/worker/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ spec:
periodSeconds: {{ .Values.health.readinessProbe.periodSeconds }}
failureThreshold: {{ .Values.health.readinessProbe.failureThreshold }}
initialDelaySeconds: {{ .Values.health.readinessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.health.readinessProbe.timeoutSeconds }}
{{- end }}
{{ if .Values.health.livenessProbe.enabled }}
livenessProbe:
Expand All @@ -162,6 +163,7 @@ spec:
periodSeconds: {{ .Values.health.livenessProbe.periodSeconds }}
failureThreshold: {{ .Values.health.livenessProbe.failureThreshold }}
initialDelaySeconds: {{ .Values.health.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.health.livenessProbe.timeoutSeconds }}
{{- end }}
resources:
requests:
Expand Down
2 changes: 2 additions & 0 deletions applications/worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,14 @@ health:
failureThreshold: 3
periodSeconds: 5
initialDelaySeconds: 5
timeoutSeconds: 1
readinessProbe:
enabled: false
command: "ls -l"
failureThreshold: 3
periodSeconds: 5
initialDelaySeconds: 5
timeoutSeconds: 1
startupProbe:
enabled: false
command: "ls -l"
Expand Down

0 comments on commit 5516cc8

Please sign in to comment.