Skip to content

Commit

Permalink
Fix the healthcheck.
Browse files Browse the repository at this point in the history
  • Loading branch information
shambarick committed Nov 8, 2017
1 parent 8ed60b8 commit c10255c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 4 additions & 1 deletion news-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ spec:
livenessProbe:
httpGet:
scheme: HTTP
path: /
path: /health
port: 8080
httpHeaders:
- name: Authorization
value: Basic YWRtaW46cGFzc3dvcmQ=
initialDelaySeconds: 30
timeoutSeconds: 30
---
Expand Down
6 changes: 5 additions & 1 deletion organism-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,12 @@ spec:
livenessProbe:
httpGet:
scheme: HTTP
path: /
path: /health
port: 8080
httpHeaders:
- name: Authorization
value: Basic YWRtaW46cGFzc3dvcmQ=

initialDelaySeconds: 30
timeoutSeconds: 30
---
Expand Down
5 changes: 4 additions & 1 deletion procedure-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ spec:
livenessProbe:
httpGet:
scheme: HTTP
path: /
path: /health
port: 8080
httpHeaders:
- name: Authorization
value: Basic YWRtaW46cGFzc3dvcmQ=
initialDelaySeconds: 30
timeoutSeconds: 30
---
Expand Down
2 changes: 1 addition & 1 deletion zipcode-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
livenessProbe:
httpGet:
scheme: HTTP
path: /
path: /health
port: 8080
initialDelaySeconds: 30
timeoutSeconds: 30

0 comments on commit c10255c

Please sign in to comment.