Use secret for storing connectioninfo (bucketname) in s3-irsa example #306
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: PR | |
on: [ pull_request ] | |
env: | |
KUTTL_VERSION: "0.12.1" | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install kuttl | |
run: | | |
mkdir ${HOME}/bin | |
wget -O ${HOME}/bin/kubectl-kuttl https://github.com/kudobuilder/kuttl/releases/download/v${{ env.KUTTL_VERSION }}/kubectl-kuttl_${{ env.KUTTL_VERSION }}_linux_x86_64 | |
chmod +x ${HOME}/bin/kubectl-kuttl | |
echo "${HOME}/bin/" >> $GITHUB_PATH | |
- name: run tests | |
run: kubectl kuttl test --config tests/kuttl/test-suite.yaml |