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() {
232232 .readOnly (true ))
233233 .livenessProbe (
234234 newProbe ()
235- .initialDelaySeconds (120 )
235+ .initialDelaySeconds (20 )
236236 .periodSeconds (5 )
237237 .exec (
238238 newExecAction ()
239239 .addCommandItem ("bash" )
240240 .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" ))))
242251 .addVolumesItem (
243252 newVolume ()
244253 .name ("weblogic-operator-cm-volume" )
You can’t perform that action at this time.
0 commit comments