From 70533577b9295c4bdc534a414602ea871ff1a7bb Mon Sep 17 00:00:00 2001 From: Marco Lecheler Date: Sun, 22 Feb 2026 19:51:31 +0100 Subject: [PATCH 1/5] Update replicaCount to 1 in values.yaml Changed the replica count from 3 to 1 in values.yaml. --- charts/demo/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/demo/values.yaml b/charts/demo/values.yaml index 48e054a..51fd1d0 100644 --- a/charts/demo/values.yaml +++ b/charts/demo/values.yaml @@ -3,7 +3,7 @@ # Declare variables to be passed into your templates. # This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ -replicaCount: 3 +replicaCount: 1 # This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/ image: From 7b05cfdac74d10b909e3b83550bfbfc15747c575 Mon Sep 17 00:00:00 2001 From: Marco Lecheler Date: Sun, 22 Feb 2026 19:53:39 +0100 Subject: [PATCH 2/5] Refactor lint command in lint-test.yaml Simplified the lint command in the workflow. --- .github/workflows/lint-test.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 13f5a13..8d37014 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -35,10 +35,7 @@ jobs: - name: Run chart-testing (lint) if: steps.list-changed.outputs.changed == 'true' - run: | - ct lint \ - --remote ${{ steps.list-changed.outputs.ct_origin }} \ - --target-branch ${{ steps.list-changed.outputs.ct_target_branch }} + run: ct lint - name: Create kind cluster if: steps.list-changed.outputs.changed == 'true' From 9c454363b28f1deeb121ed70118fbf6e483ed5da Mon Sep 17 00:00:00 2001 From: Marco Lecheler Date: Sun, 22 Feb 2026 19:54:59 +0100 Subject: [PATCH 3/5] Bump chart version from 0.1.7 to 0.1.8 --- charts/demo/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/demo/Chart.yaml b/charts/demo/Chart.yaml index d1b783e..5e6e111 100644 --- a/charts/demo/Chart.yaml +++ b/charts/demo/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.7 +version: 0.1.8 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to From e444d22b2ad6bc6c3b647389bf5373564c7d1e27 Mon Sep 17 00:00:00 2001 From: Marco Lecheler Date: Sun, 22 Feb 2026 19:56:11 +0100 Subject: [PATCH 4/5] Add keywords, maintainers, sources, and icon to Chart.yaml --- charts/demo/Chart.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/charts/demo/Chart.yaml b/charts/demo/Chart.yaml index 5e6e111..1162ec4 100644 --- a/charts/demo/Chart.yaml +++ b/charts/demo/Chart.yaml @@ -22,3 +22,12 @@ version: 0.1.8 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. appVersion: "1.16.0" + +keywords: + - test +maintainers: + - name: fty4 + url: https://github.com/fty4 +sources: + - https://github.com/taskmedia +icon: https://media.task.media/images/logo.png From b0f5e6e6508664da8c154c9f83bb2d05e2dbfe2b Mon Sep 17 00:00:00 2001 From: Marco Lecheler Date: Sun, 22 Feb 2026 19:58:16 +0100 Subject: [PATCH 5/5] Simplify ct install command in lint-test workflow --- .github/workflows/lint-test.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 8d37014..6365d85 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -43,7 +43,4 @@ jobs: - name: Run chart-testing (install) if: steps.list-changed.outputs.changed == 'true' - run: | - ct install \ - --remote ${{ steps.list-changed.outputs.ct_origin }} \ - --target-branch ${{ steps.list-changed.outputs.ct_target_branch }} + run: ct install