Skip to content
Merged
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
Fix the path of probes
Signed-off-by: zoetrope <[email protected]>
  • Loading branch information
zoetrope committed Dec 14, 2020
commit a08bbfb12fe73def8dbced4127f5f6bfa6a40d06
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ spec:
allowPrivilegeEscalation: false
livenessProbe:
httpGet:
path: /readyz
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /healthz
path: /readyz
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
Expand Down
4 changes: 2 additions & 2 deletions testdata/project-v3-addon/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ spec:
allowPrivilegeEscalation: false
livenessProbe:
httpGet:
path: /readyz
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /healthz
path: /readyz
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
Expand Down
4 changes: 2 additions & 2 deletions testdata/project-v3-config/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ spec:
allowPrivilegeEscalation: false
livenessProbe:
httpGet:
path: /readyz
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /healthz
path: /readyz
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
Expand Down
4 changes: 2 additions & 2 deletions testdata/project-v3-multigroup/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ spec:
allowPrivilegeEscalation: false
livenessProbe:
httpGet:
path: /readyz
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /healthz
path: /readyz
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
Expand Down
4 changes: 2 additions & 2 deletions testdata/project-v3/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ spec:
allowPrivilegeEscalation: false
livenessProbe:
httpGet:
path: /readyz
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /healthz
path: /readyz
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
Expand Down