hydra-maester/Makefile

193 lines
5.3 KiB
Makefile
Raw Permalink 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
2023-08-15 11:07:35 +02:00
ifeq ($(shell uname -m),x86_64)
ARCH=amd64
endif
ifeq ($(shell uname -m),arm64)
ARCH=arm64
endif
2021-11-30 11:31:19 +01:00
endif
endif
##@ Build Dependencies
## Location to install dependencies to
LOCALBIN ?= $(shell pwd)/.bin
$(LOCALBIN):
mkdir -p $(LOCALBIN)
2023-08-15 11:07:35 +02:00
SHELL=/bin/bash -euo pipefail
export PATH := .bin:${PATH}
export PWD := $(shell pwd)
export K3SIMAGE := docker.io/rancher/k3s:v1.26.1-k3s1
## Tool Binaries
CONTROLLER_GEN ?= $(LOCALBIN)/controller-gen
ENVTEST ?= $(LOCALBIN)/setup-envtest
## Tool Versions
2024-06-24 11:15:21 +02:00
CONTROLLER_TOOLS_VERSION ?= v0.15.0
ENVTEST_K8S_VERSION = 1.29.0
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)
2023-08-15 11:07:35 +02:00
# find or download controller-gen
# download controller-gen if necessary
.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
.bin/ory: Makefile
curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory
touch .bin/ory
.bin/kubectl: Makefile
@URL=$$(.bin/ory dev ci deps url -o ${OS} -a ${ARCH} -c .deps/kubectl.yaml); \
echo "Downloading 'kubectl' $${URL}...."; \
curl -Lo .bin/kubectl $${URL}; \
chmod +x .bin/kubectl;
.bin/kustomize: Makefile
@URL=$$(.bin/ory dev ci deps url -o ${OS} -a ${ARCH} -c .deps/kustomize.yaml); \
echo "Downloading 'kustomize' $${URL}...."; \
curl -L $${URL} | tar -xmz -C .bin kustomize; \
chmod +x .bin/kustomize;
.bin/k3d: Makefile
@URL=$$(.bin/ory dev ci deps url -o ${OS} -a ${ARCH} -c .deps/k3d.yaml); \
echo "Downloading 'k3d' $${URL}...."; \
curl -Lo .bin/k3d $${URL}; \
chmod +x .bin/k3d;
.PHONY: deps
deps: .bin/ory .bin/k3d .bin/kubectl .bin/kustomize
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
2023-08-15 11:07:35 +02:00
.PHONY: k3d-up
k3d-up:
k3d cluster create --image $${K3SIMAGE} ory \
--k3s-arg=--kube-apiserver-arg="enable-admission-plugins=NodeRestriction,ServiceAccount@server:0" \
--k3s-arg=feature-gates="NamespaceDefaultLabelName=true@server:0";
.PHONY: k3d-down
k3d-down:
k3d cluster delete ory || true
.PHONY: k3d-deploy
2023-10-10 13:22:06 +02:00
k3d-deploy: manager-ci manifests docker-build-notest k3d-up
2023-08-15 11:07:35 +02:00
kubectl config set-context k3d-ory
k3d image load controller:latest -c ory
kubectl apply -f config/crd/bases
2023-08-15 11:07:35 +02:00
kustomize build config/default | kubectl apply -f -
2023-08-15 11:07:35 +02:00
.PHONY: k3d-test
k3d-test: k3d-deploy
kubectl config set-context k3d-ory
2023-03-27 13:35:39 -04:00
go install github.com/onsi/ginkgo/ginkgo@latest
USE_EXISTING_CLUSTER=true ginkgo -v ./controllers/...
2023-08-15 11:07:35 +02:00
# Run integration tests on local cluster
2021-11-30 11:31:19 +01:00
.PHONY: test-integration
test-integration:
2023-08-15 11:07:35 +02:00
$(call run-with-cleanup, $(MAKE) k3d-test, $(MAKE) k3d-down)
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
2023-10-10 13:22:06 +02:00
# Build manager binary for CI
.PHONY: manager-ci
2023-10-26 15:32:50 +02:00
manager-ci: generate vet
2023-10-10 13:22:06 +02:00
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 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
2023-08-15 11:07:35 +02:00
deploy: manifests
2019-08-21 10:12:07 +02:00
kubectl apply -f config/crd/bases
2023-08-15 11:07:35 +02:00
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:
docker build . -t ${IMG} -f .docker/Dockerfile-build
2019-08-21 10:12:07 +02:00
@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}
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