chore: bump appVersion to 2.3.0 and chart version to 2.2.0 #85
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| job1: | |
| runs-on: ubuntu-latest | |
| name: Test cluster integration | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create k8s Kind Cluster | |
| uses: helm/kind-action@v1.3.0 | |
| - name: Install authorizer on k8s | |
| run: | | |
| helm upgrade \ | |
| --install \ | |
| --namespace default \ | |
| --set authorizer.database_type=sqlite \ | |
| --set authorizer.database_url="/tmp/authorizer.db" \ | |
| --set authorizer.client_id=test-client-id \ | |
| --set authorizer.client_secret=test-client-secret \ | |
| --set securityContext.readOnlyRootFilesystem=false \ | |
| authorizer . | |
| - name: Run connection test | |
| run: timeout -s 9 60 helm test --namespace default authorizer |