mirror of
https://github.com/prometheus-operator/prometheus-operator.git
synced 2025-04-16 09:16:38 +00:00
73 lines
2.4 KiB
Makefile
73 lines
2.4 KiB
Makefile
REPO?=quay.io/coreos/prometheus-operator
|
|
TAG?=$(shell git rev-parse --short HEAD)
|
|
NAMESPACE?=po-e2e-$(shell LC_CTYPE=C tr -dc a-z0-9 < /dev/urandom | head -c 13 ; echo '')
|
|
KUBECONFIG?=$(HOME)/.kube/config
|
|
|
|
PROMU := $(GOPATH)/bin/promu
|
|
PREFIX ?= $(shell pwd)
|
|
|
|
pkgs = $(shell go list ./... | grep -v /vendor/ | grep -v /test/)
|
|
|
|
all: check-license format build test
|
|
|
|
build: promu
|
|
@$(PROMU) build --prefix $(PREFIX)
|
|
|
|
crossbuild: promu
|
|
@$(PROMU) crossbuild
|
|
|
|
test:
|
|
@go test -short $(pkgs)
|
|
|
|
format:
|
|
go fmt $(pkgs)
|
|
|
|
check-license:
|
|
./scripts/check_license.sh
|
|
|
|
container:
|
|
docker build -t $(REPO):$(TAG) .
|
|
|
|
e2e-test:
|
|
go test -timeout 20m -v ./test/migration/ $(TEST_RUN_ARGS) --kubeconfig=$(KUBECONFIG) --operator-image=$(REPO):$(TAG) --namespace=$(NAMESPACE)
|
|
go test -timeout 20m -v ./test/e2e/ $(TEST_RUN_ARGS) --kubeconfig=$(KUBECONFIG) --operator-image=$(REPO):$(TAG) --namespace=$(NAMESPACE)
|
|
|
|
e2e-status:
|
|
kubectl get prometheus,alertmanager,servicemonitor,statefulsets,deploy,svc,endpoints,pods,cm,secrets,replicationcontrollers --all-namespaces
|
|
|
|
e2e:
|
|
$(MAKE) container
|
|
$(MAKE) e2e-test
|
|
|
|
clean-e2e:
|
|
kubectl -n $(NAMESPACE) delete prometheus,alertmanager,servicemonitor,statefulsets,deploy,svc,endpoints,pods,cm,secrets,replicationcontrollers --all
|
|
kubectl delete namespace $(NAMESPACE)
|
|
|
|
promu:
|
|
@go get -u github.com/prometheus/promu
|
|
|
|
embedmd:
|
|
@go get github.com/campoy/embedmd
|
|
|
|
apidocgen:
|
|
@go install github.com/coreos/prometheus-operator/cmd/apidocgen
|
|
|
|
docs: embedmd apidocgen
|
|
$(GOPATH)/bin/embedmd -w `find Documentation -name "*.md"`
|
|
$(GOPATH)/bin/apidocgen pkg/client/monitoring/v1alpha1/types.go > Documentation/api.md
|
|
|
|
generate: jsonnet-docker
|
|
docker run --rm -v `pwd`:/go/src/github.com/coreos/prometheus-operator po-jsonnet make jsonnet generate-bundle docs
|
|
|
|
generate-bundle:
|
|
hack/generate-bundle.sh
|
|
|
|
jsonnet:
|
|
jsonnet -J /ksonnet-lib hack/generate/prometheus-operator.jsonnet | json2yaml > example/non-rbac/prometheus-operator.yaml
|
|
jsonnet -J /ksonnet-lib hack/generate/prometheus-operator-rbac.jsonnet | json2yaml > example/rbac/prometheus-operator/prometheus-operator.yaml
|
|
jsonnet -J /ksonnet-lib hack/generate/prometheus-operator-rbac.jsonnet | json2yaml > contrib/kube-prometheus/manifests/prometheus-operator/prometheus-operator.yaml
|
|
|
|
jsonnet-docker:
|
|
docker build -f scripts/jenkins/jsonnet/Dockerfile -t po-jsonnet .
|
|
|
|
.PHONY: all build crossbuild test format check-license container e2e-test e2e-status e2e clean-e2e embedmd apidocgen docs
|