hydra-maester/Makefile

175 lines
5.1 KiB
Makefile
Raw Normal View History

2021-11-30 11:31:19 +01:00
ifeq ($(OS),Windows_NT)
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
ARCH=amd64
OS=windows
endif
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
OS=linux
ARCH=amd64
endif
ifeq ($(UNAME_S),Darwin)
OS=darwin
ARCH=amd64
endif
endif
2019-08-21 10:12:07 +02:00
##@ Build Dependencies
## Location to install dependencies to
LOCALBIN ?= $(shell pwd)/.bin
$(LOCALBIN):
mkdir -p $(LOCALBIN)
## Tool Binaries
KUSTOMIZE ?= $(LOCALBIN)/kustomize
CONTROLLER_GEN ?= $(LOCALBIN)/controller-gen
ENVTEST ?= $(LOCALBIN)/setup-envtest
## Tool Versions
2023-08-08 12:34:22 +02:00
KUSTOMIZE_VERSION ?= v5.1.1
CONTROLLER_TOOLS_VERSION ?= v0.11.3
ENVTEST_K8S_VERSION = 1.26.1
2021-11-30 11:31:19 +01:00
HELL=/bin/bash -o pipefail
2019-08-21 10:12:07 +02:00
# Image URL to use all building/pushing image targets
IMG ?= controller:latest
run-with-cleanup = $(1) && $(2) || (ret=$$?; $(2) && exit $$ret)
2021-11-30 11:31:19 +01:00
.PHONY: all
2019-08-21 10:12:07 +02:00
all: manager
# Run tests
2021-11-30 11:31:19 +01:00
.PHONY: test
test: manifests generate vet envtest
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test ./... -coverprofile cover.out
# Start KIND pseudo-cluster
2021-11-30 11:31:19 +01:00
.PHONY: kind-start
kind-start:
kind create cluster
# Stop KIND pseudo-cluster
2021-11-30 11:31:19 +01:00
.PHONY: kind-stop
kind-stop:
kind delete cluster
# Deploy on KIND
# Ensures the controller image is built, deploys the image to KIND cluster along with necessary configuration
2021-11-30 11:31:19 +01:00
.PHONY: kind-deploy
kind-deploy: manager manifests docker-build-notest kind-start kustomize
kubectl config set-context kind-kind
kind load docker-image controller:latest
kubectl apply -f config/crd/bases
$(KUSTOMIZE) build config/default | kubectl apply -f -
# private
2021-11-30 11:31:19 +01:00
.PHONY: kind-test
kind-test: kind-deploy
kubectl config set-context kind-kind
2023-03-27 13:35:39 -04:00
go install github.com/onsi/ginkgo/ginkgo@latest
USE_EXISTING_CLUSTER=true ginkgo -v ./controllers/...
# Run integration tests on local KIND cluster
2021-11-30 11:31:19 +01:00
.PHONY: test-integration
test-integration:
$(call run-with-cleanup, $(MAKE) kind-test, $(MAKE) kind-stop)
2019-08-21 10:12:07 +02:00
# Build manager binary
2021-11-30 11:31:19 +01:00
.PHONY: manager
2022-09-22 07:52:52 -05:00
manager: generate vet
CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -a -o manager main.go
2019-08-21 10:12:07 +02:00
# Run against the configured Kubernetes cluster in ~/.kube/config
2021-11-30 11:31:19 +01:00
.PHONY: run
2022-09-22 07:52:52 -05:00
run: generate vet
2019-08-29 12:55:29 +02:00
go run ./main.go --hydra-url ${HYDRA_URL}
2019-08-21 10:12:07 +02:00
# Install CRDs into a cluster
2021-11-30 11:31:19 +01:00
.PHONY: install
2019-08-21 10:12:07 +02:00
install: manifests
kubectl apply -f config/crd/bases
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
2021-11-30 11:31:19 +01:00
.PHONY: deploy
deploy: manifests kustomize
2019-08-21 10:12:07 +02:00
kubectl apply -f config/crd/bases
$(KUSTOMIZE) build config/default | kubectl apply -f -
2019-08-21 10:12:07 +02:00
# Generate manifests e.g. CRD, RBAC etc.
2021-11-30 11:31:19 +01:00
.PHONY: manifests
2019-08-21 10:12:07 +02:00
manifests: controller-gen
$(CONTROLLER_GEN) rbac:roleName=manager-role crd webhook paths="./..." output:crd:artifacts:config=config/crd/bases
2019-08-21 10:12:07 +02:00
2022-09-22 07:52:52 -05:00
# Format the source code
format: .bin/ory node_modules
.bin/ory dev headers copyright --type=open-source
2019-08-21 10:12:07 +02:00
go fmt ./...
2022-09-22 07:52:52 -05:00
npm exec -- prettier --write .
2019-08-21 10:12:07 +02:00
# Run go vet against code
2021-11-30 11:31:19 +01:00
.PHONY: vet
2019-08-21 10:12:07 +02:00
vet:
go vet ./...
# Generate code
2021-11-30 11:31:19 +01:00
.PHONY: generate
2019-08-21 10:12:07 +02:00
generate: controller-gen
$(CONTROLLER_GEN) object:headerFile="hack/boilerplate.go.txt" paths="./..."
2019-08-21 10:12:07 +02:00
# Build the docker image
2021-11-30 11:31:19 +01:00
.PHONY: docker-build-notest
docker-build-notest:
2019-08-21 10:12:07 +02:00
docker build . -t ${IMG}
@echo "updating kustomize image patch file for manager resource"
sed -i'' -e 's@image: .*@image: '"${IMG}"'@' ./config/default/manager_image_patch.yaml
2021-11-30 11:31:19 +01:00
.PHONY: docker-build
docker-build: test docker-build-notest
2019-08-21 10:12:07 +02:00
# Push the docker image
2021-11-30 11:31:19 +01:00
.PHONY: docker-push
2019-08-21 10:12:07 +02:00
docker-push:
docker push ${IMG}
## Download kustomize locally if necessary. If wrong version is installed, it will be removed before downloading.
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
.PHONY: kustomize
kustomize: $(KUSTOMIZE)
$(KUSTOMIZE): $(LOCALBIN)
@if test -x $(LOCALBIN)/kustomize && ! $(LOCALBIN)/kustomize version | grep -q $(KUSTOMIZE_VERSION); then \
echo "$(LOCALBIN)/kustomize version is not expected $(KUSTOMIZE_VERSION). Removing it before installing."; \
rm -rf $(LOCALBIN)/kustomize; \
fi
test -s $(LOCALBIN)/kustomize || { curl -Ss $(KUSTOMIZE_INSTALL_SCRIPT) --output install_kustomize.sh && bash install_kustomize.sh $(subst v,,$(KUSTOMIZE_VERSION)) $(LOCALBIN); rm install_kustomize.sh; }
2019-08-21 10:12:07 +02:00
# find or download controller-gen
# download controller-gen if necessary
2021-11-30 11:31:19 +01:00
.PHONY: controller-gen
controller-gen: $(CONTROLLER_GEN)
$(CONTROLLER_GEN): $(LOCALBIN)
test -s $(LOCALBIN)/controller-gen && $(LOCALBIN)/controller-gen --version | grep -q $(CONTROLLER_TOOLS_VERSION) || \
GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_TOOLS_VERSION)
## Download envtest-setup locally if necessary.
.PHONY: envtest
envtest: $(ENVTEST)
$(ENVTEST): $(LOCALBIN)
test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
2022-09-22 07:52:52 -05:00
.bin/ory: Makefile
curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory v0.1.48
touch .bin/ory
2022-11-02 07:15:34 -04:00
licenses: .bin/licenses node_modules # checks open-source licenses
.bin/licenses
.bin/licenses: Makefile
curl https://raw.githubusercontent.com/ory/ci/master/licenses/install | sh
2022-09-22 07:52:52 -05:00
node_modules: package-lock.json
npm ci
touch node_modules