hydra-maester/Makefile

148 lines
3.8 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
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
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
CRD_OPTIONS ?= "crd:trivialVersions=true,crdVersions=v1"
2019-08-21 10:12:07 +02:00
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
2022-09-22 07:52:52 -05:00
test: generate vet manifests
go test ./api/... ./controllers/... ./hydra/... ./helpers/... -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
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
go get github.com/onsi/ginkgo/ginkgo
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 GO111MODULE=on 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
2019-08-21 10:12:07 +02:00
deploy: manifests
kubectl apply -f config/crd/bases
kustomize build config/default | kubectl apply -f -
# 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) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=config/crd/bases
2022-09-22 07:52:52 -05:00
# Format the source code
format: node_modules
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=./api/...
# 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}
# find or download controller-gen
# download controller-gen if necessary
2021-11-30 11:31:19 +01:00
.PHONY: controller-gen
2019-08-21 10:12:07 +02:00
controller-gen:
ifeq (, $(shell which controller-gen))
go get sigs.k8s.io/controller-tools/cmd/controller-gen@v0.5.0
CONTROLLER_GEN=$(shell which controller-gen)
2019-08-21 10:12:07 +02:00
else
CONTROLLER_GEN=$(shell which controller-gen)
endif
2021-11-30 11:31:19 +01:00
# Download and setup kubebuilder
.PHONY: kubebuilder
kubebuilder:
curl -sL https://github.com/kubernetes-sigs/kubebuilder/releases/download/v2.3.2/kubebuilder_2.3.2_${OS}_${ARCH}.tar.gz | tar -xz -C /tmp/
mv /tmp/kubebuilder_2.3.2_${OS}_${ARCH} ${PWD}/.bin/kubebuilder
export PATH=${PATH}:${PWD}/.bin/kubebuilder/bin
2022-09-22 07:52:52 -05:00
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