Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: azure/setup-helm@v4.3.0

- name: Setup KinD cluster
run: ./hack/create-kind-cluster.sh
run: make create-kind-cluster

- name: Install func-operator
run: make docker-build docker-push deploy
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,10 @@ deploy-debugger: manifests kustomize ## Deploy debug controller to the K8s clust
undeploy: kustomize ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
$(KUSTOMIZE) build config/default | $(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f -

.PHONY: create-kind-cluster
create-kind-cluster:
./hack/create-kind-cluster.sh

##@ Dependencies

## Location to install dependencies to
Expand Down