bump: 1.1.71 #65
This file contains 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@v2 | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
- name: Install authorizer on k8s | |
run: | | |
helm upgrade \ | |
--install \ | |
--namespace default \ | |
--set authorizer.database_type=sqlite \ | |
--set authorizer.database_url=/tmp/db \ | |
--set securityContext.readOnlyRootFilesystem=false \ | |
authorizer . | |
- name: Run connection test | |
run: timeout -s 9 60 helm test --namespace default authorizer |