Skip to content

Commit 1e3c55a

Browse files
authored
Merge pull request #126378 from jordanbean-msft/patch-4
Update health-probes.md
2 parents 488ff76 + cbbec43 commit 1e3c55a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/container-apps/health-probes.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The `...` placeholders denote omitted code. Refer to [Container Apps ARM templat
8282
"name":"web",
8383
"probes": [
8484
{
85-
"type": "liveness",
85+
"type": "Liveness",
8686
"httpGet": {
8787
"path": "/health",
8888
"port": 8080,
@@ -96,15 +96,15 @@ The `...` placeholders denote omitted code. Refer to [Container Apps ARM templat
9696
"periodSeconds": 3
9797
},
9898
{
99-
"type": "readiness",
99+
"type": "Readiness",
100100
"tcpSocket": {
101101
"port": 8081
102102
},
103103
"initialDelaySeconds": 10,
104104
"periodSeconds": 3
105105
},
106106
{
107-
"type": "startup",
107+
"type": "Startup",
108108
"httpGet": {
109109
"path": "/startup",
110110
"port": 8080,
@@ -130,7 +130,7 @@ containers:
130130
- image: nginx
131131
name: web
132132
probes:
133-
- type: liveness
133+
- type: Liveness
134134
httpGet:
135135
path: "/health"
136136
port: 8080
@@ -139,12 +139,12 @@ containers:
139139
value: "liveness probe"
140140
initialDelaySeconds: 7
141141
periodSeconds: 3
142-
- type: readiness
142+
- type: Readiness
143143
tcpSocket:
144144
port: 8081
145145
initialDelaySeconds: 10
146146
periodSeconds: 3
147-
- type: startup
147+
- type: Startup
148148
httpGet:
149149
path: "/startup"
150150
port: 8080
@@ -181,7 +181,7 @@ The following example demonstrates how to configure the liveness and readiness p
181181
```json
182182
"probes": [
183183
{
184-
"type": "liveness",
184+
"type": "Liveness",
185185
"failureThreshold": 3,
186186
"periodSeconds": 10,
187187
"successThreshold": 1,
@@ -191,7 +191,7 @@ The following example demonstrates how to configure the liveness and readiness p
191191
"timeoutSeconds": 1
192192
},
193193
{
194-
"type": "readiness",
194+
"type": "Readiness",
195195
"failureThreshold": 48,
196196
"initialDelaySeconds": 3,
197197
"periodSeconds": 5,

0 commit comments

Comments
 (0)