From c1d484df62fdb44b6a8c1208ce59f203bc346f0a Mon Sep 17 00:00:00 2001 From: Simon Beck Date: Thu, 5 Sep 2024 10:38:28 +0200 Subject: [PATCH] Remove old make targets These are no more used, as they moved to the `ci.mk` file. --- Makefile | 4 ++++ package/package.mk | 12 ------------ 2 files changed, 4 insertions(+), 12 deletions(-) delete mode 100644 package/package.mk diff --git a/Makefile b/Makefile index 9c4e59cddf..edcd3e36b4 100644 --- a/Makefile +++ b/Makefile @@ -209,3 +209,7 @@ api-bootstrap: .PHONY: bootstrap bootstrap: api-bootstrap generate ## API bootstrapping, create a new claim/composite API ready to be used + +.PHONY: install-proxy +install-proxy: + kubectl apply -f hack/functionproxy diff --git a/package/package.mk b/package/package.mk deleted file mode 100644 index 512926dc9d..0000000000 --- a/package/package.mk +++ /dev/null @@ -1,12 +0,0 @@ -.PHONY: package-function -package-function: docker-build - rm -f package/*.xpkg - go run github.com/crossplane/crossplane/cmd/crank@v1.16.0 xpkg build -f package --verbose --embed-runtime-image=${GHCR_IMG} -o package/package-function-appcat.xpkg - -.PHONY: install-proxy -install-proxy: - kubectl apply -f hack/functionproxy - -.PHONY: push-function-package -push-function-package: package-function - go run github.com/crossplane/crossplane/cmd/crank@v1.16.0 xpkg push -f package/package-function-appcat.xpkg ghcr.io/vshn/appcat:${IMG_TAG}-func --verbose