Skip to content

Commit f39cfab

Browse files
committed
Update helm tests
1 parent e9570e7 commit f39cfab

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

kubernetes/src/test/java/oracle/kubernetes/operator/create/CreateOperatorGeneratedFilesTestBase.java

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)