Skip to content

Commit

Permalink
Adapt readiness and liveness probe port due to binaries unification
Browse files Browse the repository at this point in the history
  • Loading branch information
fnonay committed Oct 16, 2024
1 parent 4565b52 commit 043e3e1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion charts/agent/templates/daemonset-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,19 @@ spec:
- name: {{ .Chart.Name }}
image: "{{ .Values.windows.image.registry }}/{{ .Values.windows.image.repository }}:{{ .Values.windows.image.tag }}"
imagePullPolicy: {{ .Values.windows.image.pullPolicy | default .Values.global.image.pullPolicy }}
livenessProbe:
httpGet:
host: 127.0.0.1
path: /healthz
port: 24483
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 10
readinessProbe:
httpGet:
host: 127.0.0.1
path: /healthz
port: 24484
port: 24483
initialDelaySeconds: 60
timeoutSeconds: 10
resources:
Expand Down

0 comments on commit 043e3e1

Please sign in to comment.