From f3e90506fbbe4b5435d0591810ff185076c7dbd5 Mon Sep 17 00:00:00 2001 From: Manda-supraja26 Date: Fri, 26 Apr 2024 12:33:45 +0530 Subject: [PATCH 1/2] Migrating dashboards to v2 Version --- .github/workflows/release.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 47178ee..3ff6b72 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,4 +25,4 @@ jobs: QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }} - name: Build & push syncer image - run: make build-syncer-image push-syncer-image + run: make build-syncer-image v2 push-syncer-image diff --git a/Makefile b/Makefile index 67b9c17..3303400 100644 --- a/Makefile +++ b/Makefile @@ -62,7 +62,7 @@ $(OUTPUTDIR)/%.json: $(TEMPLATESDIR)/%.jsonnet v2: all @echo "Rendered the v2 dashboards with latest grafonnet library" -build-syncer-image: build +build-syncer-image: v2 podman build --platform=${PLATFORM} -f Dockerfile --manifest=${SYNCER_IMG_TAG} . push-syncer-image: From 2e00625002871e50f723226c1be9f90ea1e62a49 Mon Sep 17 00:00:00 2001 From: Manda-supraja26 Date: Mon, 29 Apr 2024 21:28:21 +0530 Subject: [PATCH 2/2] code fix in release.yml file --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ff6b72..365c337 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,4 +25,4 @@ jobs: QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }} - name: Build & push syncer image - run: make build-syncer-image v2 push-syncer-image + run: make v2 build-syncer-image push-syncer-image