Skip to content
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
45 changes: 38 additions & 7 deletions ci/pipelines/bosh-bootloader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource_types:

resources:
- name: docker-bbl-deployment
type: docker-image
type: registry-image
source:
repository: cloudfoundry/bbl-deployment
username: ((foundationalinfrastructure-dockerhub_username))
Expand Down Expand Up @@ -168,7 +168,6 @@ resources:
tag: main
username: ((dockerhub_username))
password: ((dockerhub_password))
email: cf-release-integration+dockerhub-push-bot@pivotal.io

- name: cf-deployment-concourse-tasks-docker-image
type: registry-image
Expand Down Expand Up @@ -228,10 +227,26 @@ jobs:
- get: bosh-bootloader
- get: bbl-release-official
trigger: true
- task: build-bbl-deployment-image
privileged: true
config:
platform: linux
image_resource:
type: registry-image
source:
repository: concourse/oci-build-task
Comment thread
aramprice marked this conversation as resolved.
inputs:
- name: bosh-bootloader
outputs:
- name: image
params:
DOCKERFILE: bosh-bootloader/ci/dockerfiles/deployment/Dockerfile
CONTEXT: bosh-bootloader/ci/dockerfiles/deployment/
run:
path: build
- put: docker-bbl-deployment
params:
# tag: main
build: bosh-bootloader/ci/dockerfiles/deployment/
image: image/image.tar

- name: sync-version-bump-deployments
serial: true
Expand Down Expand Up @@ -444,11 +459,27 @@ jobs:
params:
DOCKERFILE: dockerfiles/cf-deployment-concourse-tasks-bbl-dev/Dockerfile

- task: build-bbl-dev-image
privileged: true
config:
platform: linux
image_resource:
type: registry-image
source:
repository: concourse/oci-build-task
inputs:
- name: docker-workspace
outputs:
- name: image
params:
DOCKERFILE: docker-workspace/Dockerfile
CONTEXT: docker-workspace
run:
path: build

- put: cf-deployment-concourse-tasks-bbl-dev
params:
build: docker-workspace
cache: false
# tag: main
image: image/image.tar

# - name: bbl-aws-cf-bump-deployments
# serial: true
Expand Down
Loading