Makefile cleanup
This commit is contained in:
parent
814f5d77c1
commit
294be87c64
55
Makefile
55
Makefile
|
|
@ -313,12 +313,21 @@ crc-start: check-crc ## Start CodeReady Containers Kubernetes cluster
|
||||||
@echo "+ $@"
|
@echo "+ $@"
|
||||||
crc start
|
crc start
|
||||||
|
|
||||||
|
.PHONY: sembump
|
||||||
|
HAS_SEMBUMP := $(shell which $(PROJECT_DIR)/bin/sembump)
|
||||||
|
PLATFORM = $(shell echo $(UNAME_S) | tr A-Z a-z)
|
||||||
|
sembump: # Download sembump locally if necessary
|
||||||
|
@echo "+ $@"
|
||||||
|
ifndef HAS_SEMBUMP
|
||||||
|
wget -O $(PROJECT_DIR)/bin/sembump https://github.com/justintout/sembump/releases/download/v0.1.0/sembump-$(PLATFORM)-amd64
|
||||||
|
chmod +x $(PROJECT_DIR)/bin/sembump
|
||||||
|
endif
|
||||||
|
|
||||||
.PHONY: bump-version
|
.PHONY: bump-version
|
||||||
BUMP := patch
|
BUMP := patch
|
||||||
bump-version: ## Bump the version in the version file. Set BUMP to [ patch | major | minor ]
|
bump-version: sembump ## Bump the version in the version file. Set BUMP to [ patch | major | minor ]
|
||||||
@echo "+ $@"
|
@echo "+ $@"
|
||||||
#@go get -u github.com/jessfraz/junk/sembump # update sembump tool FIXME
|
$(eval NEW_VERSION=$(shell bin/sembump --kind $(BUMP) $(VERSION)))
|
||||||
$(eval NEW_VERSION=$(shell sembump --kind $(BUMP) $(VERSION)))
|
|
||||||
@echo "Bumping VERSION.txt from $(VERSION) to $(NEW_VERSION)"
|
@echo "Bumping VERSION.txt from $(VERSION) to $(NEW_VERSION)"
|
||||||
echo $(NEW_VERSION) > VERSION.txt
|
echo $(NEW_VERSION) > VERSION.txt
|
||||||
@echo "Updating version from $(VERSION) to $(NEW_VERSION) in README.md"
|
@echo "Updating version from $(VERSION) to $(NEW_VERSION) in README.md"
|
||||||
|
|
@ -377,11 +386,16 @@ helm-deploy: helm-package
|
||||||
helm repo index chart/ --url https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/chart/jenkins-operator/
|
helm repo index chart/ --url https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/chart/jenkins-operator/
|
||||||
cd chart/ && mv jenkins-operator-*.tgz jenkins-operator
|
cd chart/ && mv jenkins-operator-*.tgz jenkins-operator
|
||||||
|
|
||||||
|
# Download hugo locally if necessary
|
||||||
|
HUGO = $(shell pwd)/bin/hugo
|
||||||
|
hugo:
|
||||||
|
$(call go-get-tool,$(HUGO),github.com/gohugoio/hugo@v0.62.2)
|
||||||
|
|
||||||
.PHONY: generate-docs
|
.PHONY: generate-docs
|
||||||
generate-docs: ## Re-generate docs directory from the website directory
|
generate-docs: hugo ## Re-generate docs directory from the website directory
|
||||||
@echo "+ $@"
|
@echo "+ $@"
|
||||||
rm -rf docs || echo "Cannot remove docs dir, ignoring"
|
rm -rf docs || echo "Cannot remove docs dir, ignoring"
|
||||||
hugo -s website -d ../docs
|
bin/hugo -s website -d ../docs
|
||||||
|
|
||||||
##################### FROM OPERATOR SDK ########################
|
##################### FROM OPERATOR SDK ########################
|
||||||
# Install CRDs into a cluster
|
# Install CRDs into a cluster
|
||||||
|
|
@ -389,9 +403,18 @@ install-crds: manifests kustomize
|
||||||
$(KUSTOMIZE) build config/crd | kubectl apply -f -
|
$(KUSTOMIZE) build config/crd | kubectl apply -f -
|
||||||
|
|
||||||
# Uninstall CRDs from a cluster
|
# Uninstall CRDs from a cluster
|
||||||
uninstall: manifests kustomize
|
uninstall-crds: manifests kustomize
|
||||||
$(KUSTOMIZE) build config/crd | kubectl delete -f -
|
$(KUSTOMIZE) build config/crd | kubectl delete -f -
|
||||||
|
|
||||||
|
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
|
||||||
|
deploy: manifests kustomize
|
||||||
|
cd config/manager && $(KUSTOMIZE) edit set image controller=$(DOCKER_REGISTRY):$(GITCOMMIT)
|
||||||
|
$(KUSTOMIZE) build config/default | kubectl apply -f -
|
||||||
|
|
||||||
|
# UnDeploy controller from the configured Kubernetes cluster in ~/.kube/config
|
||||||
|
undeploy:
|
||||||
|
$(KUSTOMIZE) build config/default | kubectl delete -f -
|
||||||
|
|
||||||
# Generate manifests e.g. CRD, RBAC etc.
|
# Generate manifests e.g. CRD, RBAC etc.
|
||||||
manifests: controller-gen
|
manifests: controller-gen
|
||||||
$(CONTROLLER_GEN) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=config/crd/bases
|
$(CONTROLLER_GEN) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=config/crd/bases
|
||||||
|
|
@ -423,13 +446,23 @@ rm -rf $$TMP_DIR ;\
|
||||||
}
|
}
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
.PHONY: operator-sdk
|
||||||
|
HAS_OPERATOR_SDK := $(shell which $(PROJECT_DIR)/bin/operator-sdk)
|
||||||
|
PLATFORM = $(shell echo $(UNAME_S) | tr A-Z a-z)
|
||||||
|
operator-sdk: # Download operator-sdk locally if necessary
|
||||||
|
@echo "+ $@"
|
||||||
|
ifndef HAS_OPERATOR_SDK
|
||||||
|
wget -O $(PROJECT_DIR)/bin/operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/v1.3.0/operator-sdk_$(PLATFORM)_amd64
|
||||||
|
chmod +x $(PROJECT_DIR)/bin/operator-sdk
|
||||||
|
endif
|
||||||
|
|
||||||
# Generate bundle manifests and metadata, then validate generated files.
|
# Generate bundle manifests and metadata, then validate generated files.
|
||||||
.PHONY: bundle
|
.PHONY: bundle
|
||||||
bundle: manifests kustomize
|
bundle: manifests operator-sdk kustomize
|
||||||
operator-sdk generate kustomize manifests -q
|
bin/operator-sdk generate kustomize manifests -q
|
||||||
cd config/manager && $(KUSTOMIZE) edit set image controller=$(IMG)
|
cd config/manager && $(KUSTOMIZE) edit set image controller=$(DOCKER_ORGANIZATION)/$(DOCKER_REGISTRY):$(VERSION_TAG)
|
||||||
$(KUSTOMIZE) build config/manifests | operator-sdk generate bundle -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)
|
$(KUSTOMIZE) build config/manifests | bin/operator-sdk generate bundle -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)
|
||||||
operator-sdk bundle validate ./bundle
|
bin/operator-sdk bundle validate ./bundle
|
||||||
|
|
||||||
# Build the bundle image.
|
# Build the bundle image.
|
||||||
.PHONY: bundle-build
|
.PHONY: bundle-build
|
||||||
|
|
|
||||||
|
|
@ -1,94 +0,0 @@
|
||||||
all: manager
|
|
||||||
#TODO for removing after Makefile fix
|
|
||||||
# Run tests
|
|
||||||
ENVTEST_ASSETS_DIR=$(shell pwd)/testbin
|
|
||||||
test: generate fmt vet manifests
|
|
||||||
mkdir -p ${ENVTEST_ASSETS_DIR}
|
|
||||||
test -f ${ENVTEST_ASSETS_DIR}/setup-envtest.sh || curl -sSLo ${ENVTEST_ASSETS_DIR}/setup-envtest.sh https://raw.githubusercontent.com/kubernetes-sigs/controller-runtime/v0.7.0/hack/setup-envtest.sh
|
|
||||||
source ${ENVTEST_ASSETS_DIR}/setup-envtest.sh; fetch_envtest_tools $(ENVTEST_ASSETS_DIR); setup_envtest_env $(ENVTEST_ASSETS_DIR); go test ./... -coverprofile cover.out
|
|
||||||
|
|
||||||
# Build manager binary
|
|
||||||
manager: generate fmt vet
|
|
||||||
go build -o bin/manager main.go
|
|
||||||
|
|
||||||
# Run against the configured Kubernetes cluster in ~/.kube/config
|
|
||||||
run: generate fmt vet manifests
|
|
||||||
go run ./main.go
|
|
||||||
|
|
||||||
# Install CRDs into a cluster
|
|
||||||
install-crds: manifests kustomize
|
|
||||||
$(KUSTOMIZE) build config/crd | kubectl apply -f -
|
|
||||||
|
|
||||||
# Uninstall CRDs from a cluster
|
|
||||||
uninstall: manifests kustomize
|
|
||||||
$(KUSTOMIZE) build config/crd | kubectl delete -f -
|
|
||||||
|
|
||||||
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
|
|
||||||
deploy: manifests kustomize
|
|
||||||
cd config/manager && $(KUSTOMIZE) edit set image controller=${IMG}
|
|
||||||
$(KUSTOMIZE) build config/default | kubectl apply -f -
|
|
||||||
|
|
||||||
# UnDeploy controller from the configured Kubernetes cluster in ~/.kube/config
|
|
||||||
undeploy:
|
|
||||||
$(KUSTOMIZE) build config/default | kubectl delete -f -
|
|
||||||
|
|
||||||
# Generate manifests e.g. CRD, RBAC etc.
|
|
||||||
manifests: controller-gen
|
|
||||||
$(CONTROLLER_GEN) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=config/crd/bases
|
|
||||||
|
|
||||||
# Run go fmt against code
|
|
||||||
fmt:
|
|
||||||
go fmt ./...
|
|
||||||
|
|
||||||
# Run go vet against code
|
|
||||||
vet:
|
|
||||||
go vet ./...
|
|
||||||
|
|
||||||
# Generate code
|
|
||||||
generate: controller-gen
|
|
||||||
$(CONTROLLER_GEN) object:headerFile="hack/boilerplate.go.txt" paths="./..."
|
|
||||||
|
|
||||||
# Build the docker image
|
|
||||||
docker-build: test
|
|
||||||
docker build -t ${IMG} .
|
|
||||||
|
|
||||||
# Push the docker image
|
|
||||||
docker-push:
|
|
||||||
docker push ${IMG}
|
|
||||||
|
|
||||||
# Download controller-gen locally if necessary
|
|
||||||
CONTROLLER_GEN = $(shell pwd)/bin/controller-gen
|
|
||||||
controller-gen:
|
|
||||||
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.4.1)
|
|
||||||
|
|
||||||
# Download kustomize locally if necessary
|
|
||||||
KUSTOMIZE = $(shell pwd)/bin/kustomize
|
|
||||||
kustomize:
|
|
||||||
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v3@v3.8.7)
|
|
||||||
|
|
||||||
# go-get-tool will 'go get' any package $2 and install it to $1.
|
|
||||||
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
||||||
define go-get-tool
|
|
||||||
@[ -f $(1) ] || { \
|
|
||||||
set -e ;\
|
|
||||||
TMP_DIR=$$(mktemp -d) ;\
|
|
||||||
cd $$TMP_DIR ;\
|
|
||||||
go mod init tmp ;\
|
|
||||||
echo "Downloading $(2)" ;\
|
|
||||||
GOBIN=$(PROJECT_DIR)/bin go get $(2) ;\
|
|
||||||
rm -rf $$TMP_DIR ;\
|
|
||||||
}
|
|
||||||
endef
|
|
||||||
|
|
||||||
# Generate bundle manifests and metadata, then validate generated files.
|
|
||||||
.PHONY: bundle
|
|
||||||
bundle: manifests kustomize
|
|
||||||
operator-sdk generate kustomize manifests -q
|
|
||||||
cd config/manager && $(KUSTOMIZE) edit set image controller=$(IMG)
|
|
||||||
$(KUSTOMIZE) build config/manifests | operator-sdk generate bundle -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)
|
|
||||||
operator-sdk bundle validate ./bundle
|
|
||||||
|
|
||||||
# Build the bundle image.
|
|
||||||
.PHONY: bundle-build
|
|
||||||
bundle-build:
|
|
||||||
docker build -f bundle.Dockerfile -t $(BUNDLE_IMG) .
|
|
||||||
Loading…
Reference in New Issue