fix : Add client for Testing (#700) #169
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: E2E tests | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: ${{ matrix.testpath }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
testpath: | |
- ./tests/e2e/v1beta2/setup | |
- ./tests/e2e/v1beta2/ignore-annots | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build Dockerfile | |
run: docker build . --file Dockerfile --tag redis-operator:e2e | |
- name: Install kuttl | |
run: | | |
curl -L https://github.com/kudobuilder/kuttl/releases/download/v0.15.0/kubectl-kuttl_0.15.0_linux_x86_64 -o /usr/local/bin/kuttl | |
chmod +x /usr/local/bin/kuttl | |
- name: Install kubectl | |
run: | | |
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" | |
chmod +x kubectl | |
sudo mv kubectl /usr/local/bin/ | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
with: | |
config: tests/_config/kind-config.yaml | |
cluster_name: kind | |
- name: Load Docker image into Kind | |
run: | | |
kubectl cluster-info --context kind-kind | |
kind load docker-image redis-operator:e2e --name kind | |
- name: Install Redis Operator | |
run: | | |
make deploy IMG=redis-operator:e2e | |
- name: Wait for Redis Operator to be ready | |
run: | | |
kubectl wait --for=condition=available --timeout=300s deployment/redis-operator-redis-operator -n redis-operator-system | |
- name: Run kuttl test | |
run: kuttl test ${{ matrix.testpath }} --config tests/_config/kuttl-test.yaml |