From deef9897338443b540ee7d555d5c12fb094d0fad Mon Sep 17 00:00:00 2001 From: Julien Bouquillon Date: Sat, 29 Jul 2023 00:38:59 +0200 Subject: [PATCH 1/8] docs: add faq (#376) --- docs/faq.md | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index a387130dd4..deefca65fe 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -1,6 +1,6 @@ # FAQ -[Add your question](https://github.com/SocialGouv/kontinuous/issues/new?title=docs:%20add%20FAQ%20entry) +[Add your question](https://github.com/SocialGouv/kontinuous/edit/master/docs/faq.md) ## Why another CI/CD ? @@ -83,6 +83,40 @@ app: name: pg-xxx-app ``` +## Run a seed job + +This example build your Dockerfile, creates a PG cluster, seed the database then starts your application with secrets attached + +In your `.kontinuous/values.yaml` or `.kontinuous/[env]/values.yaml` + +```yaml +# create app database +pg: + ~chart: pg + +# run app after build and seed +app: + ~chart: app + ~needs: [build-app, seed-db] + # use CNPG db created secret + envFrom: + - secretRef: + name: pg-app + +jobs: + runs: + # builds Dockerfile + build-app: + use: build + # seed the database + seed-db: + use: seed-db + ~needs: [pg] + pgSecretName: pg-app + with: + seedPath: ./seeds.sql +``` + ## Add a custom HELM chart To add a custom HELM chart to your deployment : From 4a8a99bb00f12b0459996c47fe96ce30f41bb86a Mon Sep 17 00:00:00 2001 From: Social Groovy Bot <45039513+SocialGroovyBot@users.noreply.github.com> Date: Fri, 28 Jul 2023 22:40:41 +0000 Subject: [PATCH 2/8] chore(release): 1.161.6 --- .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 | 2 + .../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 +- .../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__/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 +- .../tests/__snapshots__/repo.domifa.dev.yaml | 18 +-- .../__snapshots__/repo.domifa.preprod.yaml | 8 +- .../tests/__snapshots__/repo.domifa.prod.yaml | 8 +- .../tests/__snapshots__/seed-db.dev.yaml | 2 +- .../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/Chart.yaml | 32 +++--- 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/metabase/Chart.yaml | 2 +- plugins/contrib/charts/namespace/Chart.yaml | 2 +- .../contrib/charts/oauth2-proxy/Chart.yaml | 2 +- .../contrib/charts/output-volume/Chart.yaml | 2 +- plugins/contrib/charts/pgweb/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 | 2 +- plugins/fabrique/Chart.yaml | 8 +- 71 files changed, 200 insertions(+), 198 deletions(-) diff --git a/.github/actions/deploy-via-github/Dockerfile b/.github/actions/deploy-via-github/Dockerfile index 1556fa15e9..a064e1d192 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.161.5 +FROM ghcr.io/socialgouv/kontinuous:v1.161.6 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/deploy-via-github/action.yaml b/.github/actions/deploy-via-github/action.yaml index 3d2d20751a..7f7e63224e 100644 --- a/.github/actions/deploy-via-github/action.yaml +++ b/.github/actions/deploy-via-github/action.yaml @@ -45,7 +45,7 @@ inputs: runs: using: docker # image: Dockerfile - image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.5 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.6 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 109d010264..fda283dd73 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.161.5 as base +FROM ghcr.io/socialgouv/kontinuous:v1.161.6 as base USER 0 diff --git a/.github/actions/deploy-via-webhook/action.yaml b/.github/actions/deploy-via-webhook/action.yaml index 2626a95d29..61758188a4 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.161.5 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-webhook:v1.161.6 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 f20e7cfb24..ebc5e33fba 100644 --- a/.github/actions/deploy-via-webhook/kontinuousVersion +++ b/.github/actions/deploy-via-webhook/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.5 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.6 \ No newline at end of file diff --git a/.github/actions/env/Dockerfile b/.github/actions/env/Dockerfile index 2b7d732ee5..d013fcd848 100644 --- a/.github/actions/env/Dockerfile +++ b/.github/actions/env/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/socialgouv/kontinuous:v1.161.5 +FROM ghcr.io/socialgouv/kontinuous:v1.161.6 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/env/action.yaml b/.github/actions/env/action.yaml index 9e9f82ba87..a4428dea71 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.161.5 + image: docker://ghcr.io/socialgouv/kontinuous/env:v1.161.6 env: KS_GIT_BRANCH: ${{ inputs.branch }} KSENV_REPOSITORY_NAME: ${{ inputs.repositoryName }} diff --git a/.github/kontinuousVersion b/.github/kontinuousVersion index f20e7cfb24..ebc5e33fba 100644 --- a/.github/kontinuousVersion +++ b/.github/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.5 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.6 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e7a125f02..ce5e45faad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ 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.161.6 (2023-07-28) + ## 1.161.5 (2023-07-28) diff --git a/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml b/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml index 2dba8f1360..46ae4cc3cd 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.161.5 + image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.6 # 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 71ebd08c86..4e7bce8d0a 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.161.5"} - KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.5"} + KUBEWEBHOOK_PIPELINE_IMAGE: ${KUBEWEBHOOK_PIPELINE_IMAGE:-"ghcr.io/socialgouv/kontinuous:v1.161.6"} + KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.6"} 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 00671f261b..6bd3732d02 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "~dev", - "version": "1.161.5", + "version": "1.161.6", "repository": "git@github.com:socialgouv/kontinuous.git", "license": "MIT", "private": true, diff --git a/packages/argocd/Dockerfile b/packages/argocd/Dockerfile index 29d43a46bd..a4d177ac59 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.161.5 /usr/local/bin /usr/local/bin/ -COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.5 --chown=999:999 /opt/kontinuous /opt/kontinuous/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.6 /usr/local/bin /usr/local/bin/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.6 --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 1921e66c3b..1aa7c33fa8 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "~common", - "version": "1.161.5", + "version": "1.161.6", "description": "", "license": "MIT", "engines": { diff --git a/packages/dev-tools/package.json b/packages/dev-tools/package.json index 9dabf3af37..7287dbf7b1 100644 --- a/packages/dev-tools/package.json +++ b/packages/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "~dev-tools", - "version": "1.161.5", + "version": "1.161.6", "dependencies": { "replace": "^1.2.2", "~common": "workspace:^" diff --git a/packages/helm-tree/package.json b/packages/helm-tree/package.json index 1c12679d05..d543bfca6b 100644 --- a/packages/helm-tree/package.json +++ b/packages/helm-tree/package.json @@ -1,6 +1,6 @@ { "name": "helm-tree", - "version": "1.161.5", + "version": "1.161.6", "description": "", "license": "MIT", "engines": { diff --git a/packages/kontinuous/package.json b/packages/kontinuous/package.json index 59e0737a91..b5e765ec07 100644 --- a/packages/kontinuous/package.json +++ b/packages/kontinuous/package.json @@ -1,6 +1,6 @@ { "name": "kontinuous", - "version": "1.161.5", + "version": "1.161.6", "repository": "https://github.com/socialgouv/kontinuous.git", "homepage": "https://socialgouv.github.io/kontinuous/", "license": "MIT", diff --git a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml index 27ff441699..020dcdd83e 100644 --- a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml @@ -56,7 +56,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml index d87239ef9c..bec5d98021 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml index 71f7cfbfc5..da9a63886a 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -282,7 +282,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml index 89e444b051..e9259eb083 100644 --- a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 c24cc6db72..a3d22fa204 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 6a89ada797..2234c44c87 100644 --- a/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -315,7 +315,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 e2f065bfee..e10fa44bd5 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 06683da549..f951d9cabe 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -432,7 +432,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -612,7 +612,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 0b1e5c34cb..29c909cd4a 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -610,7 +610,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 11c342a4a6..8a83193721 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 731cae96ef..25951f692d 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 b1104098a5..411a1ddebe 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -454,7 +454,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 6fad52c6e5..5d30fca8ed 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 b5b360657d..3b8408490c 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml index ec233d2de3..8b5896ad2e 100644 --- a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -250,7 +250,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/output.dev.yaml b/packages/kontinuous/tests/__snapshots__/output.dev.yaml index fcf2ce3227..050cef3051 100644 --- a/packages/kontinuous/tests/__snapshots__/output.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/output.dev.yaml @@ -160,7 +160,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -283,7 +283,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml index 716ad2a348..41164e43a4 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml @@ -172,7 +172,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -356,7 +356,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -541,7 +541,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -722,7 +722,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -904,7 +904,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -1054,7 +1054,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -1199,7 +1199,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c @@ -1324,7 +1324,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -1347,7 +1347,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml index 52327e14cd..7337187dfc 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml @@ -170,7 +170,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -350,7 +350,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -535,7 +535,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -716,7 +716,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 103a7d34db..dc354b7f4c 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml @@ -225,7 +225,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -408,7 +408,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -593,7 +593,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -775,7 +775,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml index c3a7517401..d41a26906c 100644 --- a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 62fe061119..9a53cff968 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 5c86c91fc0..306e70f1e0 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 86e455dcb7..518f966394 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 4daab0b0a2..08733fcca8 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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 bebe40689f..6d4b482332 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.161.5 + use: socialgouv/kontinuous/plugins/contrib/jobs/create-db@v1.161.6 with: pgAdminSecretRefName: pg-scaleway diff --git a/packages/wait-needs/package.json b/packages/wait-needs/package.json index 2475f554bd..5d556c1087 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.161.5", + "version": "1.161.6", "engines": { "node": "^16.17 || ^18 || ^20" } diff --git a/packages/webhook/Chart.yaml b/packages/webhook/Chart.yaml index f9f56e3aa5..b825b06c13 100644 --- a/packages/webhook/Chart.yaml +++ b/packages/webhook/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: kontinuous-webhook -version: 1.161.5 +version: 1.161.6 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 e38833a9ea..472e82fe6a 100644 --- a/packages/webhook/package.json +++ b/packages/webhook/package.json @@ -1,6 +1,6 @@ { "name": "~webhook", - "version": "1.161.5", + "version": "1.161.6", "description": "", "license": "MIT", "author": "", diff --git a/packages/webhook/values.yaml b/packages/webhook/values.yaml index df9e7fb063..cbf9c08165 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.161.5 +image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.6 resources: limits: cpu: 2 diff --git a/plugins/contrib/Chart.yaml b/plugins/contrib/Chart.yaml index f5d96d4553..8df6b49aa2 100644 --- a/plugins/contrib/Chart.yaml +++ b/plugins/contrib/Chart.yaml @@ -1,63 +1,63 @@ apiVersion: v2 name: contrib -version: 1.161.5 +version: 1.161.6 dependencies: - name: rancher-namespace repository: file://./charts/rancher-namespace - version: 1.161.5 + version: 1.161.6 condition: global.rancherNamespaceEnabled,rancher-namespace.enabled - name: namespace repository: file://./charts/namespace - version: 1.161.5 + version: 1.161.6 condition: global.namespaceEnabled,namespace.enabled - name: security-policies repository: file://./charts/security-policies - version: 1.161.5 + version: 1.161.6 condition: global.securityPoliciesEnabled,security-policies.enabled - name: output-volume repository: file://./charts/output-volume - version: 1.161.5 + version: 1.161.6 condition: global.outputVolumeEnabled,output-volume.enabled - name: contrib-helpers repository: file://./charts/contrib-helpers - version: 1.161.5 + version: 1.161.6 - name: app repository: file://./charts/app - version: 1.161.5 + version: 1.161.6 condition: app.enabled - name: daemon repository: file://./charts/daemon - version: 1.161.5 + version: 1.161.6 condition: daemon.enabled - name: deactivate repository: file://./charts/deactivate - version: 1.161.5 + version: 1.161.6 condition: deactivate.enabled - name: hasura repository: file://./charts/hasura - version: 1.161.5 + version: 1.161.6 condition: hasura.enabled - name: jobs repository: file://./charts/jobs - version: 1.161.5 + version: 1.161.6 condition: jobs.enabled - name: job repository: file://./charts/job - version: 1.161.5 + version: 1.161.6 condition: job.enabled - name: metabase repository: file://./charts/metabase - version: 1.161.5 + version: 1.161.6 condition: metabase.enabled - name: oauth2-proxy repository: file://./charts/oauth2-proxy - version: 1.161.5 + version: 1.161.6 condition: oauth2-proxy.enabled - name: pgweb repository: file://./charts/pgweb - version: 1.161.5 + version: 1.161.6 condition: pgweb.enabled - name: redis repository: file://./charts/redis - version: 1.161.5 + version: 1.161.6 condition: redis.enabled diff --git a/plugins/contrib/charts/app/Chart.yaml b/plugins/contrib/charts/app/Chart.yaml index 5d2b3c73d3..1a1ce4ac24 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.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/contrib-helpers/Chart.yaml b/plugins/contrib/charts/contrib-helpers/Chart.yaml index e50111562b..c2291fa283 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.161.5 +version: 1.161.6 type: library diff --git a/plugins/contrib/charts/daemon/Chart.yaml b/plugins/contrib/charts/daemon/Chart.yaml index 373c345f4a..6850db4aa0 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.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/deactivate/Chart.yaml b/plugins/contrib/charts/deactivate/Chart.yaml index 5ff737b39d..12f9bb0c55 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.161.5 +version: 1.161.6 dependencies: - name: jobs repository: file://../jobs condition: 'true' alias: jobs-deactivate - version: 1.161.5 + version: 1.161.6 diff --git a/plugins/contrib/charts/hasura/Chart.yaml b/plugins/contrib/charts/hasura/Chart.yaml index 38b2064beb..b659e8fdf7 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.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/job/Chart.yaml b/plugins/contrib/charts/job/Chart.yaml index c15cc2f34f..32ebcdddfc 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.161.5 +version: 1.161.6 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.5 + version: 1.161.6 diff --git a/plugins/contrib/charts/job/values.yaml b/plugins/contrib/charts/job/values.yaml index 7f26dfc9eb..90416e3417 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.161.5 + degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/jobs/Chart.yaml b/plugins/contrib/charts/jobs/Chart.yaml index bc9a9d659d..3307b4dcc4 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.161.5 +version: 1.161.6 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.5 + version: 1.161.6 diff --git a/plugins/contrib/charts/jobs/values.yaml b/plugins/contrib/charts/jobs/values.yaml index 78572df782..8eafe5e075 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.161.5 +degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/metabase/Chart.yaml b/plugins/contrib/charts/metabase/Chart.yaml index 4a360db274..259851e972 100644 --- a/plugins/contrib/charts/metabase/Chart.yaml +++ b/plugins/contrib/charts/metabase/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: metabase -version: 1.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/namespace/Chart.yaml b/plugins/contrib/charts/namespace/Chart.yaml index 81ccf14b92..6498985b9e 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.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/oauth2-proxy/Chart.yaml b/plugins/contrib/charts/oauth2-proxy/Chart.yaml index 1974bffdcc..bddec59661 100644 --- a/plugins/contrib/charts/oauth2-proxy/Chart.yaml +++ b/plugins/contrib/charts/oauth2-proxy/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: oauth2-proxy -version: 1.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/output-volume/Chart.yaml b/plugins/contrib/charts/output-volume/Chart.yaml index 3588ea4911..107dc1d330 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.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/pgweb/Chart.yaml b/plugins/contrib/charts/pgweb/Chart.yaml index cc122d7d17..d5a1de2c44 100644 --- a/plugins/contrib/charts/pgweb/Chart.yaml +++ b/plugins/contrib/charts/pgweb/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: pgweb -version: 1.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/rancher-namespace/Chart.yaml b/plugins/contrib/charts/rancher-namespace/Chart.yaml index 0da5293df6..4e4d99633b 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.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/redis/Chart.yaml b/plugins/contrib/charts/redis/Chart.yaml index 74b3e2a957..6e258da5ff 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.161.5 +version: 1.161.6 diff --git a/plugins/contrib/charts/security-policies/Chart.yaml b/plugins/contrib/charts/security-policies/Chart.yaml index 092a9c74ca..280006b6b7 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.161.5 +version: 1.161.6 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 5185e65842..9052025d94 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ └── 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.161.5 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ │ └── 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.161.5 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ └── 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.161.5 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ │ └── 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.161.5 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ │ └── 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.161.5 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 │ │ └── 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.161.5 + │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 │ └── 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 bc106525d3..ff62a64fb5 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -360,7 +360,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -503,7 +503,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -647,7 +647,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -792,7 +792,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -1018,7 +1018,7 @@ spec: name: staff initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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 0b06248232..b5406a41cd 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.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - "-c" @@ -2901,7 +2901,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - "-c" @@ -3037,7 +3037,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - "-c" @@ -3203,7 +3203,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - "-c" @@ -3339,7 +3339,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - "-c" @@ -3491,7 +3491,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 command: - sh - "-c" diff --git a/plugins/contrib/debug-manifests/tests/samples/www.yaml b/plugins/contrib/debug-manifests/tests/samples/www.yaml index 2aaa1c4119..fd18920235 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.161.5 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 imagePullPolicy: IfNotPresent command: - sh @@ -327,7 +327,7 @@ spec: memory: 0 initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.5 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 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 60203a7f35..640167b010 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.161.5 + image: ghcr.io/socialgouv/kontinuous:v1.161.6 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 053508a8cc..2a1404bd30 100644 --- a/plugins/contrib/patches/05.1-needs-using-initcontainers.js +++ b/plugins/contrib/patches/05.1-needs-using-initcontainers.js @@ -1,4 +1,4 @@ -const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.5" +const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6" // 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 d897871ec2..7d155acdc9 100644 --- a/plugins/fabrique/Chart.yaml +++ b/plugins/fabrique/Chart.yaml @@ -1,18 +1,18 @@ apiVersion: v2 name: fabrique -version: 1.161.5 +version: 1.161.6 dependencies: - name: contrib repository: file://./charts/contrib - version: 1.161.5 + version: 1.161.6 condition: contrib.enabled - name: pg repository: file://./charts/pg - version: 1.161.5 + version: 1.161.6 condition: pg.enabled - name: maildev repository: file://./charts/maildev - version: 1.161.5 + version: 1.161.6 condition: maildev.enabled - name: keycloakx repository: https://codecentric.github.io/helm-charts From ea390ec0c389a69fcd252eb3d4cd797dfb94208f Mon Sep 17 00:00:00 2001 From: Julien Bouquillon Date: Sat, 29 Jul 2023 01:11:14 +0200 Subject: [PATCH 3/8] fix(metabase): fix chart (#369) --- .../ingress-annotations.prod.yaml | 5 +- .../__snapshots__/ingress-betagouv.prod.yaml | 284 ------------------ .../ingress-custom-annotations.prod.yaml | 11 +- .../ingress-custom-certs.prod.yaml | 5 +- .../tests/__snapshots__/metabase.prod.yaml | 10 +- .../oauth2-proxy-metabase.prod.yaml | 5 +- .../samples/ingress-betagouv/config.yaml | 3 - .../ingress-betagouv/env/prod/values.yaml | 3 - .../env/prod/values.yaml | 1 + .../charts/metabase/templates/configmap.yaml | 6 +- .../charts/metabase/templates/deployment.yaml | 9 +- .../charts/metabase/templates/ingress.yaml | 9 +- plugins/contrib/charts/metabase/values.yaml | 1 + 13 files changed, 49 insertions(+), 303 deletions(-) delete mode 100644 packages/kontinuous/tests/__snapshots__/ingress-betagouv.prod.yaml delete mode 100644 packages/kontinuous/tests/samples/ingress-betagouv/config.yaml delete mode 100644 packages/kontinuous/tests/samples/ingress-betagouv/env/prod/values.yaml diff --git a/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml index d9d4f32ea7..ea2b046e7a 100644 --- a/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml @@ -105,11 +105,14 @@ data: MB_ANON_TRACKING_ENABLED: \\"false\\" MB_APPLICATION_LOGO_URL: https://socialgouv.github.io/support/_media/marianne.jpeg MB_EMAIL_FROM_ADDRESS: contact@fabrique.social.gouv.fr + MB_EMAIL_FROM_NAME: Fabrique numérique des ministères sociaux MB_ENABLE_EMBEDDING: \\"true\\" MB_ENABLE_PUBLIC_SHARING: \\"true\\" MB_SITE_LOCALE: fr - MB_SITE_NAME: Fabrique des ministères sociaux + MB_START_OF_WEEK: monday + MB_SITE_NAME: Fabrique numérique des ministères sociaux MB_SITE_URL: https://metabase-test-ingress-annotations.fabrique.social.gouv.fr + MB_PASSWORD_COMPLEXITY: strong --- apiVersion: apps/v1 kind: Deployment diff --git a/packages/kontinuous/tests/__snapshots__/ingress-betagouv.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-betagouv.prod.yaml deleted file mode 100644 index d54ea0ee4a..0000000000 --- a/packages/kontinuous/tests/__snapshots__/ingress-betagouv.prod.yaml +++ /dev/null @@ -1,284 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`test build manifests with snapshots ingress-betagouv.prod 1`] = ` -"apiVersion: v1 -kind: Namespace -metadata: - annotations: - field.cattle.io/projectId: \\"1234\\" - kontinuous/gitBranch: feature-branch-1 - kontinuous/mainNamespace: \\"true\\" - kapp.k14s.io/exists: \\"\\" - kontinuous/chartPath: project.fabrique.contrib.rancher-namespace - kontinuous/source: project/charts/fabrique/charts/contrib/charts/rancher-namespace/templates/namespace.yaml - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - labels: - application: test-ingress-betagouv - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: namespace-test-ingress-betagouv-2w4zjtae - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous - name: test-ingress-betagouv ---- -apiVersion: networking.k8s.io/v1 -kind: NetworkPolicy -metadata: - name: netpol-ingress - namespace: test-ingress-betagouv - annotations: - kontinuous/chartPath: project.fabrique.contrib.security-policies - kontinuous/source: project/charts/fabrique/charts/contrib/charts/security-policies/templates/network-policy.yml - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - labels: - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: networkpolicy-netpol-ingress-61ndxljw - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous -spec: - ingress: - - from: - - podSelector: {} - - from: - - namespaceSelector: - matchLabels: - network-policy/source: ingress-controller - - from: - - namespaceSelector: - matchLabels: - network-policy/source: monitoring - podSelector: {} - policyTypes: - - Ingress ---- -apiVersion: v1 -kind: ServiceAccount -metadata: - name: default - annotations: - kontinuous/chartPath: project.fabrique.contrib.security-policies - kontinuous/source: project/charts/fabrique/charts/contrib/charts/security-policies/templates/service-account.yaml - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - labels: - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: serviceaccount-default-2g5dmk74 - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous - namespace: test-ingress-betagouv -automountServiceAccountToken: false ---- -apiVersion: v1 -kind: ConfigMap -metadata: - labels: - component: metabase - application: test-ingress-betagouv - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: configmap-metabase-1tfah3wb - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous - name: metabase - namespace: test-ingress-betagouv - annotations: - kontinuous/chartPath: project.fabrique.contrib.metabase - kontinuous/source: project/charts/fabrique/charts/contrib/charts/metabase/templates/configmap.yaml - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i -data: - MB_APPLICATION_NAME: metabase - MB_DB_TYPE: postgres - MB_ADMIN_EMAIL: admin@fabrique.social.gouv.fr - MB_ANON_TRACKING_ENABLED: \\"false\\" - MB_APPLICATION_LOGO_URL: https://socialgouv.github.io/support/_media/marianne.jpeg - MB_EMAIL_FROM_ADDRESS: contact@fabrique.social.gouv.fr - MB_ENABLE_EMBEDDING: \\"true\\" - MB_ENABLE_PUBLIC_SHARING: \\"true\\" - MB_SITE_LOCALE: fr - MB_SITE_NAME: Fabrique des ministères sociaux - MB_SITE_URL: https://some.beta.gouv.fr ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - component: metabase - application: test-ingress-betagouv - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: deployment-metabase-5wn3odrk - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous - name: metabase - namespace: test-ingress-betagouv - annotations: - kontinuous/chartPath: project.fabrique.contrib.metabase - kontinuous/source: project/charts/fabrique/charts/contrib/charts/metabase/templates/deployment.yaml - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/depname.full: project.fabrique.contrib.metabase.deployment.metabase - kontinuous/depname.chartResource: metabase.deployment.metabase - kontinuous/depname.chartName: metabase - kontinuous/depname.chartPath: project.fabrique.contrib.metabase - kontinuous/depname.resourcePath: deployment.metabase - kontinuous/depname.resourceName: metabase - kontinuous/depname.chartNameTopFull: metabase - kontinuous/depname.chartNameTop: metabase - kontinuous/plugin.log: \\"false\\" - reloader.stakater.com/auto: \\"true\\" -spec: - replicas: 1 - selector: - matchLabels: - component: metabase - template: - metadata: - labels: - component: metabase - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: deployment-metabase-5wn3odrk - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous - annotations: - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - spec: - securityContext: - runAsUser: 1000 - runAsGroup: 1000 - fsGroup: 1000 - runAsNonRoot: true - containers: - - image: metabase/metabase:v0.46.6.1 - name: metabase - securityContext: - allowPrivilegeEscalation: false - envFrom: - - configMapRef: - name: metabase - ports: - - containerPort: 3000 - name: http - startupProbe: - failureThreshold: 30 - httpGet: - path: /api/health - port: http - periodSeconds: 10 - initialDelaySeconds: 60 - successThreshold: 1 - timeoutSeconds: 10 - readinessProbe: - failureThreshold: 15 - httpGet: - path: /api/health - port: http - initialDelaySeconds: 1 - periodSeconds: 5 - successThreshold: 1 - timeoutSeconds: 1 - livenessProbe: - failureThreshold: 6 - httpGet: - path: /api/health - port: http - initialDelaySeconds: 30 - periodSeconds: 5 - timeoutSeconds: 5 - resources: - limits: - cpu: 1000m - memory: 2048Mi - requests: - cpu: 500m - memory: 512Mi ---- -apiVersion: v1 -kind: Service -metadata: - labels: - component: metabase - application: test-ingress-betagouv - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: service-metabase-5idimw41 - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous - name: metabase - namespace: test-ingress-betagouv - annotations: - kontinuous/chartPath: project.fabrique.contrib.metabase - kontinuous/source: project/charts/fabrique/charts/contrib/charts/metabase/templates/service.yaml - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i -spec: - ports: - - name: http - port: 80 - targetPort: 3000 - selector: - component: metabase - type: ClusterIP ---- -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - annotations: - kubernetes.io/ingress.class: nginx - kontinuous/chartPath: project.fabrique.contrib.metabase - kontinuous/source: project/charts/fabrique/charts/contrib/charts/metabase/templates/ingress.yaml - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - cert-manager.io: cluster-issuer - cert-manager.io/cluster-issuer: letsencrypt-prod - kubernetes.io/tls-acme: \\"true\\" - labels: - component: metabase - application: test-ingress-betagouv - kontinuous/deployment: test-ingress-betagouv-feature-branch-1-ffac537e6cbbf9-kk9zkm6i - kontinuous/deployment.env: test-ingress-betagouv-prod - kontinuous/ref: feature-branch-1 - kontinuous/gitSha: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/appVersion: ffac537e6cbbf934b08745a378932722df287a53 - kontinuous/resourceName: ingress-metabase-5ybj4te8 - app.kubernetes.io/manifest-managed-by: kontinuous - app.kubernetes.io/manifest-created-by: kontinuous - name: metabase - namespace: test-ingress-betagouv -spec: - rules: - - host: some.beta.gouv.fr - http: - paths: - - backend: - service: - name: metabase - port: - name: http - path: / - pathType: Prefix - tls: - - hosts: - - some.beta.gouv.fr - secretName: metabase-crt -" -`; diff --git a/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml index 0226b7a822..8fdcb71f7b 100644 --- a/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml @@ -105,11 +105,14 @@ data: MB_ANON_TRACKING_ENABLED: \\"false\\" MB_APPLICATION_LOGO_URL: https://socialgouv.github.io/support/_media/marianne.jpeg MB_EMAIL_FROM_ADDRESS: contact@fabrique.social.gouv.fr + MB_EMAIL_FROM_NAME: Fabrique numérique des ministères sociaux MB_ENABLE_EMBEDDING: \\"true\\" MB_ENABLE_PUBLIC_SHARING: \\"true\\" MB_SITE_LOCALE: fr - MB_SITE_NAME: Fabrique des ministères sociaux - MB_SITE_URL: https://metabase-test-ingress-custom-annotations.fabrique.social.gouv.fr + MB_START_OF_WEEK: monday + MB_SITE_NAME: Fabrique numérique des ministères sociaux + MB_SITE_URL: https://some.beta.gouv.fr + MB_PASSWORD_COMPLEXITY: strong --- apiVersion: apps/v1 kind: Deployment @@ -267,7 +270,7 @@ metadata: namespace: test-ingress-custom-annotations spec: rules: - - host: metabase-test-ingress-custom-annotations.fabrique.social.gouv.fr + - host: some.beta.gouv.fr http: paths: - backend: @@ -279,7 +282,7 @@ spec: pathType: Prefix tls: - hosts: - - metabase-test-ingress-custom-annotations.fabrique.social.gouv.fr + - some.beta.gouv.fr secretName: metabase-crt " `; diff --git a/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml index 4f80cc6523..83781d75b3 100644 --- a/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml @@ -105,11 +105,14 @@ data: MB_ANON_TRACKING_ENABLED: \\"false\\" MB_APPLICATION_LOGO_URL: https://socialgouv.github.io/support/_media/marianne.jpeg MB_EMAIL_FROM_ADDRESS: contact@fabrique.social.gouv.fr + MB_EMAIL_FROM_NAME: Fabrique numérique des ministères sociaux MB_ENABLE_EMBEDDING: \\"true\\" MB_ENABLE_PUBLIC_SHARING: \\"true\\" MB_SITE_LOCALE: fr - MB_SITE_NAME: Fabrique des ministères sociaux + MB_START_OF_WEEK: monday + MB_SITE_NAME: Fabrique numérique des ministères sociaux MB_SITE_URL: https://some.external.host + MB_PASSWORD_COMPLEXITY: strong --- apiVersion: apps/v1 kind: Deployment diff --git a/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml b/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml index 1876bb52aa..9b33490f93 100644 --- a/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml @@ -105,11 +105,14 @@ data: MB_ANON_TRACKING_ENABLED: \\"false\\" MB_APPLICATION_LOGO_URL: https://socialgouv.github.io/support/_media/marianne.jpeg MB_EMAIL_FROM_ADDRESS: contact@fabrique.social.gouv.fr + MB_EMAIL_FROM_NAME: Fabrique numérique des ministères sociaux MB_ENABLE_EMBEDDING: \\"true\\" MB_ENABLE_PUBLIC_SHARING: \\"true\\" MB_SITE_LOCALE: fr - MB_SITE_NAME: Fabrique des ministères sociaux + MB_START_OF_WEEK: monday + MB_SITE_NAME: Fabrique numérique des ministères sociaux MB_SITE_URL: https://metabase-app1-test-metabase.fabrique.social.gouv.fr + MB_PASSWORD_COMPLEXITY: strong --- apiVersion: v1 kind: ConfigMap @@ -138,11 +141,14 @@ data: MB_ANON_TRACKING_ENABLED: \\"false\\" MB_APPLICATION_LOGO_URL: https://socialgouv.github.io/support/_media/marianne.jpeg MB_EMAIL_FROM_ADDRESS: contact@fabrique.social.gouv.fr + MB_EMAIL_FROM_NAME: Fabrique numérique des ministères sociaux MB_ENABLE_EMBEDDING: \\"true\\" MB_ENABLE_PUBLIC_SHARING: \\"true\\" MB_SITE_LOCALE: fr - MB_SITE_NAME: Fabrique des ministères sociaux + MB_START_OF_WEEK: monday + MB_SITE_NAME: Fabrique numérique des ministères sociaux MB_SITE_URL: https://metabase-app2-test-metabase.fabrique.social.gouv.fr + MB_PASSWORD_COMPLEXITY: strong --- kind: ConfigMap apiVersion: v1 diff --git a/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml b/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml index 676b45ec79..c2a8891b8c 100644 --- a/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml @@ -105,11 +105,14 @@ data: MB_ANON_TRACKING_ENABLED: \\"false\\" MB_APPLICATION_LOGO_URL: https://socialgouv.github.io/support/_media/marianne.jpeg MB_EMAIL_FROM_ADDRESS: contact@fabrique.social.gouv.fr + MB_EMAIL_FROM_NAME: Fabrique numérique des ministères sociaux MB_ENABLE_EMBEDDING: \\"true\\" MB_ENABLE_PUBLIC_SHARING: \\"true\\" MB_SITE_LOCALE: fr - MB_SITE_NAME: Fabrique des ministères sociaux + MB_START_OF_WEEK: monday + MB_SITE_NAME: Fabrique numérique des ministères sociaux MB_SITE_URL: https://metabase-test-oauth2-proxy-metabase.fabrique.social.gouv.fr + MB_PASSWORD_COMPLEXITY: strong --- apiVersion: apps/v1 kind: Deployment diff --git a/packages/kontinuous/tests/samples/ingress-betagouv/config.yaml b/packages/kontinuous/tests/samples/ingress-betagouv/config.yaml deleted file mode 100644 index ff779aad47..0000000000 --- a/packages/kontinuous/tests/samples/ingress-betagouv/config.yaml +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: - fabrique: - import: socialgouv/kontinuous/plugins/fabrique \ No newline at end of file diff --git a/packages/kontinuous/tests/samples/ingress-betagouv/env/prod/values.yaml b/packages/kontinuous/tests/samples/ingress-betagouv/env/prod/values.yaml deleted file mode 100644 index 4b20e3fe00..0000000000 --- a/packages/kontinuous/tests/samples/ingress-betagouv/env/prod/values.yaml +++ /dev/null @@ -1,3 +0,0 @@ -metabase: - enabled: true - host: some.beta.gouv.fr diff --git a/packages/kontinuous/tests/samples/ingress-custom-annotations/env/prod/values.yaml b/packages/kontinuous/tests/samples/ingress-custom-annotations/env/prod/values.yaml index e5a23f2573..66203e967b 100644 --- a/packages/kontinuous/tests/samples/ingress-custom-annotations/env/prod/values.yaml +++ b/packages/kontinuous/tests/samples/ingress-custom-annotations/env/prod/values.yaml @@ -1,5 +1,6 @@ metabase: enabled: true + host: some.beta.gouv.fr ingress: annotations: some: annotation diff --git a/plugins/contrib/charts/metabase/templates/configmap.yaml b/plugins/contrib/charts/metabase/templates/configmap.yaml index 5857d2f5ac..eeb2481d68 100644 --- a/plugins/contrib/charts/metabase/templates/configmap.yaml +++ b/plugins/contrib/charts/metabase/templates/configmap.yaml @@ -13,8 +13,12 @@ data: MB_ANON_TRACKING_ENABLED: "false" MB_APPLICATION_LOGO_URL: "https://socialgouv.github.io/support/_media/marianne.jpeg" MB_EMAIL_FROM_ADDRESS: "contact@fabrique.social.gouv.fr" + MB_EMAIL_FROM_NAME: "Fabrique numérique des ministères sociaux" MB_ENABLE_EMBEDDING: "true" MB_ENABLE_PUBLIC_SHARING: "true" MB_SITE_LOCALE: "fr" - MB_SITE_NAME: "Fabrique des ministères sociaux" + MB_START_OF_WEEK: "monday" + MB_SITE_NAME: "Fabrique numérique des ministères sociaux" MB_SITE_URL: "https://{{ include "contrib-helpers.ingress-host" . }}" + MB_PASSWORD_COMPLEXITY: strong + diff --git a/plugins/contrib/charts/metabase/templates/deployment.yaml b/plugins/contrib/charts/metabase/templates/deployment.yaml index 279a4a9bea..9c88544bbb 100644 --- a/plugins/contrib/charts/metabase/templates/deployment.yaml +++ b/plugins/contrib/charts/metabase/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 | quote }} + {{ end }} + {{ end }} spec: replicas: 1 selector: @@ -23,7 +28,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - # renovate: datasource=docker depName=metabase/metabase versioning=v0.45.3 + # renovate: datasource=docker depName=metabase/metabase versioning=v0.46.6.1 - image: metabase/metabase:v0.46.6.1 name: metabase securityContext: diff --git a/plugins/contrib/charts/metabase/templates/ingress.yaml b/plugins/contrib/charts/metabase/templates/ingress.yaml index ccb80e6e80..be5afb93c3 100644 --- a/plugins/contrib/charts/metabase/templates/ingress.yaml +++ b/plugins/contrib/charts/metabase/templates/ingress.yaml @@ -4,9 +4,16 @@ kind: Ingress metadata: annotations: kubernetes.io/ingress.class: nginx - {{ range $key, $val := (merge dict .Values.global.ingress.annotations .Values.ingress.annotations) }} + {{ if .Values.global.ingress.annotations }} + {{ range $key, $val := (merge dict .Values.global.ingress.annotations) }} "{{ $key }}": {{ $val | quote }} {{ end }} + {{ end }} + {{ if .Values.ingress.annotations }} + {{ range $key, $val := (merge dict .Values.ingress.annotations) }} + "{{ $key }}": {{ $val | quote }} + {{ end }} + {{ end }} labels: component: {{ (or .Values.component .Chart.Name) | lower }} application: {{ .Values.global.repositoryName }} diff --git a/plugins/contrib/charts/metabase/values.yaml b/plugins/contrib/charts/metabase/values.yaml index 1a6a4d394c..b3ec8a70ec 100644 --- a/plugins/contrib/charts/metabase/values.yaml +++ b/plugins/contrib/charts/metabase/values.yaml @@ -7,6 +7,7 @@ envFrom: [] ingress: enabled: true annotations: {} +annotations: {} matomo: cronjob: From d3784f1883a4eb2f3a7bc8db3e0acbcc4bc6b197 Mon Sep 17 00:00:00 2001 From: Social Groovy Bot <45039513+SocialGroovyBot@users.noreply.github.com> Date: Fri, 28 Jul 2023 23:13:07 +0000 Subject: [PATCH 4/8] chore(release): 1.161.7 --- .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 +- .../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__/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 +- .../tests/__snapshots__/repo.domifa.dev.yaml | 18 +-- .../__snapshots__/repo.domifa.preprod.yaml | 8 +- .../tests/__snapshots__/repo.domifa.prod.yaml | 8 +- .../tests/__snapshots__/seed-db.dev.yaml | 2 +- .../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/Chart.yaml | 32 +++--- 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/metabase/Chart.yaml | 2 +- plugins/contrib/charts/namespace/Chart.yaml | 2 +- .../contrib/charts/oauth2-proxy/Chart.yaml | 2 +- .../contrib/charts/output-volume/Chart.yaml | 2 +- plugins/contrib/charts/pgweb/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 | 2 +- plugins/fabrique/Chart.yaml | 8 +- 71 files changed, 205 insertions(+), 198 deletions(-) diff --git a/.github/actions/deploy-via-github/Dockerfile b/.github/actions/deploy-via-github/Dockerfile index a064e1d192..c909406fdd 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.161.6 +FROM ghcr.io/socialgouv/kontinuous:v1.161.7 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/deploy-via-github/action.yaml b/.github/actions/deploy-via-github/action.yaml index 7f7e63224e..1fc5ecce3a 100644 --- a/.github/actions/deploy-via-github/action.yaml +++ b/.github/actions/deploy-via-github/action.yaml @@ -45,7 +45,7 @@ inputs: runs: using: docker # image: Dockerfile - image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.6 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.7 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 fda283dd73..e7609141d9 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.161.6 as base +FROM ghcr.io/socialgouv/kontinuous:v1.161.7 as base USER 0 diff --git a/.github/actions/deploy-via-webhook/action.yaml b/.github/actions/deploy-via-webhook/action.yaml index 61758188a4..8699a8265e 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.161.6 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-webhook:v1.161.7 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 ebc5e33fba..0acedce8eb 100644 --- a/.github/actions/deploy-via-webhook/kontinuousVersion +++ b/.github/actions/deploy-via-webhook/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.6 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.7 \ No newline at end of file diff --git a/.github/actions/env/Dockerfile b/.github/actions/env/Dockerfile index d013fcd848..85d99e6564 100644 --- a/.github/actions/env/Dockerfile +++ b/.github/actions/env/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/socialgouv/kontinuous:v1.161.6 +FROM ghcr.io/socialgouv/kontinuous:v1.161.7 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/env/action.yaml b/.github/actions/env/action.yaml index a4428dea71..d07f132cc3 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.161.6 + image: docker://ghcr.io/socialgouv/kontinuous/env:v1.161.7 env: KS_GIT_BRANCH: ${{ inputs.branch }} KSENV_REPOSITORY_NAME: ${{ inputs.repositoryName }} diff --git a/.github/kontinuousVersion b/.github/kontinuousVersion index ebc5e33fba..0acedce8eb 100644 --- a/.github/kontinuousVersion +++ b/.github/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.6 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.7 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ce5e45faad..6d8e4ffacc 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.161.7 (2023-07-28) + + +### Bug Fixes + +* **metabase:** fix chart ([#369](https://github.com/socialgouv/kontinuous/issues/369)) ([ea390ec](https://github.com/socialgouv/kontinuous/commit/ea390ec0c389a69fcd252eb3d4cd797dfb94208f)) + ## 1.161.6 (2023-07-28) ## 1.161.5 (2023-07-28) diff --git a/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml b/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml index 46ae4cc3cd..9d5f708d8c 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.161.6 + image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.7 # 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 4e7bce8d0a..475c277241 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.161.6"} - KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.6"} + KUBEWEBHOOK_PIPELINE_IMAGE: ${KUBEWEBHOOK_PIPELINE_IMAGE:-"ghcr.io/socialgouv/kontinuous:v1.161.7"} + KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.7"} 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 6bd3732d02..b01bb98fd2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "~dev", - "version": "1.161.6", + "version": "1.161.7", "repository": "git@github.com:socialgouv/kontinuous.git", "license": "MIT", "private": true, diff --git a/packages/argocd/Dockerfile b/packages/argocd/Dockerfile index a4d177ac59..781972f995 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.161.6 /usr/local/bin /usr/local/bin/ -COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.6 --chown=999:999 /opt/kontinuous /opt/kontinuous/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.7 /usr/local/bin /usr/local/bin/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.7 --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 1aa7c33fa8..20cd1294ad 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "~common", - "version": "1.161.6", + "version": "1.161.7", "description": "", "license": "MIT", "engines": { diff --git a/packages/dev-tools/package.json b/packages/dev-tools/package.json index 7287dbf7b1..5b8d811b1d 100644 --- a/packages/dev-tools/package.json +++ b/packages/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "~dev-tools", - "version": "1.161.6", + "version": "1.161.7", "dependencies": { "replace": "^1.2.2", "~common": "workspace:^" diff --git a/packages/helm-tree/package.json b/packages/helm-tree/package.json index d543bfca6b..c4f957f791 100644 --- a/packages/helm-tree/package.json +++ b/packages/helm-tree/package.json @@ -1,6 +1,6 @@ { "name": "helm-tree", - "version": "1.161.6", + "version": "1.161.7", "description": "", "license": "MIT", "engines": { diff --git a/packages/kontinuous/package.json b/packages/kontinuous/package.json index b5e765ec07..63c5f2bbaf 100644 --- a/packages/kontinuous/package.json +++ b/packages/kontinuous/package.json @@ -1,6 +1,6 @@ { "name": "kontinuous", - "version": "1.161.6", + "version": "1.161.7", "repository": "https://github.com/socialgouv/kontinuous.git", "homepage": "https://socialgouv.github.io/kontinuous/", "license": "MIT", diff --git a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml index 020dcdd83e..8fcd729459 100644 --- a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml @@ -56,7 +56,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml index bec5d98021..11291733ef 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml index da9a63886a..eae8fee943 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -282,7 +282,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml index e9259eb083..70a21e72d2 100644 --- a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 a3d22fa204..9069321efe 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 2234c44c87..0d7d1cea1a 100644 --- a/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -315,7 +315,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 e10fa44bd5..4d5147ce9c 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 f951d9cabe..3400cb8538 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -432,7 +432,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -612,7 +612,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 29c909cd4a..cecdd36fba 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -610,7 +610,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 8a83193721..f3319d5aa8 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 25951f692d..6131b71991 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 411a1ddebe..114771027b 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -454,7 +454,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 5d30fca8ed..1ba13e0548 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 3b8408490c..eee37355cb 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml index 8b5896ad2e..8a3573b3f6 100644 --- a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -250,7 +250,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/output.dev.yaml b/packages/kontinuous/tests/__snapshots__/output.dev.yaml index 050cef3051..18cc325e79 100644 --- a/packages/kontinuous/tests/__snapshots__/output.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/output.dev.yaml @@ -160,7 +160,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -283,7 +283,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml index 41164e43a4..450f44a30a 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml @@ -172,7 +172,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -356,7 +356,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -541,7 +541,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -722,7 +722,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -904,7 +904,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -1054,7 +1054,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -1199,7 +1199,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c @@ -1324,7 +1324,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -1347,7 +1347,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml index 7337187dfc..15279a73e2 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml @@ -170,7 +170,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -350,7 +350,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -535,7 +535,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -716,7 +716,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 dc354b7f4c..35f42c5c44 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml @@ -225,7 +225,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -408,7 +408,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -593,7 +593,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -775,7 +775,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml index d41a26906c..ca7ec495f1 100644 --- a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 9a53cff968..50d5716332 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 306e70f1e0..90907c0c5b 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 518f966394..3e62916fc4 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 08733fcca8..a90b30235c 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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 6d4b482332..53d01655f2 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.161.6 + use: socialgouv/kontinuous/plugins/contrib/jobs/create-db@v1.161.7 with: pgAdminSecretRefName: pg-scaleway diff --git a/packages/wait-needs/package.json b/packages/wait-needs/package.json index 5d556c1087..7e6588e449 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.161.6", + "version": "1.161.7", "engines": { "node": "^16.17 || ^18 || ^20" } diff --git a/packages/webhook/Chart.yaml b/packages/webhook/Chart.yaml index b825b06c13..3a0290cf18 100644 --- a/packages/webhook/Chart.yaml +++ b/packages/webhook/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: kontinuous-webhook -version: 1.161.6 +version: 1.161.7 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 472e82fe6a..b649f5fe7c 100644 --- a/packages/webhook/package.json +++ b/packages/webhook/package.json @@ -1,6 +1,6 @@ { "name": "~webhook", - "version": "1.161.6", + "version": "1.161.7", "description": "", "license": "MIT", "author": "", diff --git a/packages/webhook/values.yaml b/packages/webhook/values.yaml index cbf9c08165..01c56057fa 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.161.6 +image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.7 resources: limits: cpu: 2 diff --git a/plugins/contrib/Chart.yaml b/plugins/contrib/Chart.yaml index 8df6b49aa2..4245a6ef29 100644 --- a/plugins/contrib/Chart.yaml +++ b/plugins/contrib/Chart.yaml @@ -1,63 +1,63 @@ apiVersion: v2 name: contrib -version: 1.161.6 +version: 1.161.7 dependencies: - name: rancher-namespace repository: file://./charts/rancher-namespace - version: 1.161.6 + version: 1.161.7 condition: global.rancherNamespaceEnabled,rancher-namespace.enabled - name: namespace repository: file://./charts/namespace - version: 1.161.6 + version: 1.161.7 condition: global.namespaceEnabled,namespace.enabled - name: security-policies repository: file://./charts/security-policies - version: 1.161.6 + version: 1.161.7 condition: global.securityPoliciesEnabled,security-policies.enabled - name: output-volume repository: file://./charts/output-volume - version: 1.161.6 + version: 1.161.7 condition: global.outputVolumeEnabled,output-volume.enabled - name: contrib-helpers repository: file://./charts/contrib-helpers - version: 1.161.6 + version: 1.161.7 - name: app repository: file://./charts/app - version: 1.161.6 + version: 1.161.7 condition: app.enabled - name: daemon repository: file://./charts/daemon - version: 1.161.6 + version: 1.161.7 condition: daemon.enabled - name: deactivate repository: file://./charts/deactivate - version: 1.161.6 + version: 1.161.7 condition: deactivate.enabled - name: hasura repository: file://./charts/hasura - version: 1.161.6 + version: 1.161.7 condition: hasura.enabled - name: jobs repository: file://./charts/jobs - version: 1.161.6 + version: 1.161.7 condition: jobs.enabled - name: job repository: file://./charts/job - version: 1.161.6 + version: 1.161.7 condition: job.enabled - name: metabase repository: file://./charts/metabase - version: 1.161.6 + version: 1.161.7 condition: metabase.enabled - name: oauth2-proxy repository: file://./charts/oauth2-proxy - version: 1.161.6 + version: 1.161.7 condition: oauth2-proxy.enabled - name: pgweb repository: file://./charts/pgweb - version: 1.161.6 + version: 1.161.7 condition: pgweb.enabled - name: redis repository: file://./charts/redis - version: 1.161.6 + version: 1.161.7 condition: redis.enabled diff --git a/plugins/contrib/charts/app/Chart.yaml b/plugins/contrib/charts/app/Chart.yaml index 1a1ce4ac24..6871340349 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.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/contrib-helpers/Chart.yaml b/plugins/contrib/charts/contrib-helpers/Chart.yaml index c2291fa283..3262c55b84 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.161.6 +version: 1.161.7 type: library diff --git a/plugins/contrib/charts/daemon/Chart.yaml b/plugins/contrib/charts/daemon/Chart.yaml index 6850db4aa0..d0e34e92a2 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.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/deactivate/Chart.yaml b/plugins/contrib/charts/deactivate/Chart.yaml index 12f9bb0c55..78934152db 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.161.6 +version: 1.161.7 dependencies: - name: jobs repository: file://../jobs condition: 'true' alias: jobs-deactivate - version: 1.161.6 + version: 1.161.7 diff --git a/plugins/contrib/charts/hasura/Chart.yaml b/plugins/contrib/charts/hasura/Chart.yaml index b659e8fdf7..68ba4f6b92 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.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/job/Chart.yaml b/plugins/contrib/charts/job/Chart.yaml index 32ebcdddfc..182ab033f4 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.161.6 +version: 1.161.7 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.6 + version: 1.161.7 diff --git a/plugins/contrib/charts/job/values.yaml b/plugins/contrib/charts/job/values.yaml index 90416e3417..1b37bf05c4 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.161.6 + degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/jobs/Chart.yaml b/plugins/contrib/charts/jobs/Chart.yaml index 3307b4dcc4..8788d3cf03 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.161.6 +version: 1.161.7 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.6 + version: 1.161.7 diff --git a/plugins/contrib/charts/jobs/values.yaml b/plugins/contrib/charts/jobs/values.yaml index 8eafe5e075..96dbb82130 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.161.6 +degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/metabase/Chart.yaml b/plugins/contrib/charts/metabase/Chart.yaml index 259851e972..0fa8d7c9a9 100644 --- a/plugins/contrib/charts/metabase/Chart.yaml +++ b/plugins/contrib/charts/metabase/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: metabase -version: 1.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/namespace/Chart.yaml b/plugins/contrib/charts/namespace/Chart.yaml index 6498985b9e..b894c0421f 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.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/oauth2-proxy/Chart.yaml b/plugins/contrib/charts/oauth2-proxy/Chart.yaml index bddec59661..f4825a31eb 100644 --- a/plugins/contrib/charts/oauth2-proxy/Chart.yaml +++ b/plugins/contrib/charts/oauth2-proxy/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: oauth2-proxy -version: 1.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/output-volume/Chart.yaml b/plugins/contrib/charts/output-volume/Chart.yaml index 107dc1d330..b447dcdc97 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.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/pgweb/Chart.yaml b/plugins/contrib/charts/pgweb/Chart.yaml index d5a1de2c44..0ec7639021 100644 --- a/plugins/contrib/charts/pgweb/Chart.yaml +++ b/plugins/contrib/charts/pgweb/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: pgweb -version: 1.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/rancher-namespace/Chart.yaml b/plugins/contrib/charts/rancher-namespace/Chart.yaml index 4e4d99633b..264c96d83c 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.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/redis/Chart.yaml b/plugins/contrib/charts/redis/Chart.yaml index 6e258da5ff..24e3747b51 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.161.6 +version: 1.161.7 diff --git a/plugins/contrib/charts/security-policies/Chart.yaml b/plugins/contrib/charts/security-policies/Chart.yaml index 280006b6b7..5dc43d2b5c 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.161.6 +version: 1.161.7 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 9052025d94..a7c677cb2b 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ └── 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.161.6 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ │ └── 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.161.6 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ └── 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.161.6 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ │ └── 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.161.6 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ │ └── 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.161.6 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 │ │ └── 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.161.6 + │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 │ └── 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 ff62a64fb5..a4c1e39acc 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -360,7 +360,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -503,7 +503,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -647,7 +647,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -792,7 +792,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -1018,7 +1018,7 @@ spec: name: staff initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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 b5406a41cd..c70705b321 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.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - "-c" @@ -2901,7 +2901,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - "-c" @@ -3037,7 +3037,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - "-c" @@ -3203,7 +3203,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - "-c" @@ -3339,7 +3339,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - "-c" @@ -3491,7 +3491,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 command: - sh - "-c" diff --git a/plugins/contrib/debug-manifests/tests/samples/www.yaml b/plugins/contrib/debug-manifests/tests/samples/www.yaml index fd18920235..3be2e67472 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.161.6 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 imagePullPolicy: IfNotPresent command: - sh @@ -327,7 +327,7 @@ spec: memory: 0 initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 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 640167b010..8b66942ce5 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.161.6 + image: ghcr.io/socialgouv/kontinuous:v1.161.7 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 2a1404bd30..0d34438ae5 100644 --- a/plugins/contrib/patches/05.1-needs-using-initcontainers.js +++ b/plugins/contrib/patches/05.1-needs-using-initcontainers.js @@ -1,4 +1,4 @@ -const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.6" +const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7" // 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 7d155acdc9..d383ec2538 100644 --- a/plugins/fabrique/Chart.yaml +++ b/plugins/fabrique/Chart.yaml @@ -1,18 +1,18 @@ apiVersion: v2 name: fabrique -version: 1.161.6 +version: 1.161.7 dependencies: - name: contrib repository: file://./charts/contrib - version: 1.161.6 + version: 1.161.7 condition: contrib.enabled - name: pg repository: file://./charts/pg - version: 1.161.6 + version: 1.161.7 condition: pg.enabled - name: maildev repository: file://./charts/maildev - version: 1.161.6 + version: 1.161.7 condition: maildev.enabled - name: keycloakx repository: https://codecentric.github.io/helm-charts From 47f5fa2df0c75ce6ac8877460645c1dc1ec2ae7f Mon Sep 17 00:00:00 2001 From: Julien Bouquillon Date: Mon, 31 Jul 2023 09:34:03 +0200 Subject: [PATCH 5/8] fix(metabase): upgrade to v0.46.6.4 (#377) --- .../tests/__snapshots__/ingress-annotations.prod.yaml | 2 +- .../tests/__snapshots__/ingress-custom-annotations.prod.yaml | 2 +- .../tests/__snapshots__/ingress-custom-certs.prod.yaml | 2 +- packages/kontinuous/tests/__snapshots__/metabase.prod.yaml | 4 ++-- .../tests/__snapshots__/oauth2-proxy-metabase.prod.yaml | 2 +- plugins/contrib/charts/metabase/templates/deployment.yaml | 3 +-- plugins/contrib/charts/metabase/values.yaml | 5 ++++- 7 files changed, 11 insertions(+), 9 deletions(-) diff --git a/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml index ea2b046e7a..71fc6c0117 100644 --- a/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/ingress-annotations.prod.yaml @@ -170,7 +170,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - - image: metabase/metabase:v0.46.6.1 + - image: metabase/metabase:v0.46.6.4 name: metabase securityContext: allowPrivilegeEscalation: false diff --git a/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml index 8fdcb71f7b..dc8520d600 100644 --- a/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/ingress-custom-annotations.prod.yaml @@ -170,7 +170,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - - image: metabase/metabase:v0.46.6.1 + - image: metabase/metabase:v0.46.6.4 name: metabase securityContext: allowPrivilegeEscalation: false diff --git a/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml b/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml index 83781d75b3..80a7fd803a 100644 --- a/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/ingress-custom-certs.prod.yaml @@ -170,7 +170,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - - image: metabase/metabase:v0.46.6.1 + - image: metabase/metabase:v0.46.6.4 name: metabase securityContext: allowPrivilegeEscalation: false diff --git a/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml b/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml index 9b33490f93..08979d160d 100644 --- a/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/metabase.prod.yaml @@ -356,7 +356,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - - image: metabase/metabase:v0.46.6.1 + - image: metabase/metabase:v0.46.6.4 name: metabase securityContext: allowPrivilegeEscalation: false @@ -460,7 +460,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - - image: metabase/metabase:v0.46.6.1 + - image: metabase/metabase:v0.46.6.4 name: metabase securityContext: allowPrivilegeEscalation: false diff --git a/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml b/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml index c2a8891b8c..cdf98237ae 100644 --- a/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/oauth2-proxy-metabase.prod.yaml @@ -170,7 +170,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - - image: metabase/metabase:v0.46.6.1 + - image: metabase/metabase:v0.46.6.4 name: metabase securityContext: allowPrivilegeEscalation: false diff --git a/plugins/contrib/charts/metabase/templates/deployment.yaml b/plugins/contrib/charts/metabase/templates/deployment.yaml index 9c88544bbb..76bdf8de2d 100644 --- a/plugins/contrib/charts/metabase/templates/deployment.yaml +++ b/plugins/contrib/charts/metabase/templates/deployment.yaml @@ -28,8 +28,7 @@ spec: fsGroup: 1000 runAsNonRoot: true containers: - # renovate: datasource=docker depName=metabase/metabase versioning=v0.46.6.1 - - image: metabase/metabase:v0.46.6.1 + - image: {{ .Values.image.name }}:{{ .Values.image.tag }} name: metabase securityContext: allowPrivilegeEscalation: false diff --git a/plugins/contrib/charts/metabase/values.yaml b/plugins/contrib/charts/metabase/values.yaml index b3ec8a70ec..b537a72976 100644 --- a/plugins/contrib/charts/metabase/values.yaml +++ b/plugins/contrib/charts/metabase/values.yaml @@ -8,7 +8,10 @@ ingress: enabled: true annotations: {} annotations: {} - +image: + name: metabase/metabase + # renovate: datasource=docker depName=metabase/metabase versioning=v0.46.6.4 + tag: v0.46.6.4 matomo: cronjob: enabled: false From 8556549dbeead5617e6a0c727f3c84c3290b13a6 Mon Sep 17 00:00:00 2001 From: Social Groovy Bot <45039513+SocialGroovyBot@users.noreply.github.com> Date: Mon, 31 Jul 2023 07:36:21 +0000 Subject: [PATCH 6/8] chore(release): 1.161.8 --- .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 +- .../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__/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 +- .../tests/__snapshots__/repo.domifa.dev.yaml | 18 +-- .../__snapshots__/repo.domifa.preprod.yaml | 8 +- .../tests/__snapshots__/repo.domifa.prod.yaml | 8 +- .../tests/__snapshots__/seed-db.dev.yaml | 2 +- .../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/Chart.yaml | 32 +++--- 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/metabase/Chart.yaml | 2 +- plugins/contrib/charts/namespace/Chart.yaml | 2 +- .../contrib/charts/oauth2-proxy/Chart.yaml | 2 +- .../contrib/charts/output-volume/Chart.yaml | 2 +- plugins/contrib/charts/pgweb/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 | 2 +- plugins/fabrique/Chart.yaml | 8 +- 71 files changed, 205 insertions(+), 198 deletions(-) diff --git a/.github/actions/deploy-via-github/Dockerfile b/.github/actions/deploy-via-github/Dockerfile index c909406fdd..360d05508e 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.161.7 +FROM ghcr.io/socialgouv/kontinuous:v1.161.8 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/deploy-via-github/action.yaml b/.github/actions/deploy-via-github/action.yaml index 1fc5ecce3a..64777b353e 100644 --- a/.github/actions/deploy-via-github/action.yaml +++ b/.github/actions/deploy-via-github/action.yaml @@ -45,7 +45,7 @@ inputs: runs: using: docker # image: Dockerfile - image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.7 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.8 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 e7609141d9..627cf12804 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.161.7 as base +FROM ghcr.io/socialgouv/kontinuous:v1.161.8 as base USER 0 diff --git a/.github/actions/deploy-via-webhook/action.yaml b/.github/actions/deploy-via-webhook/action.yaml index 8699a8265e..25df50c618 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.161.7 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-webhook:v1.161.8 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 0acedce8eb..05fbae90fa 100644 --- a/.github/actions/deploy-via-webhook/kontinuousVersion +++ b/.github/actions/deploy-via-webhook/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.7 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.8 \ No newline at end of file diff --git a/.github/actions/env/Dockerfile b/.github/actions/env/Dockerfile index 85d99e6564..e5177da01c 100644 --- a/.github/actions/env/Dockerfile +++ b/.github/actions/env/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/socialgouv/kontinuous:v1.161.7 +FROM ghcr.io/socialgouv/kontinuous:v1.161.8 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/env/action.yaml b/.github/actions/env/action.yaml index d07f132cc3..924222ef87 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.161.7 + image: docker://ghcr.io/socialgouv/kontinuous/env:v1.161.8 env: KS_GIT_BRANCH: ${{ inputs.branch }} KSENV_REPOSITORY_NAME: ${{ inputs.repositoryName }} diff --git a/.github/kontinuousVersion b/.github/kontinuousVersion index 0acedce8eb..05fbae90fa 100644 --- a/.github/kontinuousVersion +++ b/.github/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.7 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.8 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d8e4ffacc..285350f586 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.161.8 (2023-07-31) + + +### Bug Fixes + +* **metabase:** upgrade to v0.46.6.4 ([#377](https://github.com/socialgouv/kontinuous/issues/377)) ([47f5fa2](https://github.com/socialgouv/kontinuous/commit/47f5fa2df0c75ce6ac8877460645c1dc1ec2ae7f)) + ## 1.161.7 (2023-07-28) diff --git a/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml b/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml index 9d5f708d8c..e4698596da 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.161.7 + image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.8 # 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 475c277241..b7b6309d2b 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.161.7"} - KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.7"} + KUBEWEBHOOK_PIPELINE_IMAGE: ${KUBEWEBHOOK_PIPELINE_IMAGE:-"ghcr.io/socialgouv/kontinuous:v1.161.8"} + KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.8"} 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 b01bb98fd2..26f342220f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "~dev", - "version": "1.161.7", + "version": "1.161.8", "repository": "git@github.com:socialgouv/kontinuous.git", "license": "MIT", "private": true, diff --git a/packages/argocd/Dockerfile b/packages/argocd/Dockerfile index 781972f995..610347d6d6 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.161.7 /usr/local/bin /usr/local/bin/ -COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.7 --chown=999:999 /opt/kontinuous /opt/kontinuous/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.8 /usr/local/bin /usr/local/bin/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.8 --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 20cd1294ad..012de3f4bb 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "~common", - "version": "1.161.7", + "version": "1.161.8", "description": "", "license": "MIT", "engines": { diff --git a/packages/dev-tools/package.json b/packages/dev-tools/package.json index 5b8d811b1d..e36eb9f692 100644 --- a/packages/dev-tools/package.json +++ b/packages/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "~dev-tools", - "version": "1.161.7", + "version": "1.161.8", "dependencies": { "replace": "^1.2.2", "~common": "workspace:^" diff --git a/packages/helm-tree/package.json b/packages/helm-tree/package.json index c4f957f791..aca795b63d 100644 --- a/packages/helm-tree/package.json +++ b/packages/helm-tree/package.json @@ -1,6 +1,6 @@ { "name": "helm-tree", - "version": "1.161.7", + "version": "1.161.8", "description": "", "license": "MIT", "engines": { diff --git a/packages/kontinuous/package.json b/packages/kontinuous/package.json index 63c5f2bbaf..8a48739e2c 100644 --- a/packages/kontinuous/package.json +++ b/packages/kontinuous/package.json @@ -1,6 +1,6 @@ { "name": "kontinuous", - "version": "1.161.7", + "version": "1.161.8", "repository": "https://github.com/socialgouv/kontinuous.git", "homepage": "https://socialgouv.github.io/kontinuous/", "license": "MIT", diff --git a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml index 8fcd729459..4bf376b5f0 100644 --- a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml @@ -56,7 +56,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml index 11291733ef..bd31eb2278 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml index eae8fee943..7257577410 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -282,7 +282,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml index 70a21e72d2..372696bdc0 100644 --- a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 9069321efe..614f0f2892 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 0d7d1cea1a..bbc31e55d9 100644 --- a/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -315,7 +315,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 4d5147ce9c..3f18c73d1e 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 3400cb8538..c6ef779ab8 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -432,7 +432,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -612,7 +612,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 cecdd36fba..fe543cad8b 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -610,7 +610,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 f3319d5aa8..f38d5c0f4e 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 6131b71991..798ed27cc0 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 114771027b..cec3e29b36 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -454,7 +454,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 1ba13e0548..3436f55c74 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 eee37355cb..9f7ad2b39c 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml index 8a3573b3f6..1e9ab045d8 100644 --- a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -250,7 +250,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/output.dev.yaml b/packages/kontinuous/tests/__snapshots__/output.dev.yaml index 18cc325e79..bba17d3585 100644 --- a/packages/kontinuous/tests/__snapshots__/output.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/output.dev.yaml @@ -160,7 +160,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -283,7 +283,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml index 450f44a30a..a64c0a50d0 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml @@ -172,7 +172,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -356,7 +356,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -541,7 +541,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -722,7 +722,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -904,7 +904,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -1054,7 +1054,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -1199,7 +1199,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c @@ -1324,7 +1324,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -1347,7 +1347,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml index 15279a73e2..53c902ec5c 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml @@ -170,7 +170,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -350,7 +350,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -535,7 +535,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -716,7 +716,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 35f42c5c44..1497a227b3 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml @@ -225,7 +225,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -408,7 +408,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -593,7 +593,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -775,7 +775,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml index ca7ec495f1..a5b04741f8 100644 --- a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 50d5716332..64ea7aa268 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 90907c0c5b..e1e3d8aa3f 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 3e62916fc4..707eaa9a06 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 a90b30235c..488e4fc52e 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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 53d01655f2..f4df2ca598 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.161.7 + use: socialgouv/kontinuous/plugins/contrib/jobs/create-db@v1.161.8 with: pgAdminSecretRefName: pg-scaleway diff --git a/packages/wait-needs/package.json b/packages/wait-needs/package.json index 7e6588e449..9f5eea4231 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.161.7", + "version": "1.161.8", "engines": { "node": "^16.17 || ^18 || ^20" } diff --git a/packages/webhook/Chart.yaml b/packages/webhook/Chart.yaml index 3a0290cf18..7e23ceaeeb 100644 --- a/packages/webhook/Chart.yaml +++ b/packages/webhook/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: kontinuous-webhook -version: 1.161.7 +version: 1.161.8 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 b649f5fe7c..876095c778 100644 --- a/packages/webhook/package.json +++ b/packages/webhook/package.json @@ -1,6 +1,6 @@ { "name": "~webhook", - "version": "1.161.7", + "version": "1.161.8", "description": "", "license": "MIT", "author": "", diff --git a/packages/webhook/values.yaml b/packages/webhook/values.yaml index 01c56057fa..d379113f29 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.161.7 +image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.8 resources: limits: cpu: 2 diff --git a/plugins/contrib/Chart.yaml b/plugins/contrib/Chart.yaml index 4245a6ef29..183e1797c6 100644 --- a/plugins/contrib/Chart.yaml +++ b/plugins/contrib/Chart.yaml @@ -1,63 +1,63 @@ apiVersion: v2 name: contrib -version: 1.161.7 +version: 1.161.8 dependencies: - name: rancher-namespace repository: file://./charts/rancher-namespace - version: 1.161.7 + version: 1.161.8 condition: global.rancherNamespaceEnabled,rancher-namespace.enabled - name: namespace repository: file://./charts/namespace - version: 1.161.7 + version: 1.161.8 condition: global.namespaceEnabled,namespace.enabled - name: security-policies repository: file://./charts/security-policies - version: 1.161.7 + version: 1.161.8 condition: global.securityPoliciesEnabled,security-policies.enabled - name: output-volume repository: file://./charts/output-volume - version: 1.161.7 + version: 1.161.8 condition: global.outputVolumeEnabled,output-volume.enabled - name: contrib-helpers repository: file://./charts/contrib-helpers - version: 1.161.7 + version: 1.161.8 - name: app repository: file://./charts/app - version: 1.161.7 + version: 1.161.8 condition: app.enabled - name: daemon repository: file://./charts/daemon - version: 1.161.7 + version: 1.161.8 condition: daemon.enabled - name: deactivate repository: file://./charts/deactivate - version: 1.161.7 + version: 1.161.8 condition: deactivate.enabled - name: hasura repository: file://./charts/hasura - version: 1.161.7 + version: 1.161.8 condition: hasura.enabled - name: jobs repository: file://./charts/jobs - version: 1.161.7 + version: 1.161.8 condition: jobs.enabled - name: job repository: file://./charts/job - version: 1.161.7 + version: 1.161.8 condition: job.enabled - name: metabase repository: file://./charts/metabase - version: 1.161.7 + version: 1.161.8 condition: metabase.enabled - name: oauth2-proxy repository: file://./charts/oauth2-proxy - version: 1.161.7 + version: 1.161.8 condition: oauth2-proxy.enabled - name: pgweb repository: file://./charts/pgweb - version: 1.161.7 + version: 1.161.8 condition: pgweb.enabled - name: redis repository: file://./charts/redis - version: 1.161.7 + version: 1.161.8 condition: redis.enabled diff --git a/plugins/contrib/charts/app/Chart.yaml b/plugins/contrib/charts/app/Chart.yaml index 6871340349..c09a07c5c9 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.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/contrib-helpers/Chart.yaml b/plugins/contrib/charts/contrib-helpers/Chart.yaml index 3262c55b84..fc03437c39 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.161.7 +version: 1.161.8 type: library diff --git a/plugins/contrib/charts/daemon/Chart.yaml b/plugins/contrib/charts/daemon/Chart.yaml index d0e34e92a2..f2b70a84b7 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.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/deactivate/Chart.yaml b/plugins/contrib/charts/deactivate/Chart.yaml index 78934152db..84d9b2c0e6 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.161.7 +version: 1.161.8 dependencies: - name: jobs repository: file://../jobs condition: 'true' alias: jobs-deactivate - version: 1.161.7 + version: 1.161.8 diff --git a/plugins/contrib/charts/hasura/Chart.yaml b/plugins/contrib/charts/hasura/Chart.yaml index 68ba4f6b92..722ddf4f12 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.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/job/Chart.yaml b/plugins/contrib/charts/job/Chart.yaml index 182ab033f4..79d1c69cfc 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.161.7 +version: 1.161.8 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.7 + version: 1.161.8 diff --git a/plugins/contrib/charts/job/values.yaml b/plugins/contrib/charts/job/values.yaml index 1b37bf05c4..422621750f 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.161.7 + degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/jobs/Chart.yaml b/plugins/contrib/charts/jobs/Chart.yaml index 8788d3cf03..91edb06962 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.161.7 +version: 1.161.8 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.7 + version: 1.161.8 diff --git a/plugins/contrib/charts/jobs/values.yaml b/plugins/contrib/charts/jobs/values.yaml index 96dbb82130..2233a5afd7 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.161.7 +degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/metabase/Chart.yaml b/plugins/contrib/charts/metabase/Chart.yaml index 0fa8d7c9a9..0dadffc0b7 100644 --- a/plugins/contrib/charts/metabase/Chart.yaml +++ b/plugins/contrib/charts/metabase/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: metabase -version: 1.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/namespace/Chart.yaml b/plugins/contrib/charts/namespace/Chart.yaml index b894c0421f..60728262fb 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.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/oauth2-proxy/Chart.yaml b/plugins/contrib/charts/oauth2-proxy/Chart.yaml index f4825a31eb..58121d045f 100644 --- a/plugins/contrib/charts/oauth2-proxy/Chart.yaml +++ b/plugins/contrib/charts/oauth2-proxy/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: oauth2-proxy -version: 1.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/output-volume/Chart.yaml b/plugins/contrib/charts/output-volume/Chart.yaml index b447dcdc97..6d77916d4f 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.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/pgweb/Chart.yaml b/plugins/contrib/charts/pgweb/Chart.yaml index 0ec7639021..99bff6b3a4 100644 --- a/plugins/contrib/charts/pgweb/Chart.yaml +++ b/plugins/contrib/charts/pgweb/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: pgweb -version: 1.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/rancher-namespace/Chart.yaml b/plugins/contrib/charts/rancher-namespace/Chart.yaml index 264c96d83c..0afd47a996 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.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/redis/Chart.yaml b/plugins/contrib/charts/redis/Chart.yaml index 24e3747b51..9bb194206a 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.161.7 +version: 1.161.8 diff --git a/plugins/contrib/charts/security-policies/Chart.yaml b/plugins/contrib/charts/security-policies/Chart.yaml index 5dc43d2b5c..48ace70e9b 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.161.7 +version: 1.161.8 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 a7c677cb2b..dac68dfc58 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ └── 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.161.7 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ │ └── 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.161.7 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ └── 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.161.7 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ │ └── 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.161.7 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ │ └── 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.161.7 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 │ │ └── 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.161.7 + │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 │ └── 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 a4c1e39acc..d541151f8f 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -360,7 +360,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -503,7 +503,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -647,7 +647,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -792,7 +792,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -1018,7 +1018,7 @@ spec: name: staff initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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 c70705b321..3438108986 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.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - "-c" @@ -2901,7 +2901,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - "-c" @@ -3037,7 +3037,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - "-c" @@ -3203,7 +3203,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - "-c" @@ -3339,7 +3339,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - "-c" @@ -3491,7 +3491,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 command: - sh - "-c" diff --git a/plugins/contrib/debug-manifests/tests/samples/www.yaml b/plugins/contrib/debug-manifests/tests/samples/www.yaml index 3be2e67472..6b54778764 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.161.7 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 imagePullPolicy: IfNotPresent command: - sh @@ -327,7 +327,7 @@ spec: memory: 0 initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 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 8b66942ce5..b45f11e9e1 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.161.7 + image: ghcr.io/socialgouv/kontinuous:v1.161.8 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 0d34438ae5..af61072ee7 100644 --- a/plugins/contrib/patches/05.1-needs-using-initcontainers.js +++ b/plugins/contrib/patches/05.1-needs-using-initcontainers.js @@ -1,4 +1,4 @@ -const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.7" +const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8" // 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 d383ec2538..5b91ede6b1 100644 --- a/plugins/fabrique/Chart.yaml +++ b/plugins/fabrique/Chart.yaml @@ -1,18 +1,18 @@ apiVersion: v2 name: fabrique -version: 1.161.7 +version: 1.161.8 dependencies: - name: contrib repository: file://./charts/contrib - version: 1.161.7 + version: 1.161.8 condition: contrib.enabled - name: pg repository: file://./charts/pg - version: 1.161.7 + version: 1.161.8 condition: pg.enabled - name: maildev repository: file://./charts/maildev - version: 1.161.7 + version: 1.161.8 condition: maildev.enabled - name: keycloakx repository: https://codecentric.github.io/helm-charts From 0f5bcdf9b789bab0d899fa32aaabc233467fb88a Mon Sep 17 00:00:00 2001 From: Julien Bouquillon Date: Mon, 31 Jul 2023 09:40:09 +0200 Subject: [PATCH 7/8] docs(faq): add oauth example (#378) Co-authored-by: Jo --- docs/faq.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index deefca65fe..3436141703 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -98,7 +98,7 @@ pg: app: ~chart: app ~needs: [build-app, seed-db] - # use CNPG db created secret + # use CNPG db created secret envFrom: - secretRef: name: pg-app @@ -170,6 +170,57 @@ jobs: context: packages/api ``` +## Add an oauth2 proxy to protect some application + +You can delegate application authentication to [oauth2-proxy](https://oauth2-proxy.github.io/oauth2-proxy) that can connect to multiple identity providers like GitHub, Azure, AD, KeyCloak... + +This has many security advantages : + +- hides all your application from external users +- delegates all security processes to state-of-the-art providers +- application can receive verifiable user identity + +You'll have to disable the default application ingress and replace it with `oauth2-proxy` one then register your application, see [compatible providers](https://oauth2-proxy.github.io/oauth2-proxy/docs/configuration/oauth_provider). + +```mermaid +graph LR +Internet["🌍" Internet]-->Proxy["🔒" Proxy] +subgraph Cluster +Proxy-->WebApp["🧑‍💼" WebApp] +Proxy<-->IDP["🔑" Identity providers] +end +``` + +In `.kontinuous/values.yaml` : + +```yaml +# Application to protect +metabase: + ingress: + enabled: false # disable ingress (internet exposition) + # metabase secrets and settings + envFrom: + - secretRef: + name: metabase + +oauth2-proxy: + # public URL that will show metabase once loggedin + host: "metabase.myapp.somewhere.fr" + # internal protected service URL + upstream: http://metabase + # oauth2-proxy secrets and settings + envFrom: + - secretRef: + name: oauth2-proxy + env: + - name: OAUTH2_PROXY_PROVIDER + value: github + - name: OAUTH2_PROXY_GITHUB_ORG + value: some-org +``` + +**NOTE** in this example, only users from `some-org` GitHub organisation can access the metabase, but they also have to login on the metabase separately. + ## Define a custom docker registry [TODO] From e019db24ccece0b7ba5e3dc025af82d50346de97 Mon Sep 17 00:00:00 2001 From: Social Groovy Bot <45039513+SocialGroovyBot@users.noreply.github.com> Date: Mon, 31 Jul 2023 07:43:20 +0000 Subject: [PATCH 8/8] chore(release): 1.161.9 --- .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 | 2 + .../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 +- .../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__/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 +- .../tests/__snapshots__/repo.domifa.dev.yaml | 18 +-- .../__snapshots__/repo.domifa.preprod.yaml | 8 +- .../tests/__snapshots__/repo.domifa.prod.yaml | 8 +- .../tests/__snapshots__/seed-db.dev.yaml | 2 +- .../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/Chart.yaml | 32 +++--- 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/metabase/Chart.yaml | 2 +- plugins/contrib/charts/namespace/Chart.yaml | 2 +- .../contrib/charts/oauth2-proxy/Chart.yaml | 2 +- .../contrib/charts/output-volume/Chart.yaml | 2 +- plugins/contrib/charts/pgweb/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 | 2 +- plugins/fabrique/Chart.yaml | 8 +- 71 files changed, 200 insertions(+), 198 deletions(-) diff --git a/.github/actions/deploy-via-github/Dockerfile b/.github/actions/deploy-via-github/Dockerfile index 360d05508e..ccb839d643 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.161.8 +FROM ghcr.io/socialgouv/kontinuous:v1.161.9 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/deploy-via-github/action.yaml b/.github/actions/deploy-via-github/action.yaml index 64777b353e..b996b68299 100644 --- a/.github/actions/deploy-via-github/action.yaml +++ b/.github/actions/deploy-via-github/action.yaml @@ -45,7 +45,7 @@ inputs: runs: using: docker # image: Dockerfile - image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.8 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-github:v1.161.9 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 627cf12804..544cca7dba 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.161.8 as base +FROM ghcr.io/socialgouv/kontinuous:v1.161.9 as base USER 0 diff --git a/.github/actions/deploy-via-webhook/action.yaml b/.github/actions/deploy-via-webhook/action.yaml index 25df50c618..e8bc7af6ee 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.161.8 + image: docker://ghcr.io/socialgouv/kontinuous/deploy-via-webhook:v1.161.9 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 05fbae90fa..887e6596e0 100644 --- a/.github/actions/deploy-via-webhook/kontinuousVersion +++ b/.github/actions/deploy-via-webhook/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.8 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.9 \ No newline at end of file diff --git a/.github/actions/env/Dockerfile b/.github/actions/env/Dockerfile index e5177da01c..9d2d3e6e5a 100644 --- a/.github/actions/env/Dockerfile +++ b/.github/actions/env/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/socialgouv/kontinuous:v1.161.8 +FROM ghcr.io/socialgouv/kontinuous:v1.161.9 COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/env/action.yaml b/.github/actions/env/action.yaml index 924222ef87..f88e0b090f 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.161.8 + image: docker://ghcr.io/socialgouv/kontinuous/env:v1.161.9 env: KS_GIT_BRANCH: ${{ inputs.branch }} KSENV_REPOSITORY_NAME: ${{ inputs.repositoryName }} diff --git a/.github/kontinuousVersion b/.github/kontinuousVersion index 05fbae90fa..887e6596e0 100644 --- a/.github/kontinuousVersion +++ b/.github/kontinuousVersion @@ -1 +1 @@ -ghcr.io/socialgouv/kontinuous:v1.161.8 \ No newline at end of file +ghcr.io/socialgouv/kontinuous:v1.161.9 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 285350f586..c6d54806d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ 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.161.9 (2023-07-31) + ## 1.161.8 (2023-07-31) diff --git a/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml b/boilerplates/infra-samples/argocd/kontinuous-webhook/values.yaml index e4698596da..60d6422424 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.161.8 + image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.9 # 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 b7b6309d2b..4cc337926a 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.161.8"} - KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.8"} + KUBEWEBHOOK_PIPELINE_IMAGE: ${KUBEWEBHOOK_PIPELINE_IMAGE:-"ghcr.io/socialgouv/kontinuous:v1.161.9"} + KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE: ${KUBEWEBHOOK_PIPELINE_CHECKOUT_IMAGE:-"ghcr.io/socialgouv/kontinuous/degit:v1.161.9"} 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 26f342220f..8b46153f05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "~dev", - "version": "1.161.8", + "version": "1.161.9", "repository": "git@github.com:socialgouv/kontinuous.git", "license": "MIT", "private": true, diff --git a/packages/argocd/Dockerfile b/packages/argocd/Dockerfile index 610347d6d6..1bfcc35b7b 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.161.8 /usr/local/bin /usr/local/bin/ -COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.8 --chown=999:999 /opt/kontinuous /opt/kontinuous/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.9 /usr/local/bin /usr/local/bin/ +COPY --from=ghcr.io/socialgouv/kontinuous:v1.161.9 --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 012de3f4bb..8b2f3f6d50 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "~common", - "version": "1.161.8", + "version": "1.161.9", "description": "", "license": "MIT", "engines": { diff --git a/packages/dev-tools/package.json b/packages/dev-tools/package.json index e36eb9f692..97f271bf3b 100644 --- a/packages/dev-tools/package.json +++ b/packages/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "~dev-tools", - "version": "1.161.8", + "version": "1.161.9", "dependencies": { "replace": "^1.2.2", "~common": "workspace:^" diff --git a/packages/helm-tree/package.json b/packages/helm-tree/package.json index aca795b63d..fead16a43c 100644 --- a/packages/helm-tree/package.json +++ b/packages/helm-tree/package.json @@ -1,6 +1,6 @@ { "name": "helm-tree", - "version": "1.161.8", + "version": "1.161.9", "description": "", "license": "MIT", "engines": { diff --git a/packages/kontinuous/package.json b/packages/kontinuous/package.json index 8a48739e2c..533ffd28b5 100644 --- a/packages/kontinuous/package.json +++ b/packages/kontinuous/package.json @@ -1,6 +1,6 @@ { "name": "kontinuous", - "version": "1.161.8", + "version": "1.161.9", "repository": "https://github.com/socialgouv/kontinuous.git", "homepage": "https://socialgouv.github.io/kontinuous/", "license": "MIT", diff --git a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml index 4bf376b5f0..8008a9a15d 100644 --- a/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/deactivate.dev.yaml @@ -56,7 +56,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml index bd31eb2278..61b05d8666 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml index 7257577410..00890ce84b 100644 --- a/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml @@ -133,7 +133,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -282,7 +282,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml index 372696bdc0..b68f32df18 100644 --- a/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/include-file.dev.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 614f0f2892..695bcc685f 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 bbc31e55d9..03c542fe17 100644 --- a/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/job-builds.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -315,7 +315,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 3f18c73d1e..5589b06e41 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-options.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 c6ef779ab8..3f79d6e765 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build-stage.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -432,7 +432,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -612,7 +612,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 fe543cad8b..3abbe251fb 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-build.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -610,7 +610,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 f38d5c0f4e..cb29ec4cc7 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-runs-map.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 798ed27cc0..e9f688451a 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 cec3e29b36..c7a16082b9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -285,7 +285,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -431,7 +431,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -454,7 +454,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 3436f55c74..b99507b705 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-relative.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 9f7ad2b39c..3b97be2be9 100644 --- a/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/jobs-uses-self-ref.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -284,7 +284,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml index 1e9ab045d8..36611b4c6f 100644 --- a/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/meta-log.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -250,7 +250,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/output.dev.yaml b/packages/kontinuous/tests/__snapshots__/output.dev.yaml index bba17d3585..56de2415dd 100644 --- a/packages/kontinuous/tests/__snapshots__/output.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/output.dev.yaml @@ -160,7 +160,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -283,7 +283,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml index a64c0a50d0..36760f45a3 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.dev.yaml @@ -172,7 +172,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -356,7 +356,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -541,7 +541,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -722,7 +722,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -904,7 +904,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -1054,7 +1054,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -1199,7 +1199,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c @@ -1324,7 +1324,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -1347,7 +1347,7 @@ spec: cpu: \\"0\\" memory: \\"0\\" - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - -c diff --git a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml index 53c902ec5c..5ffefb19c9 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.preprod.yaml @@ -170,7 +170,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -350,7 +350,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -535,7 +535,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -716,7 +716,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 1497a227b3..6ff3004519 100644 --- a/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml +++ b/packages/kontinuous/tests/__snapshots__/repo.domifa.prod.yaml @@ -225,7 +225,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -408,7 +408,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -593,7 +593,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -775,7 +775,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh diff --git a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml index a5b04741f8..163cf4d88d 100644 --- a/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/seed-db.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 64ea7aa268..bdcf25b46c 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops-override.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 e1e3d8aa3f..875f57eb98 100644 --- a/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/socialgouv-autodevops.dev.yaml @@ -136,7 +136,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 707eaa9a06..f406960255 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.dev.yaml @@ -135,7 +135,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 488e4fc52e..e7e3e53a0a 100644 --- a/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml +++ b/packages/kontinuous/tests/__snapshots__/values-extends.preprod.yaml @@ -134,7 +134,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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 f4df2ca598..fd07e4264b 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.161.8 + use: socialgouv/kontinuous/plugins/contrib/jobs/create-db@v1.161.9 with: pgAdminSecretRefName: pg-scaleway diff --git a/packages/wait-needs/package.json b/packages/wait-needs/package.json index 9f5eea4231..c2ced3896f 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.161.8", + "version": "1.161.9", "engines": { "node": "^16.17 || ^18 || ^20" } diff --git a/packages/webhook/Chart.yaml b/packages/webhook/Chart.yaml index 7e23ceaeeb..95f07bc703 100644 --- a/packages/webhook/Chart.yaml +++ b/packages/webhook/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: kontinuous-webhook -version: 1.161.8 +version: 1.161.9 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 876095c778..30224b5864 100644 --- a/packages/webhook/package.json +++ b/packages/webhook/package.json @@ -1,6 +1,6 @@ { "name": "~webhook", - "version": "1.161.8", + "version": "1.161.9", "description": "", "license": "MIT", "author": "", diff --git a/packages/webhook/values.yaml b/packages/webhook/values.yaml index d379113f29..7d47a2b959 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.161.8 +image: ghcr.io/socialgouv/kontinuous/webhook:v1.161.9 resources: limits: cpu: 2 diff --git a/plugins/contrib/Chart.yaml b/plugins/contrib/Chart.yaml index 183e1797c6..3f5c3f457e 100644 --- a/plugins/contrib/Chart.yaml +++ b/plugins/contrib/Chart.yaml @@ -1,63 +1,63 @@ apiVersion: v2 name: contrib -version: 1.161.8 +version: 1.161.9 dependencies: - name: rancher-namespace repository: file://./charts/rancher-namespace - version: 1.161.8 + version: 1.161.9 condition: global.rancherNamespaceEnabled,rancher-namespace.enabled - name: namespace repository: file://./charts/namespace - version: 1.161.8 + version: 1.161.9 condition: global.namespaceEnabled,namespace.enabled - name: security-policies repository: file://./charts/security-policies - version: 1.161.8 + version: 1.161.9 condition: global.securityPoliciesEnabled,security-policies.enabled - name: output-volume repository: file://./charts/output-volume - version: 1.161.8 + version: 1.161.9 condition: global.outputVolumeEnabled,output-volume.enabled - name: contrib-helpers repository: file://./charts/contrib-helpers - version: 1.161.8 + version: 1.161.9 - name: app repository: file://./charts/app - version: 1.161.8 + version: 1.161.9 condition: app.enabled - name: daemon repository: file://./charts/daemon - version: 1.161.8 + version: 1.161.9 condition: daemon.enabled - name: deactivate repository: file://./charts/deactivate - version: 1.161.8 + version: 1.161.9 condition: deactivate.enabled - name: hasura repository: file://./charts/hasura - version: 1.161.8 + version: 1.161.9 condition: hasura.enabled - name: jobs repository: file://./charts/jobs - version: 1.161.8 + version: 1.161.9 condition: jobs.enabled - name: job repository: file://./charts/job - version: 1.161.8 + version: 1.161.9 condition: job.enabled - name: metabase repository: file://./charts/metabase - version: 1.161.8 + version: 1.161.9 condition: metabase.enabled - name: oauth2-proxy repository: file://./charts/oauth2-proxy - version: 1.161.8 + version: 1.161.9 condition: oauth2-proxy.enabled - name: pgweb repository: file://./charts/pgweb - version: 1.161.8 + version: 1.161.9 condition: pgweb.enabled - name: redis repository: file://./charts/redis - version: 1.161.8 + version: 1.161.9 condition: redis.enabled diff --git a/plugins/contrib/charts/app/Chart.yaml b/plugins/contrib/charts/app/Chart.yaml index c09a07c5c9..1d6882cdf6 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.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/contrib-helpers/Chart.yaml b/plugins/contrib/charts/contrib-helpers/Chart.yaml index fc03437c39..fcac4d7130 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.161.8 +version: 1.161.9 type: library diff --git a/plugins/contrib/charts/daemon/Chart.yaml b/plugins/contrib/charts/daemon/Chart.yaml index f2b70a84b7..125987ea21 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.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/deactivate/Chart.yaml b/plugins/contrib/charts/deactivate/Chart.yaml index 84d9b2c0e6..4554058933 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.161.8 +version: 1.161.9 dependencies: - name: jobs repository: file://../jobs condition: 'true' alias: jobs-deactivate - version: 1.161.8 + version: 1.161.9 diff --git a/plugins/contrib/charts/hasura/Chart.yaml b/plugins/contrib/charts/hasura/Chart.yaml index 722ddf4f12..77d597a07f 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.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/job/Chart.yaml b/plugins/contrib/charts/job/Chart.yaml index 79d1c69cfc..03e5769908 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.161.8 +version: 1.161.9 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.8 + version: 1.161.9 diff --git a/plugins/contrib/charts/job/values.yaml b/plugins/contrib/charts/job/values.yaml index 422621750f..4ed127b87d 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.161.8 + degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/jobs/Chart.yaml b/plugins/contrib/charts/jobs/Chart.yaml index 91edb06962..039b28b16b 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.161.8 +version: 1.161.9 dependencies: - name: contrib-helpers repository: file://../contrib-helpers - version: 1.161.8 + version: 1.161.9 diff --git a/plugins/contrib/charts/jobs/values.yaml b/plugins/contrib/charts/jobs/values.yaml index 2233a5afd7..ac5c3f199e 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.161.8 +degitImage: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 # degitImagePullPolicy: Always degitImagePullPolicy: IfNotPresent diff --git a/plugins/contrib/charts/metabase/Chart.yaml b/plugins/contrib/charts/metabase/Chart.yaml index 0dadffc0b7..9e8bc1b80b 100644 --- a/plugins/contrib/charts/metabase/Chart.yaml +++ b/plugins/contrib/charts/metabase/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: metabase -version: 1.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/namespace/Chart.yaml b/plugins/contrib/charts/namespace/Chart.yaml index 60728262fb..cec49dabe0 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.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/oauth2-proxy/Chart.yaml b/plugins/contrib/charts/oauth2-proxy/Chart.yaml index 58121d045f..db6ac50933 100644 --- a/plugins/contrib/charts/oauth2-proxy/Chart.yaml +++ b/plugins/contrib/charts/oauth2-proxy/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: oauth2-proxy -version: 1.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/output-volume/Chart.yaml b/plugins/contrib/charts/output-volume/Chart.yaml index 6d77916d4f..15cf22e786 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.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/pgweb/Chart.yaml b/plugins/contrib/charts/pgweb/Chart.yaml index 99bff6b3a4..0a8b4b550f 100644 --- a/plugins/contrib/charts/pgweb/Chart.yaml +++ b/plugins/contrib/charts/pgweb/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: pgweb -version: 1.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/rancher-namespace/Chart.yaml b/plugins/contrib/charts/rancher-namespace/Chart.yaml index 0afd47a996..95ef95ab5b 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.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/redis/Chart.yaml b/plugins/contrib/charts/redis/Chart.yaml index 9bb194206a..32c0c6607a 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.161.8 +version: 1.161.9 diff --git a/plugins/contrib/charts/security-policies/Chart.yaml b/plugins/contrib/charts/security-policies/Chart.yaml index 48ace70e9b..d860716911 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.161.8 +version: 1.161.9 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 dac68dfc58..523f35be6a 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ └── 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.161.8 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ │ └── 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.161.8 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ └── 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.161.8 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ ├── degit-action (init) - │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ │ └── 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.161.8 + │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ ├── degit-repository (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ └── command: sh -c degit SocialGouv/template#k-mvp-mig-9 \\ /... │ ├── degit-action (init) - │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + │ │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ │ └── 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.161.8 +│ │ │ └── image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 │ │ └── 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.161.8 + │ ├── image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 │ └── 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 d541151f8f..fa781d7c66 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -360,7 +360,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -503,7 +503,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -647,7 +647,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -792,7 +792,7 @@ spec: restartPolicy: Never initContainers: - name: degit-repository - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -1018,7 +1018,7 @@ spec: name: staff initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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 3438108986..531ea392dd 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.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - "-c" @@ -2901,7 +2901,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - "-c" @@ -3037,7 +3037,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - "-c" @@ -3203,7 +3203,7 @@ spec: restartPolicy: Never initContainers: - name: degit-action - image: ghcr.io/socialgouv/kontinuous/degit:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - "-c" @@ -3339,7 +3339,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - "-c" @@ -3491,7 +3491,7 @@ spec: restartPolicy: Never initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 command: - sh - "-c" diff --git a/plugins/contrib/debug-manifests/tests/samples/www.yaml b/plugins/contrib/debug-manifests/tests/samples/www.yaml index 6b54778764..fc6f36c943 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.161.8 + image: ghcr.io/socialgouv/kontinuous/degit:v1.161.9 imagePullPolicy: IfNotPresent command: - sh @@ -327,7 +327,7 @@ spec: memory: 0 initContainers: - name: kontinuous-wait-needs - image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8 + image: ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9 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 b45f11e9e1..837adcb20a 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.161.8 + image: ghcr.io/socialgouv/kontinuous:v1.161.9 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 af61072ee7..7040570038 100644 --- a/plugins/contrib/patches/05.1-needs-using-initcontainers.js +++ b/plugins/contrib/patches/05.1-needs-using-initcontainers.js @@ -1,4 +1,4 @@ -const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.8" +const kontinuousNeedsImage = "ghcr.io/socialgouv/kontinuous/wait-needs:v1.161.9" // 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 5b91ede6b1..d692c3f743 100644 --- a/plugins/fabrique/Chart.yaml +++ b/plugins/fabrique/Chart.yaml @@ -1,18 +1,18 @@ apiVersion: v2 name: fabrique -version: 1.161.8 +version: 1.161.9 dependencies: - name: contrib repository: file://./charts/contrib - version: 1.161.8 + version: 1.161.9 condition: contrib.enabled - name: pg repository: file://./charts/pg - version: 1.161.8 + version: 1.161.9 condition: pg.enabled - name: maildev repository: file://./charts/maildev - version: 1.161.8 + version: 1.161.9 condition: maildev.enabled - name: keycloakx repository: https://codecentric.github.io/helm-charts