-
Notifications
You must be signed in to change notification settings - Fork 16
/
Makefile
61 lines (46 loc) · 1.56 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
# Image URL to use all building/pushing image targets
IMG ?= postmates/configurable-hpa
# To perform tests we need a lot of additional packages the image, including kubebuilder
# So we can't test in in the 'release' docker image
TEST_IMAGE_TAG ?= test-v2
all: test manager
# Run tests
test: generate fmt vet manifests
go test ./pkg/... ./cmd/... -coverprofile cover.out
# Build manager binary
manager: generate fmt vet
go build -o bin/manager github.com/postmates/configurable-hpa/cmd/manager
# Run against the configured Kubernetes cluster in ~/.kube/config
run: generate fmt vet
go run ./cmd/manager/main.go
# Install CRDs into a cluster
install: manifests
kubectl apply -f config/crds
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
deploy: manifests
kubectl apply -f config/crds
kustomize build config/default | 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
# 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/...
# Build the docker image, should be done only for test
# For production, the image is built in the DroneCI
# (check .drone.yml)
docker-build: test
docker build . -t ${IMG}:stable
# Build the docker image for test
docker-build-test-image:
docker build . --squash -f Dockerfile.test -t ${IMG}:${TEST_IMAGE_TAG}
docker-push-test-image:
docker push ${IMG}:${TEST_IMAGE_TAG}
e2e:
cd tests; python -m unittest *.py