From 30cbeafb4b6663f93e8db9e59f0467bdd6b76b66 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Wed, 16 Oct 2024 19:02:01 +0200 Subject: [PATCH 01/11] Add test workflow --- .github/workflows/test.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..78eb2ae --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,37 @@ +name: Test + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + docker-build: + runs-on: ubuntu-latest + env: + IMAGE: danihodovic/celery-exporter + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Prepare Image Metadata + id: metadata + uses: docker/metadata-action@v5 + with: + images: ${{ env.IMAGE }} + - name: Set Up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set Up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Test Multi-Arch Building Of Image + uses: docker/build-push-action@v6 + with: + cache-from: type=gha + cache-to: type=gha,mode=max + context: . + labels: ${{ steps.metadata.outputs.labels }} + platforms: linux/amd64,linux/arm64 + push: false + tags: ${{ steps.metadata.outputs.tags }} From c4941f3d35a86bf538840c44ce8ed53b94d3ea31 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Wed, 16 Oct 2024 19:07:53 +0200 Subject: [PATCH 02/11] Add release workflow --- .github/workflows/release.yml | 61 +++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..84113a1 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,61 @@ +name: Release + +on: + push: + tags: + - '[0-9]+.[0-9]+.[0-9]+' + +jobs: + github: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Create Release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Version ${{ github.ref }} + draft: false + prerelease: false + + docker-hub: + needs: github + runs-on: ubuntu-latest + env: + IMAGE: danihodovic/celery-exporter + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Prepare Image Metadata + id: metadata + uses: docker/metadata-action@v5 + with: + images: ${{ env.IMAGE }} + - name: Set Up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set Up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login To Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Build, tag, and push image to Docker Hub + uses: docker/build-push-action@v6 + with: + cache-from: type=gha + cache-to: type=gha,mode=max + context: . + labels: ${{ steps.metadata.outputs.labels }} + platforms: linux/amd64,linux/arm64 + push: true + tags: ${{ steps.metadata.outputs.tags }} + - name: Update Description On Docker Hub Description + uses: peter-evans/dockerhub-description@v4 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + repository: ${{ env.IMAGE }} From d233b351ee6c90adfb69ea58b1b33c4fa8d4d181 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Wed, 16 Oct 2024 19:31:14 +0200 Subject: [PATCH 03/11] Move helm-test job to test workflow --- .github/workflows/helm-test.yml | 45 --------------------------------- .github/workflows/test.yml | 35 +++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 45 deletions(-) delete mode 100644 .github/workflows/helm-test.yml diff --git a/.github/workflows/helm-test.yml b/.github/workflows/helm-test.yml deleted file mode 100644 index bc70c0d..0000000 --- a/.github/workflows/helm-test.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Lint and Test Charts - -on: pull_request - -jobs: - lint-test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up Helm - uses: azure/setup-helm@v4.2.0 - with: - version: v3.14.4 - - - uses: actions/setup-python@v5 - with: - python-version: "3.x" - check-latest: true - - - name: Set up chart-testing - uses: helm/chart-testing-action@v2.6.1 - - - name: Run chart-testing (list-changed) - id: list-changed - run: | - changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) - if [[ -n "$changed" ]]; then - echo "changed=true" >> "$GITHUB_OUTPUT" - fi - - - name: Run chart-testing (lint) - if: steps.list-changed.outputs.changed == 'true' - run: ct lint --target-branch ${{ github.event.repository.default_branch }} - - - name: Create kind cluster - if: steps.list-changed.outputs.changed == 'true' - uses: helm/kind-action@v1.10.0 - - - name: Run chart-testing (install) - if: steps.list-changed.outputs.changed == 'true' - run: ct install --target-branch ${{ github.event.repository.default_branch }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 78eb2ae..641eb8d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,3 +35,38 @@ jobs: platforms: linux/amd64,linux/arm64 push: false tags: ${{ steps.metadata.outputs.tags }} + + helm-chart: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Set Up Helm + uses: azure/setup-helm@v4.2.0 + with: + version: v3.14.4 + - name: Set Up Python + uses: actions/setup-python@v5 + with: + python-version: "3.x" + check-latest: true + - name: Set Up Chart-Testing + uses: helm/chart-testing-action@v2.6.1 + - name: Run Chart-Testing (List-Changed) + id: list-changed + run: | + changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) + if [[ -n "$changed" ]]; then + echo "changed=true" >> "$GITHUB_OUTPUT" + fi + - name: Run Chart-Testing (Lint) + if: steps.list-changed.outputs.changed == 'true' + run: ct lint --target-branch ${{ github.event.repository.default_branch }} + - name: Create Kind Cluster + if: steps.list-changed.outputs.changed == 'true' + uses: helm/kind-action@v1.10.0 + - name: Run Chart-Testing (Install) + if: steps.list-changed.outputs.changed == 'true' + run: ct install --target-branch ${{ github.event.repository.default_branch }} From 33b96f349f75e6c96f4cf847e4a743065867c4c1 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Wed, 16 Oct 2024 19:35:14 +0200 Subject: [PATCH 04/11] Move ci/lint job to test workflow --- .github/workflows/ci.yml | 45 -------------------------------------- .github/workflows/test.yml | 39 +++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 45 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f474cc8..d614f34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,51 +8,6 @@ on: - master jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-python@v5 - id: setup-python - with: - python-version: 3.12 - - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - virtualenvs-create: true - virtualenvs-in-project: true - installer-parallel: true - - - name: Load cached venv - id: cached-poetry-dependencies - uses: actions/cache@v4 - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - - - name: Install dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: | - poetry install --no-interaction --no-root - - - name: Format - run: | - source .venv/bin/activate - black . --check - - - name: Type Check - run: | - source .venv/bin/activate - mypy . - - - name: Lint - run: | - source .venv/bin/activate - pylint $(git ls-files -- '*.py' ':!:**/migrations/*.py') - test: name: Test runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 641eb8d..26e9e78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,3 +70,42 @@ jobs: - name: Run Chart-Testing (Install) if: steps.list-changed.outputs.changed == 'true' run: ct install --target-branch ${{ github.event.repository.default_branch }} + + pylint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set Up Python + uses: actions/setup-python@v5 + id: setup-python + with: + python-version: 3.12 + - name: Install Poetry + uses: snok/install-poetry@v1 + with: + virtualenvs-create: true + virtualenvs-in-project: true + installer-parallel: true + - name: Load Cached Venv + id: cached-poetry-dependencies + uses: actions/cache@v4 + with: + path: .venv + key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} + - name: Install Dependencies + if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + run: | + poetry install --no-interaction --no-root + - name: Format + run: | + source .venv/bin/activate + black . --check + - name: Type Check + run: | + source .venv/bin/activate + mypy . + - name: Run Pylint + run: | + source .venv/bin/activate + pylint $(git ls-files -- '*.py' ':!:**/migrations/*.py') From 953e956ee9918184886b5f2793452579255ea332 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Wed, 16 Oct 2024 19:40:38 +0200 Subject: [PATCH 05/11] Move ci/test job to test workflow --- .github/workflows/ci.yml | 55 -------------------------------------- .github/workflows/test.yml | 42 +++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 55 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index d614f34..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: CI -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - test: - name: Test - runs-on: ubuntu-latest - services: - redis: - image: redis:6 - ports: ['6379:6379'] - rabbitmq: - image: rabbitmq:3 - ports: ['5672:5672'] - strategy: - matrix: - broker: [memory, redis, rabbitmq] - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-python@v5 - id: setup-python - with: - python-version: 3.12 - - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - virtualenvs-create: true - virtualenvs-in-project: true - installer-parallel: true - - - name: Load cached venv - id: cached-poetry-dependencies - uses: actions/cache@v4 - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - - - name: Install dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: | - poetry install --no-interaction --no-root - source .venv/bin/activate - - - name: Test - run: | - source .venv/bin/activate - pytest --broker=${{ matrix.broker }} --ignore .poetry --cov diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 26e9e78..d39af2b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -109,3 +109,45 @@ jobs: run: | source .venv/bin/activate pylint $(git ls-files -- '*.py' ':!:**/migrations/*.py') + + pytest: + runs-on: ubuntu-latest + services: + redis: + image: redis:6 + ports: ['6379:6379'] + rabbitmq: + image: rabbitmq:3 + ports: ['5672:5672'] + strategy: + matrix: + broker: [memory, redis, rabbitmq] + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set Up Python + uses: actions/setup-python@v5 + id: setup-python + with: + python-version: 3.12 + - name: Install Poetry + uses: snok/install-poetry@v1 + with: + virtualenvs-create: true + virtualenvs-in-project: true + installer-parallel: true + - name: Load Cached Venv + id: cached-poetry-dependencies + uses: actions/cache@v4 + with: + path: .venv + key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} + - name: Install Dependencies + if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + run: | + poetry install --no-interaction --no-root + source .venv/bin/activate + - name: Run Pytest + run: | + source .venv/bin/activate + pytest --broker=${{ matrix.broker }} --ignore .poetry --cov From 4004cfa393548c7ec68b6ef2f6a95382ec0c1e39 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Wed, 16 Oct 2024 19:43:38 +0200 Subject: [PATCH 06/11] Move helm-release/release job to release workflow --- .github/workflows/helm-release.yml | 35 ------------------------------ .github/workflows/release.yml | 24 ++++++++++++++++++++ 2 files changed, 24 insertions(+), 35 deletions(-) delete mode 100644 .github/workflows/helm-release.yml diff --git a/.github/workflows/helm-release.yml b/.github/workflows/helm-release.yml deleted file mode 100644 index 2586449..0000000 --- a/.github/workflows/helm-release.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Release Charts - -on: - push: - branches: - - master - -jobs: - release: - # depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions - # see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token - permissions: - contents: write - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Configure Git - run: | - git config user.name "$GITHUB_ACTOR" - git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - - - name: Set up Helm - uses: azure/setup-helm@v4.2.0 - with: - version: v3.14.4 - - - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.6.0 - env: - CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-chart-{{ .Version }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84113a1..a5f60d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,3 +59,27 @@ jobs: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_TOKEN }} repository: ${{ env.IMAGE }} + + helm-chart: + runs-on: ubuntu-latest + needs: github + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Configure Git + run: | + git config user.name "$GITHUB_ACTOR" + git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + - name: Set Up Helm + uses: azure/setup-helm@v4.2.0 + with: + version: v3.14.4 + - name: Run Chart-Releaser + uses: helm/chart-releaser-action@v1.6.0 + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-chart-{{ .Version }}" From 353ce08546c3bc8fe641f503c0905e0a09ce3ac4 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Wed, 16 Oct 2024 19:53:41 +0200 Subject: [PATCH 07/11] Combine push-image-ghcr/build-and-push-image job with release/docker-hub-release --- .github/workflows/push-image-ghcr.yml | 54 --------------------------- .github/workflows/release.yml | 13 ++++++- 2 files changed, 12 insertions(+), 55 deletions(-) delete mode 100644 .github/workflows/push-image-ghcr.yml diff --git a/.github/workflows/push-image-ghcr.yml b/.github/workflows/push-image-ghcr.yml deleted file mode 100644 index 5e60097..0000000 --- a/.github/workflows/push-image-ghcr.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Create and publish a Docker image to ghcr.io - -on: - push: - tags: - - "v[0-9]+.[0-9]+.[0-9]+" - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} - -jobs: - build-and-push-image: - runs-on: ubuntu-latest - permissions: - contents: write - packages: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Log in to the Container registry - uses: docker/login-action@v3 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@v5 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - tags: | - type=sha,enable=true,priority=100,prefix=,suffix=,format=short - type=semver,pattern={{version}},value=${{ github.ref_name }} - - - name: Build and push - uses: docker/build-push-action@v6 - with: - context: . - platforms: linux/amd64,linux/arm64 - provenance: false - push: true - tags: ${{ steps.meta.outputs.tags }} - cache-from: type=gha - cache-to: type=gha,mode=max diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5f60d1..af8a881 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,9 @@ jobs: runs-on: ubuntu-latest env: IMAGE: danihodovic/celery-exporter + permissions: + contents: write + packages: write steps: - name: Checkout uses: actions/checkout@v4 @@ -33,7 +36,9 @@ jobs: id: metadata uses: docker/metadata-action@v5 with: - images: ${{ env.IMAGE }} + images: | + ${{ env.IMAGE }} + ghcr.io/${{ env.IMAGE }} - name: Set Up QEMU uses: docker/setup-qemu-action@v3 - name: Set Up Docker Buildx @@ -43,6 +48,12 @@ jobs: with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Login to Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Build, tag, and push image to Docker Hub uses: docker/build-push-action@v6 with: From b697d34ace08f9bd18cc23db50280238c27ae36e Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Thu, 17 Oct 2024 04:42:58 +0200 Subject: [PATCH 08/11] Upload packaged Helm Chart to GitHub release's assets --- .github/workflows/release.yml | 15 +++++++++++---- charts/celery-exporter/Chart.yaml | 2 -- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af8a881..cffb6d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,8 +89,15 @@ jobs: uses: azure/setup-helm@v4.2.0 with: version: v3.14.4 - - name: Run Chart-Releaser - uses: helm/chart-releaser-action@v1.6.0 + - name: Get Chart Version + id: chart-version + run: echo "::set-output name=version::$(grep 'version:' ./charts/celery-exporter/Chart.yaml | cut -d ' ' -f 2)" + - name: Package Helm chart + run: helm package ./charts/celery-exporter --app-version=${{ github.ref_name }} + - name: Upload To Github Release + uses: softprops/action-gh-release@v2 + with: + files: | + celery-exporter-${{ steps.chart-version.outputs.version }}.tgz env: - CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-chart-{{ .Version }}" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/charts/celery-exporter/Chart.yaml b/charts/celery-exporter/Chart.yaml index 3d52834..f9a1d06 100644 --- a/charts/celery-exporter/Chart.yaml +++ b/charts/celery-exporter/Chart.yaml @@ -12,6 +12,4 @@ sources: maintainers: - name: danihodovic - name: adinhodovic - version: 0.7.0 -appVersion: 0.9.2 From ac3e1d172a2a91f884d345fd000bdc894e6b3780 Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Thu, 17 Oct 2024 04:43:58 +0200 Subject: [PATCH 09/11] Prefer reference without the refs/tags/ --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cffb6d6..ebfa669 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,8 +16,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ github.ref }} - release_name: Version ${{ github.ref }} + tag_name: ${{ github.ref_name }} + release_name: Version ${{ github.ref_name }} draft: false prerelease: false From 8f884216019ec6e6aaa124c224ba3b10b00bafcf Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Thu, 17 Oct 2024 05:52:49 +0200 Subject: [PATCH 10/11] Add annotations to docker build --- .github/workflows/release.yml | 3 ++- .github/workflows/test.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ebfa669..146b326 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,9 +60,10 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max context: . - labels: ${{ steps.metadata.outputs.labels }} platforms: linux/amd64,linux/arm64 push: true + annotations: ${{ steps.metadata.outputs.annotations }} + labels: ${{ steps.metadata.outputs.labels }} tags: ${{ steps.metadata.outputs.tags }} - name: Update Description On Docker Hub Description uses: peter-evans/dockerhub-description@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d39af2b..03d0c08 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,9 +31,10 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max context: . - labels: ${{ steps.metadata.outputs.labels }} platforms: linux/amd64,linux/arm64 push: false + annotations: ${{ steps.metadata.outputs.annotations }} + labels: ${{ steps.metadata.outputs.labels }} tags: ${{ steps.metadata.outputs.tags }} helm-chart: From cf5944ac30c20ffdc2739919c4be3658b19a83cc Mon Sep 17 00:00:00 2001 From: King'ori Maina Date: Thu, 17 Oct 2024 21:02:38 +0200 Subject: [PATCH 11/11] Bump chart to appease linter after appVersion removal --- charts/celery-exporter/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/celery-exporter/Chart.yaml b/charts/celery-exporter/Chart.yaml index f9a1d06..1ed22d4 100644 --- a/charts/celery-exporter/Chart.yaml +++ b/charts/celery-exporter/Chart.yaml @@ -12,4 +12,4 @@ sources: maintainers: - name: danihodovic - name: adinhodovic -version: 0.7.0 +version: 0.7.1