WIP: start working on tests #1

Draft
edude03 wants to merge 20 commits from feature/add-tests into main
1 changed files with 10 additions and 2 deletions
Showing only changes of commit d56ddfe8a6 - Show all commits

View File

@ -19,5 +19,13 @@ jobs:
uses: helm/kind-action@v1 uses: helm/kind-action@v1
- name: Run the tests - name: Run the tests
run: | run: |
export KUBECONFIG=$HOME/.kube/config # if not already set
export KIND_EXPERIMENTAL_DOCKER_NETWORK=${{ job.container.network }}
kind create cluster \
--kubeconfig $KUBECONFIG \
--config=./kind-config.yaml
kubectl config set-cluster kind-kind --server=https://kind-control-plane:6443
kubectl apply -f manifests/example.yaml --validate=false kubectl apply -f manifests/example.yaml --validate=false
tilt ci tilt ci