From 1737ea61d0a85ee0e37d9b297371da3d99f99235 Mon Sep 17 00:00:00 2001 From: Jo Date: Wed, 5 Jun 2024 16:24:42 +0200 Subject: [PATCH 1/2] feat: add annotations values in charts (#489) --- plugins/contrib/charts/app/templates/deployment.yaml | 7 ++++++- plugins/contrib/charts/app/templates/service.yaml | 7 ++++++- plugins/contrib/charts/app/values.yaml | 2 +- plugins/contrib/charts/hasura/templates/deployment.yaml | 7 ++++++- plugins/contrib/charts/hasura/templates/service.yaml | 7 ++++++- plugins/contrib/charts/hasura/values.yaml | 1 + plugins/contrib/charts/redis/templates/deployment.yaml | 7 ++++++- plugins/contrib/charts/redis/templates/service.yaml | 7 ++++++- plugins/contrib/charts/redis/values.yaml | 3 ++- 9 files changed, 40 insertions(+), 8 deletions(-) diff --git a/plugins/contrib/charts/app/templates/deployment.yaml b/plugins/contrib/charts/app/templates/deployment.yaml index 2446cd63c9..c212c1adbf 100644 --- a/plugins/contrib/charts/app/templates/deployment.yaml +++ b/plugins/contrib/charts/app/templates/deployment.yaml @@ -26,7 +26,12 @@ metadata: application: {{ .Values.global.repositoryName }} name: {{ (or .Values.component .Chart.Name) | lower }} namespace: {{ or .Values.namespace .Values.global.namespace }} - annotations: {} + annotations: + {{- if .Values.annotations }} + {{- range $key, $val := .Values.annotations }} + "{{ $key }}": "{{ $val }}" + {{- end }} + {{- end }} spec: replicas: {{ or .Values.replicas .Values.global.replicas 1 }} selector: diff --git a/plugins/contrib/charts/app/templates/service.yaml b/plugins/contrib/charts/app/templates/service.yaml index af890f5e95..4c846e3185 100644 --- a/plugins/contrib/charts/app/templates/service.yaml +++ b/plugins/contrib/charts/app/templates/service.yaml @@ -6,7 +6,12 @@ metadata: application: {{ .Values.global.repositoryName }} name: {{ (or .Values.component .Chart.Name) | lower }} namespace: {{ or .Values.namespace .Values.global.namespace }} - annotations: {} + annotations: + {{- if .Values.annotations }} + {{- range $key, $val := .Values.annotations }} + "{{ $key }}": "{{ $val }}" + {{- end }} + {{- end }} spec: ports: - name: http diff --git a/plugins/contrib/charts/app/values.yaml b/plugins/contrib/charts/app/values.yaml index 1c32011e93..40d7455b48 100644 --- a/plugins/contrib/charts/app/values.yaml +++ b/plugins/contrib/charts/app/values.yaml @@ -63,6 +63,6 @@ securityContext: # runAsNonRoot: true # runAsUser: 26 containerSecurityContext: - initContainers: sidecars: [] +annotations: {} diff --git a/plugins/contrib/charts/hasura/templates/deployment.yaml b/plugins/contrib/charts/hasura/templates/deployment.yaml index 0a238798d0..4d88b218b7 100644 --- a/plugins/contrib/charts/hasura/templates/deployment.yaml +++ b/plugins/contrib/charts/hasura/templates/deployment.yaml @@ -6,7 +6,12 @@ metadata: application: {{ .Values.global.repositoryName }} name: {{ (or .Values.component .Chart.Name) | lower }} namespace: {{ or .Values.namespace .Values.global.namespace }} - annotations: {} + annotations: + {{- if .Values.annotations }} + {{- range $key, $val := .Values.annotations }} + "{{ $key }}": "{{ $val }}" + {{- end }} + {{- end }} spec: replicas: {{ or .Values.replicas .Values.global.replicas 1 }} selector: diff --git a/plugins/contrib/charts/hasura/templates/service.yaml b/plugins/contrib/charts/hasura/templates/service.yaml index af890f5e95..4c846e3185 100644 --- a/plugins/contrib/charts/hasura/templates/service.yaml +++ b/plugins/contrib/charts/hasura/templates/service.yaml @@ -6,7 +6,12 @@ metadata: application: {{ .Values.global.repositoryName }} name: {{ (or .Values.component .Chart.Name) | lower }} namespace: {{ or .Values.namespace .Values.global.namespace }} - annotations: {} + annotations: + {{- if .Values.annotations }} + {{- range $key, $val := .Values.annotations }} + "{{ $key }}": "{{ $val }}" + {{- end }} + {{- end }} spec: ports: - name: http diff --git a/plugins/contrib/charts/hasura/values.yaml b/plugins/contrib/charts/hasura/values.yaml index 93fead999c..1eeaaaaedf 100644 --- a/plugins/contrib/charts/hasura/values.yaml +++ b/plugins/contrib/charts/hasura/values.yaml @@ -56,3 +56,4 @@ waitForPostgres: false ingress: enabled: true annotations: {} +annotations: {} diff --git a/plugins/contrib/charts/redis/templates/deployment.yaml b/plugins/contrib/charts/redis/templates/deployment.yaml index 515da6e114..b1eb68057a 100644 --- a/plugins/contrib/charts/redis/templates/deployment.yaml +++ b/plugins/contrib/charts/redis/templates/deployment.yaml @@ -6,7 +6,12 @@ metadata: application: {{ .Values.global.repositoryName }} name: {{ (or .Values.component .Chart.Name) | lower }} namespace: {{ or .Values.namespace .Values.global.namespace }} - annotations: {} + annotations: + {{- if .Values.annotations }} + {{- range $key, $val := .Values.annotations }} + "{{ $key }}": "{{ $val }}" + {{- end }} + {{- end }} spec: replicas: 1 selector: diff --git a/plugins/contrib/charts/redis/templates/service.yaml b/plugins/contrib/charts/redis/templates/service.yaml index 0b2c7e1f40..7119d524d9 100644 --- a/plugins/contrib/charts/redis/templates/service.yaml +++ b/plugins/contrib/charts/redis/templates/service.yaml @@ -6,7 +6,12 @@ metadata: application: {{ .Values.global.repositoryName }} name: {{ (or .Values.component .Chart.Name) | lower }} namespace: {{ or .Values.namespace .Values.global.namespace }} - annotations: {} + annotations: + {{- if .Values.annotations }} + {{- range $key, $val := .Values.annotations }} + "{{ $key }}": "{{ $val }}" + {{- end }} + {{- end }} spec: ports: - name: http diff --git a/plugins/contrib/charts/redis/values.yaml b/plugins/contrib/charts/redis/values.yaml index 2c02f62621..c44c57fcb6 100644 --- a/plugins/contrib/charts/redis/values.yaml +++ b/plugins/contrib/charts/redis/values.yaml @@ -6,4 +6,5 @@ image: redis:6.2.6-alpine3.14 addVolumes: [] volumes: [] volumeMounts: [] -~forceRestart: false \ No newline at end of file +~forceRestart: false +annotations: {} From e4cfd13ab349177bd0275a71719d928d6ce0d789 Mon Sep 17 00:00:00 2001 From: Social Groovy Bot <45039513+SocialGroovyBot@users.noreply.github.com> Date: Wed, 5 Jun 2024 14:25:51 +0000 Subject: [PATCH 2/2] chore(release): 1.177.0 --- .github/actions/deploy-via-github/Dockerfile | 2 +- .github/actions/deploy-via-github/action.yaml | 2 +- .github/actions/deploy-via-webhook/Dockerfile | 2 +- .../actions/deploy-via-webhook/action.yaml | 2 +- .../deploy-via-webhook/kontinuousVersion | 2 +- .github/actions/env/Dockerfile | 2 +- .github/actions/env/action.yaml | 2 +- .github/kontinuousVersion | 2 +- CHANGELOG.md | 7 ++ .../argocd/kontinuous-webhook/values.yaml | 2 +- docker-compose.yaml | 4 +- package.json | 2 +- packages/argocd/Dockerfile | 4 +- packages/common/package.json | 2 +- packages/dev-tools/package.json | 2 +- packages/helm-tree/package.json | 2 +- packages/kontinuous/package.json | 2 +- .../__snapshots__/app-simple-options.dev.yaml | 10 +- .../tests/__snapshots__/deactivate.dev.yaml | 2 +- .../tests/__snapshots__/extends-ovh.dev.yaml | 4 +- .../tests/__snapshots__/extends-ovh.prod.yaml | 4 +- .../tests/__snapshots__/include-file.dev.yaml | 2 +- .../__snapshots__/init-container.dev.yaml | 2 +- .../tests/__snapshots__/job-builds.dev.yaml | 4 +- .../__snapshots__/job-no-affinity.dev.yaml | 2 +- .../__snapshots__/jobs-build-options.dev.yaml | 2 +- .../__snapshots__/jobs-build-stage.dev.yaml | 8 +- .../tests/__snapshots__/jobs-build.dev.yaml | 8 +- .../__snapshots__/jobs-runs-map.dev.yaml | 4 +- .../__snapshots__/jobs-seed-command.dev.yaml | 4 +- .../__snapshots__/jobs-seed-sql.dev.yaml | 8 +- .../__snapshots__/jobs-uses-relative.dev.yaml | 4 +- .../__snapshots__/jobs-uses-self-ref.dev.yaml | 4 +- .../tests/__snapshots__/meta-log.dev.yaml | 4 +- .../tests/__snapshots__/output.dev.yaml | 4 +- .../override-env-default.dev.yaml | 2 +- .../tests/__snapshots__/pg.dev.yaml | 2 +- .../tests/__snapshots__/pg.prod.yaml | 2 +- .../tests/__snapshots__/repo.domifa.dev.yaml | 18 +-- .../__snapshots__/repo.domifa.preprod.yaml | 8 +- .../tests/__snapshots__/repo.domifa.prod.yaml | 8 +- .../socialgouv-autodevops-override.dev.yaml | 2 +- .../socialgouv-autodevops.dev.yaml | 2 +- .../__snapshots__/values-extends.dev.yaml | 2 +- .../__snapshots__/values-extends.preprod.yaml | 2 +- .../env/dev/values.yaml | 2 +- packages/wait-needs/package.json | 2 +- packages/webhook/Chart.yaml | 2 +- packages/webhook/package.json | 2 +- packages/webhook/values.yaml | 2 +- plugins/contrib/charts/app/Chart.yaml | 2 +- .../contrib/charts/contrib-helpers/Chart.yaml | 2 +- plugins/contrib/charts/daemon/Chart.yaml | 2 +- plugins/contrib/charts/deactivate/Chart.yaml | 4 +- plugins/contrib/charts/hasura/Chart.yaml | 2 +- plugins/contrib/charts/job/Chart.yaml | 4 +- plugins/contrib/charts/job/values.yaml | 2 +- plugins/contrib/charts/jobs/Chart.yaml | 4 +- plugins/contrib/charts/jobs/values.yaml | 2 +- plugins/contrib/charts/namespace/Chart.yaml | 2 +- .../contrib/charts/output-volume/Chart.yaml | 2 +- .../charts/rancher-namespace/Chart.yaml | 2 +- plugins/contrib/charts/redis/Chart.yaml | 2 +- .../charts/security-policies/Chart.yaml | 2 +- .../resources-tree-infos.test.js.snap | 108 +++++++++--------- .../debug-manifests/tests/samples/egapro.yaml | 20 ++-- .../tests/samples/template.yaml | 22 ++-- .../debug-manifests/tests/samples/www.yaml | 4 +- plugins/contrib/jobs/trigger-cronjob/use.yaml | 2 +- .../05.1-needs-using-initcontainers.js | 3 +- plugins/fabrique/Chart.yaml | 8 +- 71 files changed, 194 insertions(+), 188 deletions(-) diff --git a/.github/actions/deploy-via-github/Dockerfile b/.github/actions/deploy-via-github/Dockerfile index 4e173ed520..887f5676d6 100644 --- a/.github/actions/deploy-via-github/Dockerfile +++ b/.github/actions/deploy-via-github/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/socialgouv/kontinuous:v1.176.18 +FROM ghcr.io/socialgouv/kontinuous:v1.177.0 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/deploy-via-github/action.yaml b/.github/actions/deploy-via-github/action.yaml index 504691a94a..1541034ff9 100644 --- a/.github/actions/deploy-via-github/action.yaml +++ b/.github/actions/deploy-via-github/action.yaml @@ -49,7 +49,7 @@ outputs: runs: using: docker # image: Dockerfile - image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.176.18 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.177.0 env: KS_ENVIRONMENT: ${{ inputs.environment }} KS_CHART: ${{ inputs.chart }} diff --git a/.github/actions/deploy-via-webhook/Dockerfile b/.github/actions/deploy-via-webhook/Dockerfile index 8f23fa5253..706ced047b 100644 --- a/.github/actions/deploy-via-webhook/Dockerfile +++ b/.github/actions/deploy-via-webhook/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/socialgouv/kontinuous:v1.176.18 as base +FROM ghcr.io/socialgouv/kontinuous:v1.177.0 as base USER 0 diff --git a/.github/actions/deploy-via-webhook/action.yaml b/.github/actions/deploy-via-webhook/action.yaml index 89d8625810..5bc02ef5ff 100644 --- a/.github/actions/deploy-via-webhook/action.yaml +++ b/.github/actions/deploy-via-webhook/action.yaml @@ -29,7 +29,7 @@ inputs: runs: using: docker # image: Dockerfile - image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-webhook:v1.176.18 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-webhook:v1.177.0 env: KS_WEBHOOK_TOKEN: ${{ inputs.webhookToken }} KS_WEBHOOK_URI: ${{ inputs.webhookUri }} diff --git a/.github/actions/deploy-via-webhook/kontinuousVersion b/.github/actions/deploy-via-webhook/kontinuousVersion index e8a3cec188..0326e4809f 100644 --- a/.github/actions/deploy-via-webhook/kontinuousVersion +++ b/.github/actions/deploy-via-webhook/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.176.18 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.177.0 \ No newline at end of file diff --git a/.github/actions/env/Dockerfile b/.github/actions/env/Dockerfile index 992f48417f..a9db71b0fb 100644 --- a/.github/actions/env/Dockerfile +++ b/.github/actions/env/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/socialgouv/kontinuous:v1.176.18 +FROM ghcr.io/socialgouv/kontinuous:v1.177.0 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/env/action.yaml b/.github/actions/env/action.yaml index 74fbd0330b..ae32bed954 100644 --- a/.github/actions/env/action.yaml +++ b/.github/actions/env/action.yaml @@ -11,7 +11,7 @@ inputs: runs: using: docker # image: Dockerfile - image: docker://ghcr.io/socialgouv/kontinuous/env:v1.176.18 + image: docker://ghcr.io/socialgouv/kontinuous/env:v1.177.0 env: KS_GIT_BRANCH: ${{ inputs.branch }} KSENV_REPOSITORY_NAME: ${{ inputs.repositoryName }} diff --git a/.github/kontinuousVersion b/.github/kontinuousVersion index e8a3cec188..0326e4809f 100644 --- a/.github/kontinuousVersion +++ b/.github/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.176.18 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.177.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c15320ed08..9d5a990b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## 1.177.0 (2024-06-05) + + +### Features + +* add annotations values in charts ([#489](https://github.com/socialgouv/kontinuous/issues/489)) ([1737ea6](https://github.com/socialgouv/kontinuous/commit/1737ea61d0a85ee0e37d9b297371da3d99f99235)) + ## [1.176.18](https://github.com/socialgouv/kontinuous/compare/v1.176.17...v1.176.18) (2024-06-05) diff --git a/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml b/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml index 2e57dede0e..28c5be4289 100644 --- a/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml +++ b/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml @@ -1,5 +1,5 @@ kontinuous-webhook: - image: ghcr.io/socialgouv/kontinuous/webhook:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/webhook:v1.177.0 # image: harbor.fabrique.social.gouv.fr/sre/kontinuous/webhook:1 host: "kontinuous.fabrique.social.gouv.fr" diff --git a/docker-compose.yaml b/docker-compose.yaml index 257efac5bd..9de5659323 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -17,8 +17,8 @@ services: KUBEWEBHOOK_CONFIG_PATH: config.sample.yaml KUBEWEBHOOK_SUPERTOKEN: ${KUBEWEBHOOK_SUPERTOKEN:-1234} KUBEWEBHOOK_EXPOSED_PORT: ${KUBEWEBHOOK_EXPOSED_PORT:-7530} - KUBEWEBHOOK_PIPELINE_IMAGE: ${KUBEWEBHOOK_PIPELINE_IMAGE:-"ghcr.io/socialgouv/kontinuous:v1.176.18"} - KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.176.18"} + KUBEWEBHOOK_PIPELINE_IMAGE: ${KUBEWEBHOOK_PIPELINE_IMAGE:-"ghcr.io/socialgouv/kontinuous:v1.177.0"} + KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.177.0"} KUBEWEBHOOK_CI_NAMESPACE_ALLOW_ALL: ${KUBEWEBHOOK_CI_NAMESPACE_ALLOW_ALL:-"true"} KUBEWEBHOOK_HTTPLOGGER_IGNOREUSERAGENTS: backbox-robot KUBEWEBHOOK_SENTRY_DSN: ${KUBEWEBHOOK_SENTRY_DSN} diff --git a/package.json b/package.json index f09a717540..b4a350d0ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "~dev", - "version": "1.176.18", + "version": "1.177.0", "repository": "git@github.com:socialgouv/kontinuous.git", "license": "MIT", "private": true, diff --git a/packages/argocd/Dockerfile b/packages/argocd/Dockerfile index 287929bc0b..5e5b50c39e 100644 --- a/packages/argocd/Dockerfile +++ b/packages/argocd/Dockerfile @@ -25,8 +25,8 @@ RUN chown 1001:1001 /workspace RUN git config --global --add safe.directory /workspace -COPY --from=ghcr.io/socialgouv/kontinuous:v1.176.18 /usr/local/bin /usr/local/bin/ -COPY --from=ghcr.io/socialgouv/kontinuous:v1.176.18 --chown=999:999 /opt/kontinuous /opt/kontinuous/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.177.0 /usr/local/bin /usr/local/bin/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.177.0 --chown=999:999 /opt/kontinuous /opt/kontinuous/ # Switch back to non-root user USER 999 \ No newline at end of file diff --git a/packages/common/package.json b/packages/common/package.json index a79d0cc105..091f671d4e 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "~common", - "version": "1.176.18", + "version": "1.177.0", "description": "", "license": "MIT", "engines": { diff --git a/packages/dev-tools/package.json b/packages/dev-tools/package.json index ef3af77b56..55e890f560 100644 --- a/packages/dev-tools/package.json +++ b/packages/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "~dev-tools", - "version": "1.176.18", + "version": "1.177.0", "dependencies": { "replace": "^1.2.2", "~common": "workspace:^" diff --git a/packages/helm-tree/package.json b/packages/helm-tree/package.json index 64aeebbec0..d0f1bf4bde 100644 --- a/packages/helm-tree/package.json +++ b/packages/helm-tree/package.json @@ -1,6 +1,6 @@ { "name": "helm-tree", - "version": "1.176.18", + "version": "1.177.0", "description": "", "license": "MIT", "engines": { diff --git a/packages/kontinuous/package.json b/packages/kontinuous/package.json index 76587e4c2f..bb1a8441b2 100644 --- a/packages/kontinuous/package.json +++ b/packages/kontinuous/package.json @@ -1,6 +1,6 @@ { "name": "kontinuous", - "version": "1.176.18", + "version": "1.177.0", "repository": "https://github.com/socialgouv/kontinuous.git", "homepage": "https://socialgouv.github.io/kontinuous/", "license": "MIT", diff --git a/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml b/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml index f8009a45ef..f63025df42 100644 --- a/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/app-simple-options.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -289,7 +289,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -441,7 +441,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -571,7 +571,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -590,7 +590,7 @@ spec: limits: {} requests: {} - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml index 8eff303a9b..afb1cea03e 100644 --- a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml @@ -55,7 +55,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml index 12dd4b572d..73373d27f3 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -288,7 +288,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml index 4305096b11..a3e4d87364 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml @@ -324,7 +324,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -479,7 +479,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml index f58795f581..5307dd02d4 100644 --- a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml @@ -132,7 +132,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/init-container.dev.yaml b/packages/kontinuous/tests/__snapshots__/init-container.dev.yaml index c83c076cc5..1b3d76771b 100644 --- a/packages/kontinuous/tests/__snapshots__/init-container.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/init-container.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml b/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml index 3e5e24d4af..dc76721eed 100644 --- a/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -413,7 +413,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/job-no-affinity.dev.yaml b/packages/kontinuous/tests/__snapshots__/job-no-affinity.dev.yaml index d3125b9b1f..404e751791 100644 --- a/packages/kontinuous/tests/__snapshots__/job-no-affinity.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/job-no-affinity.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml index a78f295e6b..b4a79496c1 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml index 54db02f6be..7707c5a03d 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -289,7 +289,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -442,7 +442,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -722,7 +722,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml index 4a99082815..b886e78def 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -289,7 +289,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -441,7 +441,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -720,7 +720,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml index 8fa467c02e..42d170b02f 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -288,7 +288,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/jobs-seed-command.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-seed-command.dev.yaml index 0d14608b40..93d0937622 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-seed-command.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-seed-command.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/jobs-seed-sql.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-seed-sql.dev.yaml index 612455a8ba..89304b0253 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-seed-sql.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-seed-sql.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -454,7 +454,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml index d306d30137..ee06b7e27b 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -288,7 +288,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml b/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml index ca31c142cc..b6308c225b 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -288,7 +288,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml index cf19ed6e0d..3acb7ac6d7 100644 --- a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -254,7 +254,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/output.dev.yaml b/packages/kontinuous/tests/__snapshots__/output.dev.yaml index eca941a36a..dd78f0b3c7 100644 --- a/packages/kontinuous/tests/__snapshots__/output.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/output.dev.yaml @@ -157,7 +157,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -286,7 +286,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/override-env-default.dev.yaml b/packages/kontinuous/tests/__snapshots__/override-env-default.dev.yaml index f9b5ddc6a0..4c3030bb9f 100644 --- a/packages/kontinuous/tests/__snapshots__/override-env-default.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/override-env-default.dev.yaml @@ -228,7 +228,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/pg.dev.yaml b/packages/kontinuous/tests/__snapshots__/pg.dev.yaml index ec03447392..0cd05aecd5 100644 --- a/packages/kontinuous/tests/__snapshots__/pg.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/pg.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/pg.prod.yaml b/packages/kontinuous/tests/__snapshots__/pg.prod.yaml index ca5b58b521..fd748abf55 100644 --- a/packages/kontinuous/tests/__snapshots__/pg.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/pg.prod.yaml @@ -228,7 +228,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml index 54d1baa3d6..a522f7ff61 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml @@ -170,7 +170,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -454,7 +454,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -739,7 +739,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -1020,7 +1020,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -1302,7 +1302,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -1458,7 +1458,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -1609,7 +1609,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c @@ -1740,7 +1740,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -1759,7 +1759,7 @@ spec: limits: {} requests: {} - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml index ce92e3e339..ceee8fbcc9 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml @@ -169,7 +169,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -449,7 +449,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -734,7 +734,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -1015,7 +1015,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml index 7b75e5afc9..9cd48f789d 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml @@ -167,7 +167,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -450,7 +450,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -735,7 +735,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -1017,7 +1017,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml index 205170b28d..fe9d42e9df 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml index 86a444ef64..fb9f405af0 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml index fd06184251..1103093bd7 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml index 3466b7ced2..477cd5e8fd 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/samples/jobs-uses-degit.disabled/env/dev/values.yaml b/packages/kontinuous/tests/samples/jobs-uses-degit.disabled/env/dev/values.yaml index e7c6a9fca5..9e2c01be23 100644 --- a/packages/kontinuous/tests/samples/jobs-uses-degit.disabled/env/dev/values.yaml +++ b/packages/kontinuous/tests/samples/jobs-uses-degit.disabled/env/dev/values.yaml @@ -2,6 +2,6 @@ jobs: enabled: true runs: db: - use: socialgouv/kontinuous/plugins/contrib/jobs/create-db@v1.176.18 + use: socialgouv/kontinuous/plugins/contrib/jobs/create-db@v1.177.0 with: pgAdminSecretRefName: pg-scaleway diff --git a/packages/wait-needs/package.json b/packages/wait-needs/package.json index 79c886edbc..e0591a5797 100644 --- a/packages/wait-needs/package.json +++ b/packages/wait-needs/package.json @@ -5,7 +5,7 @@ "~common": "workspace:^" }, "bin": "./bin/wait-needs", - "version": "1.176.18", + "version": "1.177.0", "engines": { "node": "^16.17 || ^18 || ^20" } diff --git a/packages/webhook/Chart.yaml b/packages/webhook/Chart.yaml index f87b4b7b9b..ac85de4deb 100644 --- a/packages/webhook/Chart.yaml +++ b/packages/webhook/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: kontinuous-webhook -version: 1.176.18 +version: 1.177.0 home: https://socialgouv.github.io/kontinuous/ description: Webhook CI for Kubernetes icon: https://avatars.githubusercontent.com/u/45039513?v=4 diff --git a/packages/webhook/package.json b/packages/webhook/package.json index af1242873c..908fdb7a3d 100644 --- a/packages/webhook/package.json +++ b/packages/webhook/package.json @@ -1,6 +1,6 @@ { "name": "~webhook", - "version": "1.176.18", + "version": "1.177.0", "description": "", "license": "MIT", "author": "", diff --git a/packages/webhook/values.yaml b/packages/webhook/values.yaml index 04b7b27bd1..d27a9c97aa 100644 --- a/packages/webhook/values.yaml +++ b/packages/webhook/values.yaml @@ -8,7 +8,7 @@ replicas: 2 isProdCluster: true containerPort: 3000 # image: harbor.fabrique.social.gouv.fr/sre/kontinuous/webhook:latest -image: ghcr.io/socialgouv/kontinuous/webhook:v1.176.18 +image: ghcr.io/socialgouv/kontinuous/webhook:v1.177.0 resources: limits: cpu: 2 diff --git a/plugins/contrib/charts/app/Chart.yaml b/plugins/contrib/charts/app/Chart.yaml index e9b334f056..c55c17cc57 100644 --- a/plugins/contrib/charts/app/Chart.yaml +++ b/plugins/contrib/charts/app/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: app -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/charts/contrib-helpers/Chart.yaml b/plugins/contrib/charts/contrib-helpers/Chart.yaml index 8ae81489a1..a50a6029d2 100644 --- a/plugins/contrib/charts/contrib-helpers/Chart.yaml +++ b/plugins/contrib/charts/contrib-helpers/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v2 name: contrib-helpers -version: 1.176.18 +version: 1.177.0 type: library diff --git a/plugins/contrib/charts/daemon/Chart.yaml b/plugins/contrib/charts/daemon/Chart.yaml index e1768b8745..7a24c2be2a 100644 --- a/plugins/contrib/charts/daemon/Chart.yaml +++ b/plugins/contrib/charts/daemon/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: daemon -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/charts/deactivate/Chart.yaml b/plugins/contrib/charts/deactivate/Chart.yaml index 32730c411f..c8004dfc81 100644 --- a/plugins/contrib/charts/deactivate/Chart.yaml +++ b/plugins/contrib/charts/deactivate/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 name: deactivate -version: 1.176.18 +version: 1.177.0 dependencies: - name: jobs repository: file://../jobs condition: 'true' alias: jobs-deactivate - version: 1.176.18 + version: 1.177.0 diff --git a/plugins/contrib/charts/hasura/Chart.yaml b/plugins/contrib/charts/hasura/Chart.yaml index db9bdea50a..dd9a872155 100644 --- a/plugins/contrib/charts/hasura/Chart.yaml +++ b/plugins/contrib/charts/hasura/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: hasura -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/charts/job/Chart.yaml b/plugins/contrib/charts/job/Chart.yaml index 5250772fb0..f753a6f625 100644 --- a/plugins/contrib/charts/job/Chart.yaml +++ b/plugins/contrib/charts/job/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: job -version: 1.176.18 +version: 1.177.0 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.176.18 + version: 1.177.0 diff --git a/plugins/contrib/charts/job/values.yaml b/plugins/contrib/charts/job/values.yaml index 74b3a79059..c8a85ef60d 100644 --- a/plugins/contrib/charts/job/values.yaml +++ b/plugins/contrib/charts/job/values.yaml @@ -6,7 +6,7 @@ gitBranch: runs: {} defaults: image: "debian:stable" - degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/jobs/Chart.yaml b/plugins/contrib/charts/jobs/Chart.yaml index 4420e9d36e..c3673f99a0 100644 --- a/plugins/contrib/charts/jobs/Chart.yaml +++ b/plugins/contrib/charts/jobs/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: jobs -version: 1.176.18 +version: 1.177.0 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.176.18 + version: 1.177.0 diff --git a/plugins/contrib/charts/jobs/values.yaml b/plugins/contrib/charts/jobs/values.yaml index c159d43f44..a3128e8a03 100644 --- a/plugins/contrib/charts/jobs/values.yaml +++ b/plugins/contrib/charts/jobs/values.yaml @@ -5,7 +5,7 @@ gitBranch: runs: {} image: "debian:stable" -degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 +degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/namespace/Chart.yaml b/plugins/contrib/charts/namespace/Chart.yaml index 192c5cfc72..609a2b3e34 100644 --- a/plugins/contrib/charts/namespace/Chart.yaml +++ b/plugins/contrib/charts/namespace/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: namespace -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/charts/output-volume/Chart.yaml b/plugins/contrib/charts/output-volume/Chart.yaml index 01c35b68e9..f5b85c0e14 100644 --- a/plugins/contrib/charts/output-volume/Chart.yaml +++ b/plugins/contrib/charts/output-volume/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: output-volume -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/charts/rancher-namespace/Chart.yaml b/plugins/contrib/charts/rancher-namespace/Chart.yaml index 118226d058..f0c6a621b3 100644 --- a/plugins/contrib/charts/rancher-namespace/Chart.yaml +++ b/plugins/contrib/charts/rancher-namespace/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: rancher-namespace -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/charts/redis/Chart.yaml b/plugins/contrib/charts/redis/Chart.yaml index 75e195cb46..829e3a1e74 100644 --- a/plugins/contrib/charts/redis/Chart.yaml +++ b/plugins/contrib/charts/redis/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: redis -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/charts/security-policies/Chart.yaml b/plugins/contrib/charts/security-policies/Chart.yaml index 2f21415caa..cbada36576 100644 --- a/plugins/contrib/charts/security-policies/Chart.yaml +++ b/plugins/contrib/charts/security-policies/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: security-policies -version: 1.176.18 +version: 1.177.0 diff --git a/plugins/contrib/debug-manifests/tests/__snapshots__/resources-tree-infos.test.js.snap b/plugins/contrib/debug-manifests/tests/__snapshots__/resources-tree-infos.test.js.snap index 55349bcfec..4c60401236 100644 --- a/plugins/contrib/debug-manifests/tests/__snapshots__/resources-tree-infos.test.js.snap +++ b/plugins/contrib/debug-manifests/tests/__snapshots__/resources-tree-infos.test.js.snap @@ -6,7 +6,7 @@ exports[`egapro 1`] = ` │ ├── api │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/api:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 2626 @@ -18,7 +18,7 @@ exports[`egapro 1`] = ` │ ├── app │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/app:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 3000 @@ -30,7 +30,7 @@ exports[`egapro 1`] = ` │ ├── declaration │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/declaration:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 8080 @@ -59,7 +59,7 @@ exports[`egapro 1`] = ` │ ├── simulateur │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/simulateur:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 8080 @@ -71,7 +71,7 @@ exports[`egapro 1`] = ` │ └── storybook │ ├── Deployment │ │ ├── kontinuous-wait-needs (init) -│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ └── app │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/storybook:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ └── port: 8080 @@ -95,35 +95,35 @@ exports[`egapro 1`] = ` ├── Job │ ├── job-egapro-master-jobs-con-6v7vwk-build-api-buildkit-4zg3ke │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-app-buildkit-1ngsea │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-declaration-bui-3ykcwt │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-simulateur-buil-3zbx3v │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ └── job-egapro-master-jobs-con-6v7vwk-build-storybook-build-287ohe │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ └── job │ ├── image: moby/buildkit:v0.10.5-rootless @@ -174,7 +174,7 @@ exports[`template 1`] = ` │ ├── api │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/api:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 2626 @@ -186,7 +186,7 @@ exports[`template 1`] = ` │ ├── app │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/app:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 3000 @@ -198,7 +198,7 @@ exports[`template 1`] = ` │ ├── declaration │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/declaration:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 8080 @@ -227,7 +227,7 @@ exports[`template 1`] = ` │ ├── simulateur │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/simulateur:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 8080 @@ -239,7 +239,7 @@ exports[`template 1`] = ` │ └── storybook │ ├── Deployment │ │ ├── kontinuous-wait-needs (init) -│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ └── app │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/storybook:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ └── port: 8080 @@ -263,35 +263,35 @@ exports[`template 1`] = ` ├── Job │ ├── job-egapro-master-jobs-con-6v7vwk-build-api-buildkit-4zg3ke │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-app-buildkit-1ngsea │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-declaration-bui-3ykcwt │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-simulateur-buil-3zbx3v │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ └── job-egapro-master-jobs-con-6v7vwk-build-storybook-build-287ohe │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ └── job │ ├── image: moby/buildkit:v0.10.5-rootless @@ -374,53 +374,53 @@ exports[`template 1`] = ` ├── Job │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-hasura-crea-3rcr3k │ │ ├── kontinuous-wait-needs (init) - │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: ghcr.io/socialgouv/docker/psql:6.70.0 │ │ └── command: /bin/bash -c set -e /action/ensure-db.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-hasura-crea-5axfnj │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: bitnami/kubectl:latest │ │ └── command: /bin/bash -c set -e /action/create-secret.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-keycloak-cr-5fc7zt │ │ ├── kontinuous-wait-needs (init) - │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: ghcr.io/socialgouv/docker/psql:6.70.0 │ │ └── command: /bin/bash -c set -e /action/ensure-db.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-keycloak-cr-4j23v3 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: bitnami/kubectl:latest │ │ └── command: /bin/bash -c set -e /action/create-secret.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-seed-hasura-im-pfycj9 │ │ ├── kontinuous-wait-needs (init) - │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: bitnami/kubectl:latest │ │ └── command: /bin/bash -c set -e /action/import-secret.sh │ └── job-template-k-mvp-mig-9-jobs-con-6v7vwk-seed-hasura-se-5un89q │ ├── kontinuous-wait-needs (init) - │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ └── job │ ├── image: ghcr.io/socialgouv/docker/psql:7.0.0 @@ -443,7 +443,7 @@ exports[`www 1`] = ` │ ├── api │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/api:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 2626 @@ -455,7 +455,7 @@ exports[`www 1`] = ` │ ├── app │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/app:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 3000 @@ -467,7 +467,7 @@ exports[`www 1`] = ` │ ├── declaration │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/declaration:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 8080 @@ -496,7 +496,7 @@ exports[`www 1`] = ` │ ├── simulateur │ │ ├── Deployment │ │ │ ├── kontinuous-wait-needs (init) -│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ │ └── app │ │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/simulateur:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ │ └── port: 8080 @@ -508,7 +508,7 @@ exports[`www 1`] = ` │ └── storybook │ ├── Deployment │ │ ├── kontinuous-wait-needs (init) -│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ └── app │ │ ├── image: harbor.fabrique.social.gouv.fr/egapro/egapro/storybook:preprod-b5faa561893cd5e18a5bc6fca3b3b10f5adc2ae8 │ │ └── port: 8080 @@ -532,35 +532,35 @@ exports[`www 1`] = ` ├── Job │ ├── job-egapro-master-jobs-con-6v7vwk-build-api-buildkit-4zg3ke │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-app-buildkit-1ngsea │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-declaration-bui-3ykcwt │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ ├── job-egapro-master-jobs-con-6v7vwk-build-simulateur-buil-3zbx3v │ │ ├── degit-repository (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ │ └── job │ │ ├── image: moby/buildkit:v0.10.5-rootless │ │ └── command: /bin/sh -c set -e if [ "" != "" ]; then export C... │ └── job-egapro-master-jobs-con-6v7vwk-build-storybook-build-287ohe │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ └── command: sh -c degit SocialGouv/egapro#master \\ /workspa... │ └── job │ ├── image: moby/buildkit:v0.10.5-rootless @@ -643,53 +643,53 @@ exports[`www 1`] = ` ├── Job │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-hasura-crea-3rcr3k │ │ ├── kontinuous-wait-needs (init) - │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: ghcr.io/socialgouv/docker/psql:6.70.0 │ │ └── command: /bin/bash -c set -e /action/ensure-db.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-hasura-crea-5axfnj │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: bitnami/kubectl:latest │ │ └── command: /bin/bash -c set -e /action/create-secret.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-keycloak-cr-5fc7zt │ │ ├── kontinuous-wait-needs (init) - │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: ghcr.io/socialgouv/docker/psql:6.70.0 │ │ └── command: /bin/bash -c set -e /action/ensure-db.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-db-keycloak-cr-4j23v3 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: bitnami/kubectl:latest │ │ └── command: /bin/bash -c set -e /action/create-secret.sh │ ├── job-template-k-mvp-mig-9-jobs-con-6v7vwk-seed-hasura-im-pfycj9 │ │ ├── kontinuous-wait-needs (init) - │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ │ └── job │ │ ├── image: bitnami/kubectl:latest │ │ └── command: /bin/bash -c set -e /action/import-secret.sh │ └── job-template-k-mvp-mig-9-jobs-con-6v7vwk-seed-hasura-se-5un89q │ ├── kontinuous-wait-needs (init) - │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ │ └── command: sh -c degit SocialGouv/kontinuous/plugins/contrib/... │ └── job │ ├── image: ghcr.io/socialgouv/docker/psql:7.0.0 @@ -708,7 +708,7 @@ exports[`www 1`] = ` │ └── app │ ├── Deployment │ │ ├── kontinuous-wait-needs (init) -│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 │ │ └── app │ │ ├── image: ghcr.io/socialgouv/www/app:sha-1ca3107affe6e436280896ab63b912d536790cfe │ │ └── port: 8080 @@ -727,7 +727,7 @@ exports[`www 1`] = ` └── Job └── job-www-kontinuous-ac-jobs-con-6v7vwk-build-app-buildkit-1ngsea ├── degit-repository (init) - │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 │ └── command: sh -c degit SocialGouv/www#kontinuous-ac \\ /wor... └── job ├── image: moby/buildkit:v0.10.5-rootless diff --git a/plugins/contrib/debug-manifests/tests/samples/egapro.yaml b/plugins/contrib/debug-manifests/tests/samples/egapro.yaml index 0f0309c0d9..bbf5128785 100644 --- a/plugins/contrib/debug-manifests/tests/samples/egapro.yaml +++ b/plugins/contrib/debug-manifests/tests/samples/egapro.yaml @@ -219,7 +219,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -360,7 +360,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -503,7 +503,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -647,7 +647,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -792,7 +792,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -1018,7 +1018,7 @@ spec: name: staff initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: egapro-preprod/Deployment/api @@ -1171,7 +1171,7 @@ spec: name: staff initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: egapro-preprod/Deployment/app @@ -1301,7 +1301,7 @@ spec: memory: 128Mi initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: egapro-preprod/Deployment/declaration @@ -1603,7 +1603,7 @@ spec: memory: 128Mi initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: egapro-preprod/Deployment/simulateur @@ -1733,7 +1733,7 @@ spec: memory: 128Mi initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: egapro-preprod/Deployment/storybook diff --git a/plugins/contrib/debug-manifests/tests/samples/template.yaml b/plugins/contrib/debug-manifests/tests/samples/template.yaml index f6f7b76030..324cd3736f 100644 --- a/plugins/contrib/debug-manifests/tests/samples/template.yaml +++ b/plugins/contrib/debug-manifests/tests/samples/template.yaml @@ -2735,7 +2735,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: >- @@ -2756,7 +2756,7 @@ spec: cpu: "0.081" memory: 227.555Mi - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - "-c" @@ -2901,7 +2901,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - "-c" @@ -3037,7 +3037,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: >- @@ -3058,7 +3058,7 @@ spec: cpu: "0.081" memory: 227.555Mi - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - "-c" @@ -3203,7 +3203,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - "-c" @@ -3339,7 +3339,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: >- @@ -3360,7 +3360,7 @@ spec: cpu: "0.081" memory: 227.555Mi - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - "-c" @@ -3491,7 +3491,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: >- @@ -3512,7 +3512,7 @@ spec: cpu: "0.081" memory: 227.555Mi - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -3535,7 +3535,7 @@ spec: cpu: "0.081" memory: 227.555Mi - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 command: - sh - "-c" diff --git a/plugins/contrib/debug-manifests/tests/samples/www.yaml b/plugins/contrib/debug-manifests/tests/samples/www.yaml index 79d2a42fdd..38126a9a49 100644 --- a/plugins/contrib/debug-manifests/tests/samples/www.yaml +++ b/plugins/contrib/debug-manifests/tests/samples/www.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/degit:v1.177.0 imagePullPolicy: IfNotPresent command: - sh @@ -327,7 +327,7 @@ spec: memory: 0 initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0 env: - name: WAIT_NEEDS_ANNOTATIONS_REF value: www-kontinuous-ac/Deployment/app diff --git a/plugins/contrib/jobs/trigger-cronjob/use.yaml b/plugins/contrib/jobs/trigger-cronjob/use.yaml index a9224eb34b..8fc727d149 100644 --- a/plugins/contrib/jobs/trigger-cronjob/use.yaml +++ b/plugins/contrib/jobs/trigger-cronjob/use.yaml @@ -3,7 +3,7 @@ runs: checkout: false action: false kubernetes: true - image: ghcr.io/socialgouv/kontinuous:v1.176.18 + image: ghcr.io/socialgouv/kontinuous:v1.177.0 user: 1001 env: - name: CRONJOB_NAME diff --git a/plugins/contrib/patches/05.1-needs-using-initcontainers.js b/plugins/contrib/patches/05.1-needs-using-initcontainers.js index dfa6c3d4fd..62a2d20662 100644 --- a/plugins/contrib/patches/05.1-needs-using-initcontainers.js +++ b/plugins/contrib/patches/05.1-needs-using-initcontainers.js @@ -1,5 +1,4 @@ -const kontinuousNeedsImage = - "ghcr.io/socialgouv/kontinuous/wait-needs:v1.176.18" +const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.177.0" // const kontinuousNeedsImage = "harbor.fabrique.social.gouv.fr/sre/kontinuous/wait-needs:v1" const getDeps = require("../lib/get-needs-deps") diff --git a/plugins/fabrique/Chart.yaml b/plugins/fabrique/Chart.yaml index a5e7bd68b6..5e0c40ad90 100644 --- a/plugins/fabrique/Chart.yaml +++ b/plugins/fabrique/Chart.yaml @@ -1,18 +1,18 @@ apiVersion: v2 name: fabrique -version: 1.176.18 +version: 1.177.0 dependencies: - name: contrib repository: file://./charts/contrib - version: 1.176.18 + version: 1.177.0 condition: contrib.enabled - name: pg repository: file://./charts/pg - version: 1.176.18 + version: 1.177.0 condition: pg.enabled - name: pgweb repository: file://./charts/pgweb - version: 1.176.18 + version: 1.177.0 condition: pgweb.enabled - name: keycloakx repository: https://codecentric.github.io/helm-charts