forked from slok/kubewebhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
122 lines (97 loc) · 3.08 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Name of this service/application
SERVICE_NAME := kubewebhook
# Path of the go service inside docker
DOCKER_GO_SERVICE_PATH := /src
# Shell to use for running scripts
SHELL := $(shell which bash)
# Get docker path or an empty string
DOCKER := $(shell command -v docker)
# Get the main unix group for the user running make (to be used by docker-compose later)
GID := $(shell id -g)
# Get the unix user id for the user running make (to be used by docker-compose later)
UID := $(shell id -u)
# Commit hash from git
COMMIT=$(shell git rev-parse --short HEAD)
# cmds
UNIT_TEST_CMD := ./hack/scripts/unit-test.sh
INTEGRATION_TEST_CMD := ./hack/scripts/run-integration.sh
MOCKS_CMD := ./hack/scripts/mockgen.sh
DOCKER_RUN_CMD := docker run -v ${PWD}:$(DOCKER_GO_SERVICE_PATH) --rm -it $(SERVICE_NAME)
DOCKER_DOCS_RUN_CMD := docker run -v ${PWD}/docs:/docs --rm -it -p 1313:1313 $(SERVICE_NAME)-docs
DEPS_CMD := GO111MODULE=on go mod tidy && GO111MODULE=on go mod vendor
K8S_VERSION := "1.12.9"
SET_K8S_DEPS_CMD := GO111MODULE=on go mod edit \
-require=k8s.io/apimachinery@kubernetes-${K8S_VERSION} \
-require=k8s.io/api@kubernetes-${K8S_VERSION} \
-require=k8s.io/client-go@kubernetes-${K8S_VERSION} \
-require=k8s.io/api@kubernetes-${K8S_VERSION} \
&& \
$(DEPS_CMD)
# environment dirs
DEV_DIR := docker/dev
# The default action of this Makefile is to build the development docker image
.PHONY: default
default: build
# Test if the dependencies we need to run this Makefile are installed
.PHONY: deps-development
deps-development:
ifndef DOCKER
@echo "Docker is not available. Please install docker"
@exit 1
endif
# Build the development docker images
.PHONY: build
build:
docker build -t $(SERVICE_NAME) --build-arg uid=$(UID) --build-arg gid=$(GID) -f ./docker/dev/Dockerfile .
docker build -t $(SERVICE_NAME)-docs --build-arg uid=$(UID) --build-arg gid=$(GID) -f ./docker/docs/Dockerfile .
# Shell the development docker image
.PHONY: build
shell: build
$(DOCKER_RUN_CMD) /bin/bash
# Build production stuff.
build-binary:
$(DOCKER_RUN_CMD) /bin/sh -c '$(BUILD_BINARY_CMD)'
.PHONY: build-image
build-image:
$(BUILD_IMAGE_CMD)
# Test stuff in dev
.PHONY: unit-test
unit-test: build
$(DOCKER_RUN_CMD) /bin/sh -c '$(UNIT_TEST_CMD)'
.PHONY: integration-test
integration-test: build
$(INTEGRATION_TEST_CMD)
.PHONY: test
test: unit-test
# Test stuff in ci
.PHONY: ci-unit-test
ci-unit-test:
$(UNIT_TEST_CMD)
.PHONY: ci-integration-test
ci-integration-test:
$(INTEGRATION_TEST_CMD)
.PHONY: ci
ci: ci-unit-test ci-integration-test
# Mocks stuff in dev
.PHONY: mocks
mocks: build
$(DOCKER_RUN_CMD) /bin/sh -c '$(MOCKS_CMD)'
.PHONY: godoc
godoc:
godoc -http=":6060"
.PHONY: docs-generate
docs-generate: build
$(DOCKER_DOCS_RUN_CMD) /bin/bash -c "cd src && hugo"
.PHONY: docs-serve
docs-serve: build
$(DOCKER_DOCS_RUN_CMD) /bin/bash -c "cd src && hugo server --bind=0.0.0.0"
.PHONY: deps
deps:
$(DEPS_CMD)
.PHONY: set-k8s-deps
set-k8s-deps:
$(SET_K8S_DEPS_CMD)
# Creates certificates for the integration test.
.PHONY: create-integration-test-certs
create-integration-test-certs:
./hack/scripts/integration-test-certs.sh