From 97c0db9db7ad4d5f320072b9d0b8b6abcf78aedc Mon Sep 17 00:00:00 2001 From: jessebot Date: Sun, 29 Dec 2024 20:04:58 +0100 Subject: [PATCH] we don't support user creation yet --- .github/workflows/ci-helm-lint-test.yml | 34 ------------------------- 1 file changed, 34 deletions(-) diff --git a/.github/workflows/ci-helm-lint-test.yml b/.github/workflows/ci-helm-lint-test.yml index 864f25c..f03fa4d 100644 --- a/.github/workflows/ci-helm-lint-test.yml +++ b/.github/workflows/ci-helm-lint-test.yml @@ -70,37 +70,3 @@ jobs: if: steps.list-changed.outputs.changed == 'true' run: | ct install --target-branch ${{ github.event.repository.default_branch }} - - test_user_creation: - name: Test chart with user creation - runs-on: ubuntu-latest - needs: lint - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: "0" - - - name: Install Helm - uses: azure/setup-helm@v4 - - - 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: Create kind cluster - uses: helm/kind-action@v1.10.0 - if: steps.list-changed.outputs.changed == 'true' - - - name: Run chart-testing (install with user creation) - id: install - if: steps.list-changed.outputs.changed == 'true' - run: | - ct install --target-branch ${{ github.event.repository.default_branch }}