|
1 | 1 | // |
2 | 2 | // DISCLAIMER |
3 | 3 | // |
4 | | -// Copyright 2016-2023 ArangoDB GmbH, Cologne, Germany |
| 4 | +// Copyright 2016-2025 ArangoDB GmbH, Cologne, Germany |
5 | 5 | // |
6 | 6 | // Licensed under the Apache License, Version 2.0 (the "License"); |
7 | 7 | // you may not use this file except in compliance with the License. |
@@ -364,6 +364,7 @@ func TestEnsurePod_ArangoDB_Features(t *testing.T) { |
364 | 364 |
|
365 | 365 | testCase.ExpectedPod.Spec.Containers[0].LivenessProbe = createTestLivenessProbe(httpProbe, false, "", shared.ServerPortName) |
366 | 366 | testCase.ExpectedPod.Spec.Containers[0].ReadinessProbe = createTestReadinessProbe(httpProbe, false, "") |
| 367 | + testCase.ExpectedPod.Spec.Containers[0].StartupProbe = createTestStartupProbe(httpProbe, false, "", 720*6) |
367 | 368 | }, |
368 | 369 | ExpectedEvent: "member single is created", |
369 | 370 | ExpectedPod: core.Pod{ |
@@ -429,6 +430,7 @@ func TestEnsurePod_ArangoDB_Features(t *testing.T) { |
429 | 430 |
|
430 | 431 | testCase.ExpectedPod.Spec.Containers[0].LivenessProbe = createTestLivenessProbe(httpProbe, false, "", shared.ServerPortName) |
431 | 432 | testCase.ExpectedPod.Spec.Containers[0].ReadinessProbe = createTestReadinessProbe(httpProbe, false, "") |
| 433 | + testCase.ExpectedPod.Spec.Containers[0].StartupProbe = createTestStartupProbe(httpProbe, false, "", 720*6) |
432 | 434 | }, |
433 | 435 | ExpectedEvent: "member single is created", |
434 | 436 | ExpectedPod: core.Pod{ |
@@ -494,6 +496,7 @@ func TestEnsurePod_ArangoDB_Features(t *testing.T) { |
494 | 496 |
|
495 | 497 | testCase.ExpectedPod.Spec.Containers[0].LivenessProbe = createTestLivenessProbe(httpProbe, false, "", shared.ServerPortName) |
496 | 498 | testCase.ExpectedPod.Spec.Containers[0].ReadinessProbe = createTestReadinessProbe(httpProbe, false, "") |
| 499 | + testCase.ExpectedPod.Spec.Containers[0].StartupProbe = createTestStartupProbe(httpProbe, false, "", 720*6) |
497 | 500 | }, |
498 | 501 | ExpectedEvent: "member single is created", |
499 | 502 | ExpectedPod: core.Pod{ |
|
0 commit comments