File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ The `...` placeholders denote omitted code. Refer to [Container Apps ARM templat
82
82
"name" :" web" ,
83
83
"probes" : [
84
84
{
85
- "type" : " liveness " ,
85
+ "type" : " Liveness " ,
86
86
"httpGet" : {
87
87
"path" : " /health" ,
88
88
"port" : 8080 ,
@@ -96,15 +96,15 @@ The `...` placeholders denote omitted code. Refer to [Container Apps ARM templat
96
96
"periodSeconds" : 3
97
97
},
98
98
{
99
- "type" : " readiness " ,
99
+ "type" : " Readiness " ,
100
100
"tcpSocket" : {
101
101
"port" : 8081
102
102
},
103
103
"initialDelaySeconds" : 10 ,
104
104
"periodSeconds" : 3
105
105
},
106
106
{
107
- "type" : " startup " ,
107
+ "type" : " Startup " ,
108
108
"httpGet" : {
109
109
"path" : " /startup" ,
110
110
"port" : 8080 ,
@@ -130,7 +130,7 @@ containers:
130
130
- image : nginx
131
131
name : web
132
132
probes :
133
- - type : liveness
133
+ - type : Liveness
134
134
httpGet :
135
135
path : " /health"
136
136
port : 8080
@@ -139,12 +139,12 @@ containers:
139
139
value : " liveness probe"
140
140
initialDelaySeconds : 7
141
141
periodSeconds : 3
142
- - type : readiness
142
+ - type : Readiness
143
143
tcpSocket :
144
144
port : 8081
145
145
initialDelaySeconds : 10
146
146
periodSeconds : 3
147
- - type : startup
147
+ - type : Startup
148
148
httpGet :
149
149
path : " /startup"
150
150
port : 8080
@@ -181,7 +181,7 @@ The following example demonstrates how to configure the liveness and readiness p
181
181
``` json
182
182
"probes" : [
183
183
{
184
- "type" : " liveness " ,
184
+ "type" : " Liveness " ,
185
185
"failureThreshold" : 3 ,
186
186
"periodSeconds" : 10 ,
187
187
"successThreshold" : 1 ,
@@ -191,7 +191,7 @@ The following example demonstrates how to configure the liveness and readiness p
191
191
"timeoutSeconds" : 1
192
192
},
193
193
{
194
- "type" : " readiness " ,
194
+ "type" : " Readiness " ,
195
195
"failureThreshold" : 48 ,
196
196
"initialDelaySeconds" : 3 ,
197
197
"periodSeconds" : 5 ,
You can’t perform that action at this time.
0 commit comments