From cca0692075b8d17941f7197de1ec7ac70b68b32e Mon Sep 17 00:00:00 2001 From: devthejo Date: Mon, 10 Jun 2024 18:19:27 +0200 Subject: [PATCH 1/2] fix: default startup probe timeout --- plugins/contrib/charts/contrib-helpers/templates/_probes.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/contrib/charts/contrib-helpers/templates/_probes.yaml b/plugins/contrib/charts/contrib-helpers/templates/_probes.yaml index 10d6cdc1e..d9eb30ccd 100644 --- a/plugins/contrib/charts/contrib-helpers/templates/_probes.yaml +++ b/plugins/contrib/charts/contrib-helpers/templates/_probes.yaml @@ -28,7 +28,7 @@ httpGet: {{- end -}} {{- define "contrib-helpers.startupProbe" -}} -{{ $defaultStartupProbe := dict "failureThreshold" 20 "periodSeconds" 10 "initialDelaySeconds" 10 }} +{{ $defaultStartupProbe := dict "failureThreshold" 20 "periodSeconds" 10 "initialDelaySeconds" 10 "timeoutSeconds" 5 }} {{ if .Values.startupProbe }} {{ mergeOverwrite dict $defaultStartupProbe ((include "contrib-helpers.probe" .) | fromYaml) .Values.startupProbe | toYaml }} {{ else }} From a93dc6e956e56347813c4f2dae70b2759c53505c Mon Sep 17 00:00:00 2001 From: devthejo Date: Mon, 10 Jun 2024 18:33:30 +0200 Subject: [PATCH 2/2] chore: up snapshots --- .../kontinuous/tests/__snapshots__/app-sidecar.dev.yaml | 1 + .../tests/__snapshots__/app-simple-options.dev.yaml | 1 + .../tests/__snapshots__/app-simple-options.prod.yaml | 1 + packages/kontinuous/tests/__snapshots__/app-simple.dev.yaml | 1 + .../kontinuous/tests/__snapshots__/app-simple.prod.yaml | 1 + .../kontinuous/tests/__snapshots__/chart-group.dev.yaml | 2 ++ .../kontinuous/tests/__snapshots__/chart-groups.dev.yaml | 2 ++ .../tests/__snapshots__/chart-not-in-values.dev.yaml | 1 + .../kontinuous/tests/__snapshots__/extends-ovh.dev.yaml | 1 + .../kontinuous/tests/__snapshots__/extends-ovh.prod.yaml | 1 + packages/kontinuous/tests/__snapshots__/if-env.dev.yaml | 1 + packages/kontinuous/tests/__snapshots__/if-env.local.yaml | 1 + .../tests/__snapshots__/ingress-external-domain.prod.yaml | 1 + .../kontinuous/tests/__snapshots__/inline-values.dev.yaml | 1 + .../tests/__snapshots__/jobs-build-options.dev.yaml | 1 + .../tests/__snapshots__/jobs-build-stage.dev.yaml | 1 + packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml | 1 + .../tests/__snapshots__/long-branch-host-patch.dev.yaml | 1 + .../tests/__snapshots__/long-branch-host.dev.yaml | 1 + packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml | 1 + .../__snapshots__/needs-using-argocd-sync-waves.dev.yaml | 6 ++++++ .../tests/__snapshots__/oblik-cap-resources.dev.yaml | 1 + packages/kontinuous/tests/__snapshots__/persist.dev.yaml | 1 + .../kontinuous/tests/__snapshots__/post-renderer.dev.yaml | 1 + .../kontinuous/tests/__snapshots__/private-mode.dev.yaml | 1 + .../kontinuous/tests/__snapshots__/repo.domifa.dev.yaml | 5 +++++ .../kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml | 5 +++++ .../kontinuous/tests/__snapshots__/repo.domifa.prod.yaml | 5 +++++ packages/kontinuous/tests/__snapshots__/sample-1.dev.yaml | 2 ++ .../kontinuous/tests/__snapshots__/sample-1.preprod.yaml | 2 ++ packages/kontinuous/tests/__snapshots__/sample-1.prod.yaml | 2 ++ .../__snapshots__/socialgouv-autodevops-override.dev.yaml | 1 + .../tests/__snapshots__/socialgouv-autodevops.dev.yaml | 1 + .../kontinuous/tests/__snapshots__/values-extends.dev.yaml | 1 + .../tests/__snapshots__/values-extends.preprod.yaml | 1 + packages/kontinuous/tests/__snapshots__/values-js.dev.yaml | 1 + 36 files changed, 58 insertions(+) diff --git a/packages/kontinuous/tests/__snapshots__/app-sidecar.dev.yaml b/packages/kontinuous/tests/__snapshots__/app-sidecar.dev.yaml index 4e88d15e1..e5cd30246 100644 --- a/packages/kontinuous/tests/__snapshots__/app-sidecar.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/app-sidecar.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml b/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml index 5f26c47c2..94581f4c9 100644 --- a/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml @@ -774,6 +774,7 @@ spec: port: http initialDelaySeconds: 123 periodSeconds: 125 + timeoutSeconds: 5 resources: limits: cpu: \\"2\\" diff --git a/packages/kontinuous/tests/__snapshots__/app-simple-options.prod.yaml b/packages/kontinuous/tests/__snapshots__/app-simple-options.prod.yaml index d9e7f988e..1f2770297 100644 --- a/packages/kontinuous/tests/__snapshots__/app-simple-options.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/app-simple-options.prod.yaml @@ -187,6 +187,7 @@ spec: port: http initialDelaySeconds: 123 periodSeconds: 125 + timeoutSeconds: 5 resources: limits: cpu: \\"2\\" diff --git a/packages/kontinuous/tests/__snapshots__/app-simple.dev.yaml b/packages/kontinuous/tests/__snapshots__/app-simple.dev.yaml index 6e58b0c74..77206ddb8 100644 --- a/packages/kontinuous/tests/__snapshots__/app-simple.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/app-simple.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/app-simple.prod.yaml b/packages/kontinuous/tests/__snapshots__/app-simple.prod.yaml index 6e83a5814..e4208ba52 100644 --- a/packages/kontinuous/tests/__snapshots__/app-simple.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/app-simple.prod.yaml @@ -176,6 +176,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/chart-group.dev.yaml b/packages/kontinuous/tests/__snapshots__/chart-group.dev.yaml index e892cb429..0982a0eda 100644 --- a/packages/kontinuous/tests/__snapshots__/chart-group.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/chart-group.dev.yaml @@ -100,6 +100,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -222,6 +223,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/chart-groups.dev.yaml b/packages/kontinuous/tests/__snapshots__/chart-groups.dev.yaml index 0b190ad93..72ebef295 100644 --- a/packages/kontinuous/tests/__snapshots__/chart-groups.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/chart-groups.dev.yaml @@ -100,6 +100,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -222,6 +223,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/chart-not-in-values.dev.yaml b/packages/kontinuous/tests/__snapshots__/chart-not-in-values.dev.yaml index a58998a40..eab77c7f5 100644 --- a/packages/kontinuous/tests/__snapshots__/chart-not-in-values.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/chart-not-in-values.dev.yaml @@ -99,6 +99,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml index be3efac58..e1592837f 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml @@ -487,6 +487,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml index 012e81cd5..e2cf901d9 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml @@ -678,6 +678,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/if-env.dev.yaml b/packages/kontinuous/tests/__snapshots__/if-env.dev.yaml index dcea23535..ada2381b9 100644 --- a/packages/kontinuous/tests/__snapshots__/if-env.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/if-env.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/if-env.local.yaml b/packages/kontinuous/tests/__snapshots__/if-env.local.yaml index cc1cfa20d..28681f789 100644 --- a/packages/kontinuous/tests/__snapshots__/if-env.local.yaml +++ b/packages/kontinuous/tests/__snapshots__/if-env.local.yaml @@ -174,6 +174,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/ingress-external-domain.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-external-domain.prod.yaml index abd65bf37..92f7834f5 100644 --- a/packages/kontinuous/tests/__snapshots__/ingress-external-domain.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/ingress-external-domain.prod.yaml @@ -176,6 +176,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/inline-values.dev.yaml b/packages/kontinuous/tests/__snapshots__/inline-values.dev.yaml index ed3ed354d..0742598c3 100644 --- a/packages/kontinuous/tests/__snapshots__/inline-values.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/inline-values.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml index e29a9af30..f78ca7959 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml @@ -459,6 +459,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml index 413b2f36c..4579e7fcf 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml @@ -1045,6 +1045,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml index 82cb651e9..d87cde5db 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml @@ -1043,6 +1043,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/long-branch-host-patch.dev.yaml b/packages/kontinuous/tests/__snapshots__/long-branch-host-patch.dev.yaml index 64cbe012b..921d10103 100644 --- a/packages/kontinuous/tests/__snapshots__/long-branch-host-patch.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/long-branch-host-patch.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/long-branch-host.dev.yaml b/packages/kontinuous/tests/__snapshots__/long-branch-host.dev.yaml index 0cd24b377..9298b0f7d 100644 --- a/packages/kontinuous/tests/__snapshots__/long-branch-host.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/long-branch-host.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml index d8022b7bd..d2219482c 100644 --- a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml @@ -419,6 +419,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/needs-using-argocd-sync-waves.dev.yaml b/packages/kontinuous/tests/__snapshots__/needs-using-argocd-sync-waves.dev.yaml index 7bd26ce3b..f6e43a250 100644 --- a/packages/kontinuous/tests/__snapshots__/needs-using-argocd-sync-waves.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/needs-using-argocd-sync-waves.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -300,6 +301,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -423,6 +425,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -546,6 +549,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -669,6 +673,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -792,6 +797,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/oblik-cap-resources.dev.yaml b/packages/kontinuous/tests/__snapshots__/oblik-cap-resources.dev.yaml index b2a2c975e..3d0008f58 100644 --- a/packages/kontinuous/tests/__snapshots__/oblik-cap-resources.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/oblik-cap-resources.dev.yaml @@ -179,6 +179,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: 0.2 diff --git a/packages/kontinuous/tests/__snapshots__/persist.dev.yaml b/packages/kontinuous/tests/__snapshots__/persist.dev.yaml index 2e7e28194..d98d7b273 100644 --- a/packages/kontinuous/tests/__snapshots__/persist.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/persist.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/post-renderer.dev.yaml b/packages/kontinuous/tests/__snapshots__/post-renderer.dev.yaml index 795781128..df7fcba71 100644 --- a/packages/kontinuous/tests/__snapshots__/post-renderer.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/post-renderer.dev.yaml @@ -178,6 +178,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/private-mode.dev.yaml b/packages/kontinuous/tests/__snapshots__/private-mode.dev.yaml index a650c1241..fc5f1bbe6 100644 --- a/packages/kontinuous/tests/__snapshots__/private-mode.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/private-mode.dev.yaml @@ -177,6 +177,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml index 672154898..1cbb6f0db 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml @@ -1932,6 +1932,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1.5\\" @@ -2093,6 +2094,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1.5\\" @@ -2246,6 +2248,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1\\" @@ -2372,6 +2375,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -2494,6 +2498,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml index 2c961e77d..bdf5d4a7e 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml @@ -1341,6 +1341,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1.5\\" @@ -1503,6 +1504,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1.5\\" @@ -1658,6 +1660,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1\\" @@ -1784,6 +1787,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -1906,6 +1910,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml index 0e29ec87a..3400fa030 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml @@ -1350,6 +1350,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1.5\\" @@ -1513,6 +1514,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1.5\\" @@ -1670,6 +1672,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: cpu: \\"1\\" @@ -1796,6 +1799,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -1918,6 +1922,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/sample-1.dev.yaml b/packages/kontinuous/tests/__snapshots__/sample-1.dev.yaml index 06488a320..76033918a 100644 --- a/packages/kontinuous/tests/__snapshots__/sample-1.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/sample-1.dev.yaml @@ -256,6 +256,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -393,6 +394,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/sample-1.preprod.yaml b/packages/kontinuous/tests/__snapshots__/sample-1.preprod.yaml index 8e9219448..f02d16aa2 100644 --- a/packages/kontinuous/tests/__snapshots__/sample-1.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/sample-1.preprod.yaml @@ -255,6 +255,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -383,6 +384,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/sample-1.prod.yaml b/packages/kontinuous/tests/__snapshots__/sample-1.prod.yaml index c6e9d6400..e84deefe0 100644 --- a/packages/kontinuous/tests/__snapshots__/sample-1.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/sample-1.prod.yaml @@ -251,6 +251,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} @@ -379,6 +380,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml index 0e36b707e..6091c67f2 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml @@ -458,6 +458,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml index b67c17172..cd950f7ac 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml @@ -457,6 +457,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml index 9e2721413..e1b6462b6 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml @@ -304,6 +304,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml index 4284db781..d92ccd635 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml @@ -304,6 +304,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {} diff --git a/packages/kontinuous/tests/__snapshots__/values-js.dev.yaml b/packages/kontinuous/tests/__snapshots__/values-js.dev.yaml index b68afea29..6d72f48ee 100644 --- a/packages/kontinuous/tests/__snapshots__/values-js.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-js.dev.yaml @@ -176,6 +176,7 @@ spec: port: http initialDelaySeconds: 10 periodSeconds: 10 + timeoutSeconds: 5 resources: limits: {} requests: {}