forked from scylladb/scylla-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
72 lines (55 loc) · 1.98 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Image URL to use all building/pushing image targets
REPO ?= scylladb/scylla-operator
TAG ?= $(shell git describe --tags --always)
IMG ?= $(REPO):$(TAG)
.EXPORT_ALL_VARIABLES:
DOCKER_BUILDKIT = 1
GO111MODULE = off
KUBEBUILDER_ASSETS = $(CURDIR)/bin/deps
PATH := $(CURDIR)/bin/deps:$(CURDIR)/bin/deps/go/bin:$(PATH)
GOROOT = $(CURDIR)/bin/deps/go
GOVERSION = $(shell go version)
all: test local-build
# Run tests
test: fmt vet vendor
./bin/deps/go/bin/go test ./pkg/... ./cmd/... -coverprofile cover.out
# Build local-build binary
local-build: fmt vet vendor
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o bin/manager github.com/scylladb/scylla-operator/cmd
# Run against the configured Kubernetes cluster in ~/.kube/config
run: fmt vet vendor
./bin/deps/go/bin/go run ./cmd operator --image="$(IMG)" --enable-admission-webhook=false
# Install CRDs into a cluster
install: manifests
kubectl apply -f config/crds
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
deploy: install
kubectl apply -f config/rbac
kustomize build config | kubectl apply -f -
# Generate manifests e.g. CRD, RBAC etc.
manifests: bin/deps
./bin/deps/go/bin/go run vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go all
cd config && kustomize edit set image scylladb/scylla-operator="$(IMG)"
kustomize build config > examples/generic/operator.yaml
kustomize build config > examples/gke/operator.yaml
# Run go fmt against code
fmt: bin/deps
./bin/deps/go/bin/go fmt ./pkg/... ./cmd/...
# Run go vet against code
vet: bin/deps
./bin/deps/go/bin/go vet ./pkg/... ./cmd/...
# Generate code
generate: bin/deps
./bin/deps/go/bin/go generate ./pkg/... ./cmd/...
# Ensure dependencies
vendor:
dep ensure -v
# Build the docker image
docker-build: bin/deps
GOVERSION="$(GOVERSION)" ./bin/deps/goreleaser --skip-validate --skip-publish --rm-dist
release: bin/deps
GOVERSION="$(GOVERSION)" ./bin/deps/goreleaser --rm-dist
bin/deps:
mkdir -p bin/deps
hack/binary_deps.py bin/deps
.PHONY: vendor