File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
kubernetes/src/test/java/oracle/kubernetes/operator/create Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -232,13 +232,22 @@ protected ExtensionsV1beta1Deployment getExpectedWeblogicOperatorDeployment() {
232
232
.readOnly (true ))
233
233
.livenessProbe (
234
234
newProbe ()
235
- .initialDelaySeconds (120 )
235
+ .initialDelaySeconds (20 )
236
236
.periodSeconds (5 )
237
237
.exec (
238
238
newExecAction ()
239
239
.addCommandItem ("bash" )
240
240
.addCommandItem (
241
- "/operator/livenessProbe.sh" ))))
241
+ "/operator/livenessProbe.sh" )))
242
+ .readinessProbe (
243
+ newProbe ()
244
+ .initialDelaySeconds (2 )
245
+ .periodSeconds (10 )
246
+ .exec (
247
+ newExecAction ()
248
+ .addCommandItem ("bash" )
249
+ .addCommandItem (
250
+ "/operator/readinessProbe.sh" ))))
242
251
.addVolumesItem (
243
252
newVolume ()
244
253
.name ("weblogic-operator-cm-volume" )
You can’t perform that action at this time.
0 commit comments