diff --git a/.github/workflows/pull_requests.yaml b/.github/workflows/pull_requests.yaml index 6f98805985..6e51e92361 100644 --- a/.github/workflows/pull_requests.yaml +++ b/.github/workflows/pull_requests.yaml @@ -54,10 +54,11 @@ jobs: - name: Set up chart-testing uses: helm/chart-testing-action@v2.3.1 + # we're excluding console from the install test until we have a way to test it with Redpanda - name: Run chart-testing (list-changed) id: list-changed run: | - changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) + changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }} --excluded-charts console) if [[ -n "$changed" ]]; then echo "::set-output name=changed::true" fi @@ -82,3 +83,4 @@ jobs: - name: Run chart-testing (install) run: ct install --config .github/ct.yaml + if: steps.list-changed.outputs.changed == 'true' diff --git a/charts/console/Chart.yaml b/charts/console/Chart.yaml index a8a563e1c7..8c51667db7 100644 --- a/charts/console/Chart.yaml +++ b/charts/console/Chart.yaml @@ -27,7 +27,7 @@ type: application # Versions are expected to follow Semantic Versioning (https://semver.org/) # Chart versions do not track appVersion -version: 0.3.1 +version: 0.3.2 # The app version is the version of the Chart application appVersion: v2.0.2 diff --git a/charts/console/README.md b/charts/console/README.md index 1c2040fdfa..e638fefcf3 100644 --- a/charts/console/README.md +++ b/charts/console/README.md @@ -9,5 +9,5 @@ helm repo update helm install redpanda/console -f myvalues.yaml ``` -Have a look at the [values.yaml](./console/values.yaml) file to see the available options. +Have a look at the [values.yaml](./values.yaml) file to see the available options. Additionally, there is an example configuration in the [examples](./examples) directory.