Skip to content

Commit

Permalink
docs: update port number in k8s-health-check (#1636)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoheinagao authored Feb 6, 2023
1 parent 0edea9d commit 95f8034
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/k8s-health-check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To configure the address, use `--http-address`. To configure the port, use
livenessProbe:
httpGet:
path: /liveness
port: 8090
port: 9090
# Number of seconds after the container has started before the first probe is scheduled. Defaults to 0.
# Not necessary when the startup probe is in use.
initialDelaySeconds: 0
Expand All @@ -56,7 +56,7 @@ livenessProbe:
readinessProbe:
httpGet:
path: /readiness
port: 8090
port: 9090
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 5
Expand All @@ -67,7 +67,7 @@ readinessProbe:
startupProbe:
httpGet:
path: /startup
port: 8090
port: 9090
periodSeconds: 1
timeoutSeconds: 5
failureThreshold: 20
Expand Down
6 changes: 3 additions & 3 deletions examples/k8s-health-check/proxy_with_http_health_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ spec:
livenessProbe:
httpGet:
path: /liveness
port: 8090
port: 9090
# Number of seconds after the container has started before the first probe is scheduled. Defaults to 0.
# Not necessary when the startup probe is in use.
initialDelaySeconds: 0
Expand All @@ -122,7 +122,7 @@ spec:
readinessProbe:
httpGet:
path: /readiness
port: 8090
port: 9090
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 5
Expand All @@ -133,7 +133,7 @@ spec:
startupProbe:
httpGet:
path: /startup
port: 8090
port: 9090
periodSeconds: 1
timeoutSeconds: 5
failureThreshold: 20
Expand Down

0 comments on commit 95f8034

Please sign in to comment.