Updated Helm chart to 0.18.18, app version to 0.18.18 #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint and Test Charts | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| 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 | |
| with: | |
| version: v3.14.0 | |
| - name: Install helm-unittest plugin | |
| run: helm plugin install https://github.com/helm-unittest/helm-unittest --version v0.5.1 | |
| - name: Run verify | |
| run: make verify | |
| - name: Set up chart-testing | |
| uses: helm/chart-testing-action@v2.6.1 | |
| - name: Create kind cluster | |
| uses: helm/kind-action@v1.10.0 | |
| - name: Run chart-testing (install) | |
| run: ct install --all --helm-extra-set-args '--set=config.registry.url=localhost:5000 --timeout 3m --set=service.type=ClusterIP --set=config.http.port=25222 --set=config.https.port=25223' --debug |