diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c824a6e..170cfd4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -18,17 +18,17 @@ jobs: - name: Create k8s Kind Cluster uses: helm/kind-action@v1 with: - name: kind - wait: 90s + install_only: true - name: Run the tests run: | - # export KIND_EXPERIMENTAL_DOCKER_NETWORK=${{ job.container.network }} + echo ${{ job.container.network }} + export KIND_EXPERIMENTAL_DOCKER_NETWORK=${{ job.container.network }} - # kind create cluster \ - # --kubeconfig $KUBECONFIG \ - # --config=./kind/kind-config-ci.yaml + kind create cluster \ + --kubeconfig $KUBECONFIG \ + --config=./kind/kind-config-ci.yaml - # kubectl config set-cluster kind-kind --server=https://kind-control-plane:6443 + kubectl config set-cluster kind-kind --server=https://kind-control-plane:6443 kubectl apply -f manifests/example.yaml --validate=false tilt ci