From 4caa637698e9c5d30fcc70aedd4e6640c9e38469 Mon Sep 17 00:00:00 2001 From: Taka Nishida Date: Mon, 6 Oct 2025 14:56:40 +0900 Subject: [PATCH] Test auto-deploy-image that fixes postgresql image pull problem --- .../templates/Jobs/DAST-Default-Branch-Deploy.gitlab-ci.yml | 2 +- lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml | 4 +++- lib/gitlab/ci/templates/Jobs/Deploy.latest.gitlab-ci.yml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/gitlab/ci/templates/Jobs/DAST-Default-Branch-Deploy.gitlab-ci.yml b/lib/gitlab/ci/templates/Jobs/DAST-Default-Branch-Deploy.gitlab-ci.yml index 5f97978ec4a056..57739eb51cdef5 100644 --- a/lib/gitlab/ci/templates/Jobs/DAST-Default-Branch-Deploy.gitlab-ci.yml +++ b/lib/gitlab/ci/templates/Jobs/DAST-Default-Branch-Deploy.gitlab-ci.yml @@ -1,5 +1,5 @@ variables: - DAST_AUTO_DEPLOY_IMAGE_VERSION: 'v2.130.0' + DAST_AUTO_DEPLOY_IMAGE_VERSION: 'fix-broken-postgresql-image-pull-failure' .dast-auto-deploy: image: "${CI_TEMPLATE_REGISTRY_HOST}/gitlab-org/cluster-integration/auto-deploy-image:${DAST_AUTO_DEPLOY_IMAGE_VERSION}" diff --git a/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml b/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml index b747e82eb73f2a..194bc95bb26def 100644 --- a/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml +++ b/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml @@ -1,5 +1,7 @@ variables: - AUTO_DEPLOY_IMAGE_VERSION: 'v2.130.0' + AUTO_DEPLOY_IMAGE_VERSION: 'fix-broken-postgresql-image-pull-failure' + +#registry.gitlab.com/gitlab-org/cluster-integration/auto-deploy-image/fix-broken-postgresql-image-pull-failure .auto-deploy: image: "${CI_TEMPLATE_REGISTRY_HOST}/gitlab-org/cluster-integration/auto-deploy-image:${AUTO_DEPLOY_IMAGE_VERSION}" diff --git a/lib/gitlab/ci/templates/Jobs/Deploy.latest.gitlab-ci.yml b/lib/gitlab/ci/templates/Jobs/Deploy.latest.gitlab-ci.yml index 9fdd09c17614eb..a57df9bf81ee96 100644 --- a/lib/gitlab/ci/templates/Jobs/Deploy.latest.gitlab-ci.yml +++ b/lib/gitlab/ci/templates/Jobs/Deploy.latest.gitlab-ci.yml @@ -1,5 +1,5 @@ variables: - AUTO_DEPLOY_IMAGE_VERSION: 'v2.130.0' + AUTO_DEPLOY_IMAGE_VERSION: 'fix-broken-postgresql-image-pull-failure' .auto-deploy: image: "${CI_TEMPLATE_REGISTRY_HOST}/gitlab-org/cluster-integration/auto-deploy-image:${AUTO_DEPLOY_IMAGE_VERSION}" -- GitLab