Skip to content

Commit

Permalink
ci(shared): bump vendored ci files
Browse files Browse the repository at this point in the history
  • Loading branch information
galoybot committed Apr 16, 2024
1 parent 220056c commit 8a26524
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
8 changes: 4 additions & 4 deletions ci/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- git:
commitTitle: 'fix: add repo input to open chart pr task (#39)'
sha: 64581226f53d8bfcca1f96eec1d5e76318f859d9
commitTitle: 'chore: use kaniko builder in shared build task (#50)'
sha: 3d1a7c11c7967952e84231e39aa5425ad704d93d
path: .
path: ../.github/workflows/vendor
- contents:
- git:
commitTitle: 'fix: add repo input to open chart pr task (#39)'
sha: 64581226f53d8bfcca1f96eec1d5e76318f859d9
commitTitle: 'chore: use kaniko builder in shared build task (#50)'
sha: 3d1a7c11c7967952e84231e39aa5425ad704d93d
path: .
path: ./vendor
kind: LockConfig
4 changes: 2 additions & 2 deletions ci/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ directories:
- path: . # Copy this folder out to ..
git:
url: https://github.com/GaloyMoney/concourse-shared.git
ref: 64581226f53d8bfcca1f96eec1d5e76318f859d9
ref: 3d1a7c11c7967952e84231e39aa5425ad704d93d
includePaths:
- shared/actions/*
excludePaths:
Expand All @@ -20,7 +20,7 @@ directories:
- path: .
git:
url: https://github.com/GaloyMoney/concourse-shared.git
ref: 64581226f53d8bfcca1f96eec1d5e76318f859d9
ref: 3d1a7c11c7967952e84231e39aa5425ad704d93d
includePaths:
- shared/ci/**/*
excludePaths:
Expand Down
20 changes: 13 additions & 7 deletions ci/vendor/pipeline-fragments.lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,21 +265,27 @@ plan:
run:
path: pipeline-tasks/ci/vendor/tasks/docker-prep-docker-build-env.sh
- task: build
privileged: true
config:
platform: linux
image_resource:
type: registry-image
source:
repository: vito/oci-build-task
repository: gcr.io/kaniko-project/executor
tag: debug
inputs:
- name: repo
outputs:
- name: image
params:
CONTEXT: repo
run:
path: build
path: /kaniko/executor
args:
- --dockerfile=Dockerfile
- --context=repo
- --use-new-run
- --single-snapshot
- --cache=false
- --no-push
- --tar-path=image/image.tar
- put: edge-image
params:
image: image/image.tar
Expand Down Expand Up @@ -478,13 +484,13 @@ source:
private_key: #@ data.values.github_private_key
#@ end

#@ def versioned_image_resource():
#@ def versioned_image_resource(publicRepo = True):
name: versioned-image
type: registry-image
source:
username: #@ data.values.docker_registry_user
password: #@ data.values.docker_registry_password
repository: #@ public_docker_registry() + "/" + data.values.gh_repository
repository: #@ public_docker_registry() + "/" + data.values.gh_repository if publicRepo else private_docker_registry() + "/" + data.values.gh_repository
#@ end

#@ def gh_release_resource():
Expand Down

0 comments on commit 8a26524

Please sign in to comment.