Skip to content

CI: use ghcr container images #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions ci/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- dependency-bumps
plan:
- in_parallel:
- get: bosh-cli-registry-image
- get: bosh-integration-image
- get: postgres-release
- get: postgres-13-src
trigger: true
Expand All @@ -43,7 +43,7 @@ jobs:
- yq_linux_amd64
- task: bump-postgres-13-package
file: postgres-release/ci/tasks/bump-postgres-packages/task.yml
image: bosh-cli-registry-image
image: bosh-integration-image
input_mapping:
postgres-src: postgres-13-src
params:
Expand All @@ -55,7 +55,7 @@ jobs:
secret_access_key: ((postgres-release-blobstore-user.password))
- task: bump-postgres-15-package
file: postgres-release/ci/tasks/bump-postgres-packages/task.yml
image: bosh-cli-registry-image
image: bosh-integration-image
input_mapping:
postgres-src: postgres-15-src
params:
Expand All @@ -67,7 +67,7 @@ jobs:
secret_access_key: ((postgres-release-blobstore-user.password))
- task: bump-postgres-16-package
file: postgres-release/ci/tasks/bump-postgres-packages/task.yml
image: bosh-cli-registry-image
image: bosh-integration-image
input_mapping:
postgres-src: postgres-16-src
params:
Expand All @@ -79,7 +79,7 @@ jobs:
secret_access_key: ((postgres-release-blobstore-user.password))
- task: bump-yq-package
file: postgres-release/ci/tasks/bump-yq-packages/task.yml
image: bosh-cli-registry-image
image: bosh-integration-image
params:
PRIVATE_YML: |
blobstore:
Expand Down Expand Up @@ -163,14 +163,14 @@ jobs:
- in_parallel:
- get: version
trigger: true
- get: bosh-cli-registry-image
- get: bosh-integration-image
- get: postgres-release
passed:
- run-acceptance-tests
- get: release-notes
- get: bosh-shared-ci
- task: create-final-release
image: bosh-cli-registry-image
image: bosh-integration-image
file: bosh-shared-ci/tasks/release/create-final-release.yml
input_mapping:
release_repo: postgres-release
Expand Down Expand Up @@ -230,12 +230,13 @@ resources:
repository: bosh-backup-and-restore
access_token: ((github_public_repo_token))

- name: bosh-cli-registry-image
- name: bosh-integration-image
type: registry-image
source:
repository: bosh/cli
username: ((dockerhub_username))
password: ((dockerhub_password))
repository: ghcr.io/cloudfoundry/bosh/integration
tag: main
username: ((github_read_write_packages.username))
password: ((github_read_write_packages.password))

- name: bosh-warden-cpi-registry-image
type: registry-image
Expand All @@ -254,9 +255,9 @@ resources:
- name: golang-release-registry-image
type: registry-image
source:
repository: bosh/golang-release
username: ((dockerhub_username))
password: ((dockerhub_password))
repository: ghcr.io/cloudfoundry/bosh/golang-release
username: ((github_read_write_packages.username))
password: ((github_read_write_packages.password))

- name: bosh-shared-ci
type: git
Expand Down