diff --git a/.github/workflows/helm-chart.yml b/.github/workflows/helm-chart.yml index 187aff5b..34641783 100644 --- a/.github/workflows/helm-chart.yml +++ b/.github/workflows/helm-chart.yml @@ -54,5 +54,11 @@ jobs: - name: Create kind cluster uses: helm/kind-action@v1.8.0 + - name: Label cluster nodes + run: | + for node in $(kubectl get nodes -o name); do + kubectl label --overwrite $node "role=management" + done + - name: Run chart-testing (install) run: ct install --config ./.github/configs/chart-testing.yaml --helm-extra-args "--values ${{ matrix.chart-values }}"