From 684e555a65c3c90afc3880edb3b8ff6c57f6dcf6 Mon Sep 17 00:00:00 2001 From: ilia-medvedev-codefresh Date: Tue, 2 Jul 2024 14:48:09 +0300 Subject: [PATCH] fix - pipeline clone correct revision on release (#3) --- codefresh.yaml | 41 +++++++++++++++++++++-------------------- v1/plugin.yaml | 2 +- v2/plugin.yaml | 2 +- 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/codefresh.yaml b/codefresh.yaml index 07c3cef..d3ef1dc 100644 --- a/codefresh.yaml +++ b/codefresh.yaml @@ -5,35 +5,43 @@ version: "1.0" mode: parallel # Stages can help you organize your steps in stages stages: + - "prepare" - "clone" - "build" - "test" steps: - clone: - title: "Cloning repository" - type: "git-clone" - repo: "codefresh-contrib/vcluster-prometheus-operator-plugin" - revision: "${{CF_BRANCH}}" - git: "codefresh-git-integration-contrib" - stage: "clone" - export_image_tag: - title: "Export image tag" + preapre_env: + title: "Prepare variables" type: freestyle - stage: build + stage: prepare image: alpine commands: - | export isRelease="${{RELEASE}}" if [[ "$isRelease" == "true" ]]; then export IMAGE_TAG="${{CF_RELEASE_TAG}}" + export CLONE_REVISION="${{CF_RELEASE_TAG}}" else export IMAGE_TAG="${{CF_BRANCH_TAG_NORMALIZED_LOWER_CASE}}" + export CLONE_REVISION="${{CF_BRANCH}}" fi - cf_export IMAGE_TAG + cf_export IMAGE_TAG CLONE_REVISION + clone: + title: "Cloning repository" + type: "git-clone" + repo: "codefresh-contrib/vcluster-prometheus-operator-plugin" + revision: "${{CLONE_REVISION}}" + git: "codefresh-git-integration-contrib" + stage: "clone" + when: + steps: + - name: preapre_env + on: + - success build_v1: title: "Build v1" @@ -50,16 +58,13 @@ steps: builder: driver_opts: "image=moby/buildkit:v0.14.1" cache_from: - - ghcr.io/${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}:v1-${{CF_BRANCH_TAG_NORMALIZED_LOWER_CASE}} + - ghcr.io/${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}:v1-${{IMAGE_TAG}} - ghcr.io/${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}:v1-main when: steps: - name: clone on: - success - - name: export_image_tag - on: - - success build_v2: title: "Build v2" @@ -76,7 +81,7 @@ steps: builder: driver_opts: "image=moby/buildkit:v0.14.1" cache_from: - - ghcr.io/${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}:v2-${{CF_BRANCH_TAG_NORMALIZED_LOWER_CASE}} + - ghcr.io/${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}:v2-${{IMAGE_TAG}} - ghcr.io/${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}:v2-main when: steps: @@ -86,10 +91,6 @@ steps: - name: build_v1 on: - success - - name: export_image_tag - on: - - success - create_clusters: title: 'Create k3d clusters' diff --git a/v1/plugin.yaml b/v1/plugin.yaml index 9cca30e..bf0778d 100644 --- a/v1/plugin.yaml +++ b/v1/plugin.yaml @@ -2,7 +2,7 @@ # with the other vcluster values during vcluster create or helm install. plugin: prometheus-operator-resources: - image: ilmedcodefreh/vcluster-prom-operator-plugin + image: ilmedcodefreh/vcluster-prom-operator-plugin:v1-v0.1.0 imagePullPolicy: IfNotPresent rbac: role: diff --git a/v2/plugin.yaml b/v2/plugin.yaml index c6d0af0..511a051 100644 --- a/v2/plugin.yaml +++ b/v2/plugin.yaml @@ -2,7 +2,7 @@ # with the other vcluster values during vcluster create or helm install. plugins: prometheus-operator-resources: - image: ilmedcodefreh/vcluster-prom-operator-plugin + image: ilmedcodefreh/vcluster-prom-operator-plugin:v2-v0.1.0 imagePullPolicy: IfNotPresent rbac: role: