@@ -2,7 +2,6 @@ include Makefile-deps.mk
22
33# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
44ENVTEST_K8S_VERSION = 1.32.0
5- ENVTEST_LWS_VERSION = v0.5.1
65
76# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
87ifeq (,$(shell go env GOBIN) )
@@ -84,9 +83,7 @@ manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and Cust
8483 rbac:roleName=manager-role output:rbac:artifacts:config=config/rbac \
8584 crd:generateEmbeddedObjectMeta=true output:crd:artifacts:config=config/crd/bases \
8685 webhook output:webhook:artifacts:config=config/webhook \
87- paths=" ./cmd/..."
88- paths=" ./api/..."
89- paths=" ./pkg/..."
86+ paths=" ./api/...;./pkg/...;./cmd/..."
9087
9188.PHONY : generate
9289generate : controller-gen code-generator # # Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations.
@@ -136,7 +133,7 @@ test-integration: manifests fmt vet envtest ginkgo ## Run integration tests.
136133
137134.PHONY : test-e2e
138135test-e2e : kustomize manifests fmt vet envtest ginkgo kind-image-build
139- E2E_KIND_NODE_VERSION=$(E2E_KIND_NODE_VERSION ) KIND_CLUSTER_NAME=$(KIND_CLUSTER_NAME ) KIND=$(KIND ) KUBECTL=$(KUBECTL ) KUSTOMIZE=$(KUSTOMIZE ) GINKGO=$(GINKGO ) USE_EXISTING_CLUSTER=$(USE_EXISTING_CLUSTER ) IMAGE_TAG=$(IMG ) ENVTEST_LWS_VERSION= $( ENVTEST_LWS_VERSION ) ./hack/e2e-test.sh
136+ E2E_KIND_NODE_VERSION=$(E2E_KIND_NODE_VERSION ) KIND_CLUSTER_NAME=$(KIND_CLUSTER_NAME ) KIND=$(KIND ) KUBECTL=$(KUBECTL ) KUSTOMIZE=$(KUSTOMIZE ) GINKGO=$(GINKGO ) USE_EXISTING_CLUSTER=$(USE_EXISTING_CLUSTER ) IMAGE_TAG=$(IMG ) ./hack/e2e-test.sh
140137
141138test-deploy-with-helm : kind-image-build
142139 E2E_KIND_NODE_VERSION=$(E2E_KIND_NODE_VERSION ) KIND_CLUSTER_NAME=$(KIND_CLUSTER_NAME ) KIND=$(KIND ) KUBECTL=$(KUBECTL ) USE_EXISTING_CLUSTER=$(USE_EXISTING_CLUSTER ) IMAGE_TAG=$(IMG ) TAG=$(GIT_TAG ) ./hack/test-deploy-with-helm.sh
0 commit comments