SHELL := /bin/bash -o pipefail export BASE_VERSION ?= 2022-10-27T19-02-22 export HUB ?= higress-registry.cn-hangzhou.cr.aliyuncs.com/higress export CHARTS ?= higress-registry.cn-hangzhou.cr.aliyuncs.com/charts GO ?= go export GOPROXY ?= https://proxy.golang.com.cn,direct GOARCH_LOCAL := $(TARGET_ARCH) GOOS_LOCAL := $(TARGET_OS) RELEASE_LDFLAGS='-extldflags -static -s -w' export OUT:=$(TARGET_OUT) export OUT_LINUX:=$(TARGET_OUT_LINUX) # If tag not explicitly set in users' .istiorc.mk or command line, default to the git sha. TAG ?= $(shell git rev-parse --verify HEAD) ifeq ($(TAG),) $(error "TAG cannot be empty") endif VARIANT := ifeq ($(VARIANT),) TAG_VARIANT:=${TAG} else TAG_VARIANT:=${TAG}-${VARIANT} endif HIGRESS_DOCKER_BUILD_TOP:=${OUT_LINUX}/docker_build BINARIES:=./cmd/higress $(OUT): @mkdir -p $@ submodule: git submodule update --init prebuild: submodule ./tools/hack/prebuild.sh .PHONY: default default: build .PHONY: go.test.coverage go.test.coverage: prebuild go test ./cmd/... ./pkg/... -race -coverprofile=coverage.xml -covermode=atomic .PHONY: build build: prebuild $(OUT) GOPROXY=$(GOPROXY) GOOS=$(GOOS_LOCAL) GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) tools/hack/gobuild.sh $(OUT)/ $(BINARIES) .PHONY: build-linux build-linux: prebuild $(OUT) GOPROXY=$(GOPROXY) GOOS=linux GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) tools/hack/gobuild.sh $(OUT_LINUX)/ $(BINARIES) # Create targets for OUT_LINUX/binary # There are two use cases here: # * Building all docker images (generally in CI). In this case we want to build everything at once, so they share work # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone BUILD_ALL ?= true define build-linux .PHONY: $(OUT_LINUX)/$(shell basename $(1)) ifeq ($(BUILD_ALL),true) $(OUT_LINUX)/$(shell basename $(1)): build-linux else $(OUT_LINUX)/$(shell basename $(1)): $(OUT_LINUX) GOPROXY=$(GOPROXY) GOOS=linux GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) tools/hack/gobuild.sh $(OUT_LINUX)/ -tags=$(2) $(1) endif endef $(foreach bin,$(BINARIES),$(eval $(call build-linux,$(bin),""))) # Create helper targets for each binary, like "pilot-discovery" # As an optimization, these still build everything $(foreach bin,$(BINARIES),$(shell basename $(bin))): build ifneq ($(OUT_LINUX),$(LOCAL_OUT)) # if we are on linux already, then this rule is handled by build-linux above, which handles BUILD_ALL variable $(foreach bin,$(BINARIES),${LOCAL_OUT}/$(shell basename $(bin))): build endif .PHONY: push # for now docker is limited to Linux compiles - why ? include docker/docker.mk docker-build: docker.higress ## Build and push docker images to registry defined by $HUB and $TAG export PARENT_GIT_TAG:=$(shell cat VERSION) export PARENT_GIT_REVISION:=$(TAG) export ENVOY_TAR_PATH:=/home/package/envoy.tar.gz build-istio: prebuild cd external/istio; GOOS_LOCAL=linux TARGET_OS=linux TARGET_ARCH=amd64 BUILD_WITH_CONTAINER=1 DOCKER_BUILD_VARIANTS=default DOCKER_TARGETS="docker.pilot" make docker external/package/envoy.tar.gz: cd external/proxy; BUILD_WITH_CONTAINER=1 make test_release build-gateway: prebuild external/package/envoy.tar.gz cd external/istio; GOOS_LOCAL=linux TARGET_OS=linux TARGET_ARCH=amd64 BUILD_WITH_CONTAINER=1 DOCKER_BUILD_VARIANTS=default DOCKER_TARGETS="docker.proxyv2" make docker pre-install: cp api/kubernetes/customresourcedefinitions.gen.yaml helm/higress/crds cd helm/istio; helm dependency update cd helm/kind/higress; helm dependency update cd helm/kind/istio; helm dependency update define create_ns kubectl get namespace | grep $(1) || kubectl create namespace $(1) endef install: pre-install helm install higress helm/kind/higress -n higress-system --create-namespace ENVOY_LATEST_IMAGE_TAG ?= 0.6.0 ISTIO_LATEST_IMAGE_TAG ?= 0.6.0 install-dev: pre-install helm install higress helm/higress -n higress-system --create-namespace --set-json='controller.tag="$(TAG)"' --set-json='gateway.replicas=1' --set-json='gateway.tag="$(ENVOY_LATEST_IMAGE_TAG)"' --set-json='global.kind=true' uninstall: helm uninstall higress -n higress-system upgrade: pre-install helm upgrade higress helm/kind/higress -n higress-system helm-push: cp api/kubernetes/customresourcedefinitions.gen.yaml helm/higress/crds cd helm; tar -zcf higress.tgz higress; helm push higress.tgz "oci://$(CHARTS)" helm-push-istio: cd helm/istio; helm dependency update cd helm; tar -zcf istio.tgz istio; helm push istio.tgz "oci://$(CHARTS)" helm-push-kind: cd helm/kind/higress; helm dependency update cd helm/kind; tar -zcf higress.tgz higress; helm push higress.tgz "oci://$(CHARTS)" cd helm/kind/istio; helm dependency update cd helm/kind; tar -zcf istio.tgz istio; helm push istio.tgz "oci://$(CHARTS)" cue = cue-gen -paths=./external/api/common-protos gen-api: prebuild cd api;./gen.sh gen-client: gen-api cd client; make generate-k8s-client DIRS_TO_CLEAN := $(OUT) DIRS_TO_CLEAN += $(OUT_LINUX) clean-higress: ## Cleans all the intermediate files and folders previously generated. rm -rf $(DIRS_TO_CLEAN) clean-istio: rm -rf external/istio clean-gateway: clean-istio rm -rf external/envoy rm -rf external/proxy rm -rf external/package/envoy.tar.gz clean-env: rm -rf out/ clean-tool: rm -rf tools/bin clean: clean-higress clean-gateway clean-istio clean-env clean-tool include tools/tools.mk include tools/lint.mk # gateway-conformance-test runs gateway api conformance tests. .PHONY: gateway-conformance-test gateway-conformance-test: # ingress-conformance-test runs ingress api conformance tests. .PHONY: ingress-conformance-test ingress-conformance-test: $(tools/kind) delete-cluster create-cluster docker-build kube-load-image install-dev run-ingress-e2e-test delete-cluster # create-cluster creates a kube cluster with kind. .PHONY: create-cluster create-cluster: $(tools/kind) tools/hack/create-cluster.sh # delete-cluster deletes a kube cluster. .PHONY: delete-cluster delete-cluster: $(tools/kind) ## Delete kind cluster. $(tools/kind) delete cluster --name higress # kube-load-image loads a local built docker image into kube cluster. .PHONY: kube-load-image kube-load-image: $(tools/kind) ## Install the EG image to a kind cluster using the provided $IMAGE and $TAG. tools/hack/kind-load-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/higress $(TAG) # run-ingress-e2e-test starts to run ingress e2e tests. .PHONY: run-ingress-e2e-test run-ingress-e2e-test: @echo -e "\n\033[36mRunning higress conformance tests...\033[0m" @echo -e "\n\033[36mWaiting higress-controller to be ready...\033[0m\n" kubectl wait --timeout=5m -n higress-system deployment/higress-controller --for=condition=Available @echo -e "\n\033[36mWaiting higress-gateway to be ready...\033[0m\n" kubectl wait --timeout=5m -n higress-system deployment/higress-gateway --for=condition=Available go test -v -tags conformance ./test/ingress/e2e_test.go --ingress-class=higress --debug=true