From 1ec60e354c5ab887c9d55ded2d3548a3f4298e45 Mon Sep 17 00:00:00 2001 From: CI Bot Date: Tue, 31 Oct 2023 07:04:24 +0000 Subject: [PATCH] ci(shared): bump vendored ci files --- ci/vendir.lock.yml | 8 ++++---- ci/vendir.yml | 4 ++-- ci/vendor/pipeline-fragments.lib.yml | 8 ++++++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ci/vendir.lock.yml b/ci/vendir.lock.yml index 8c649779..2e5acc07 100644 --- a/ci/vendir.lock.yml +++ b/ci/vendir.lock.yml @@ -2,14 +2,14 @@ apiVersion: vendir.k14s.io/v1alpha1 directories: - contents: - git: - commitTitle: 'chore: more generic test-on-docker-host' - sha: 0c17e2d69a71a42b83b8fbd0136abd27b8d97a74 + commitTitle: 'feat: allow public or private repo selection (#34)' + sha: 53fc9dd805d3574d200e8e6e99f856c0912b52a8 path: . path: ../.github/workflows/vendor - contents: - git: - commitTitle: 'chore: more generic test-on-docker-host' - sha: 0c17e2d69a71a42b83b8fbd0136abd27b8d97a74 + commitTitle: 'feat: allow public or private repo selection (#34)' + sha: 53fc9dd805d3574d200e8e6e99f856c0912b52a8 path: . path: ./vendor kind: LockConfig diff --git a/ci/vendir.yml b/ci/vendir.yml index aa5d1fd7..91016765 100644 --- a/ci/vendir.yml +++ b/ci/vendir.yml @@ -8,7 +8,7 @@ directories: - path: . # Copy this folder out to .. git: url: https://github.com/GaloyMoney/concourse-shared.git - ref: 0c17e2d69a71a42b83b8fbd0136abd27b8d97a74 + ref: 53fc9dd805d3574d200e8e6e99f856c0912b52a8 includePaths: - shared/actions/* excludePaths: @@ -20,7 +20,7 @@ directories: - path: . git: url: https://github.com/GaloyMoney/concourse-shared.git - ref: 0c17e2d69a71a42b83b8fbd0136abd27b8d97a74 + ref: 53fc9dd805d3574d200e8e6e99f856c0912b52a8 includePaths: - shared/ci/**/* excludePaths: diff --git a/ci/vendor/pipeline-fragments.lib.yml b/ci/vendor/pipeline-fragments.lib.yml index d7323270..5bb6ab16 100644 --- a/ci/vendor/pipeline-fragments.lib.yml +++ b/ci/vendor/pipeline-fragments.lib.yml @@ -4,6 +4,10 @@ #@ return "us.gcr.io/galoy-org" #@ end +#@ def private_docker_registry(): +#@ return "gcr.io/galoy-org" +#@ end + #@ def nodejs_concourse_image(): #@ return public_docker_registry() + "/nodejs-concourse" #@ end @@ -402,14 +406,14 @@ source: private_key: #@ data.values.github_private_key #@ end -#@ def edge_image_resource(): +#@ def edge_image_resource(publicRepo = True): name: edge-image type: registry-image source: tag: edge username: #@ data.values.docker_registry_user password: #@ data.values.docker_registry_password - repository: #@ public_docker_registry() + "/" + data.values.gh_repository + repository: #@ public_docker_registry() if publicRepo else private_docker_registry() + "/" + data.values.gh_repository #@ end #@ def nodejs_deps_resource(webhook = False):