Skip to content

Commit

Permalink
Update ABS to v1.2.2 and use gsoci.azurecr.io for images (#488)
Browse files Browse the repository at this point in the history
* Update ABS to v1.2.2 and use gsoci.azurecr.io for image registries

* Update CHANGELOG.md
  • Loading branch information
uvegla authored Jan 10, 2024
1 parent b29faa0 commit 525885f
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Update `app-build-suite` version to [`v1.2.2`](https://github.com/giantswarm/app-build-suite/releases/tag/v1.2.2).
- Switch images to be pulled from `gsoci.azurecr.io` instead of `quay.io`

## [4.37.0] - 2023-12-20

- `push-to-registries` job changes:
Expand Down
2 changes: 1 addition & 1 deletion docs/job/push-to-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ workflows:
- architect/push-to-docker:
context: "architect"
name: "push-REPOSITORY-to-quay"
image: "quay.io/giantswarm/REPOSITORY"
image: "gsoci.azurecr.io/giantswarm/REPOSITORY"
username_envar: "QUAY_USERNAME"
password_envar: "QUAY_PASSWORD"
build-context: "."
Expand Down
2 changes: 1 addition & 1 deletion docs/job/run-tests-with-ats.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ This can be circumvented by also setting the parameter [`app-test-suite_containe

### app-test-suite_container_tag

Container tag of app-test-suite to use (check [quay.io/giantswarm/app-test-suite](https://quay.io/giantswarm/app-test-suite)).
Container tag of app-test-suite to use (check gsoci.azurecr.io/giantswarm/app-test-suite).
This parameter allows to specify the used container tag of app-test-suite.

(Default: "0.2.2")
Expand Down
2 changes: 1 addition & 1 deletion src/commands/integration-test-create-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ steps:
for i in $(seq 1 $tries) ; do
echo "====> Attempt $i: Creating kind cluster"
set +e
kind create cluster --config kind-config --image quay.io/giantswarm/kind-node:<< parameters.kubernetes-version >>
kind create cluster --config kind-config --image gsoci.azurecr.io/giantswarm/kind-node:<< parameters.kubernetes-version >>
ret=$?
set -e
[[ $ret -eq 0 ]] && exit $ret
Expand Down
2 changes: 1 addition & 1 deletion src/commands/run-tests-with-ats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ parameters:
description: "Version of app-test-suite dats.sh container wrapper to use (git tag or commit)"
type: string
app-test-suite_container_tag:
description: "Container tag of app-test-suite to use (check quay.io/giantswarm/app-test-suite)"
description: "Container tag of app-test-suite to use (check gsoci.azurecr.io/giantswarm/app-test-suite)"
type: string
additional_app-test-suite_flags:
description: "Additional app-test-suite flags to use"
Expand Down
2 changes: 1 addition & 1 deletion src/executors/app-build-suite.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker:
- entrypoint: /bin/bash
image: quay.io/giantswarm/app-build-suite:1.1.3-circleci
image: gsoci.azurecr.io/giantswarm/app-build-suite:1.2.2-circleci
2 changes: 1 addition & 1 deletion src/executors/architect.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker:
- entrypoint: /bin/bash
image: quay.io/giantswarm/architect:6.14.0
image: gsoci.azurecr.io/giantswarm/architect:6.14.0
2 changes: 1 addition & 1 deletion src/executors/gitleaks.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker:
- image: quay.io/giantswarm/gitleaks:v3.3.0
- image: gsoci.azurecr.io/giantswarm/gitleaks:v3.3.0
entrypoint: /bin/bash
2 changes: 1 addition & 1 deletion src/jobs/push-to-docker.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
parameters:
image:
description: 'Name of the docker image, without tag. e.g. "quay.io/my-org/my-repo".'
description: 'Name of the docker image, without tag. e.g. "gsoci.azurecr.io/my-org/my-repo".'
type: "string"
password_envar:
default: "ARCHITECT_DOCKER_REGISTRY_PASSWORD"
Expand Down
2 changes: 1 addition & 1 deletion src/jobs/run-tests-with-ats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ parameters:
type: string
default: "v0.5.0"
app-test-suite_container_tag:
description: "Container tag of app-test-suite to use (check quay.io/giantswarm/app-test-suite)"
description: "Container tag of app-test-suite to use (check gsoci.azurecr.io/giantswarm/app-test-suite)"
type: string
default: "0.5.0"
additional_app-test-suite_flags:
Expand Down

0 comments on commit 525885f

Please sign in to comment.