forked from scylladb/scylla-operator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
62 lines (47 loc) · 1.57 KB
/
Makefile
File metadata and controls
62 lines (47 loc) · 1.57 KB
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
# Image URL to use all building/pushing image targets
REPO ?= "yanniszark/scylla-operator"
TAG ?= "v0.0-$(shell git rev-parse --short HEAD)"
IMG ?= "${REPO}:${TAG}"
all: test local-build
# Run tests
test: generate fmt vet manifests vendor
go test ./pkg/... ./cmd/... -coverprofile cover.out
# Build local-build binary
local-build: generate fmt vet vendor
go build -o bin/manager github.com/scylladb/scylla-operator/cmd
# Run against the configured Kubernetes cluster in ~/.kube/config
run: generate fmt vet vendor
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:
go run vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go all
cd config && kustomize edit set image yanniszark/scylla-operator="${IMG}"
kustomize build config > examples/generic/operator.yaml
kustomize build config > examples/gke/operator.yaml
kustomize build config > examples/minikube/operator.yaml
# Run go fmt against code
fmt:
go fmt ./pkg/... ./cmd/...
# Run go vet against code
vet:
go vet ./pkg/... ./cmd/...
# Generate code
generate:
go generate ./pkg/... ./cmd/...
# Ensure dependencies
vendor:
dep ensure -v
# Build the docker image
docker-build: test
docker build . -t "${IMG}"
# Push the docker image
docker-push:
docker push "${IMG}"
publish: docker-build docker-push