-
Notifications
You must be signed in to change notification settings - Fork 89
/
Makefile
214 lines (174 loc) · 9.85 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
DOCKER_HUB_REPO ?= openstorage
DOCKER_HUB_STORK_IMAGE ?= stork
DOCKER_HUB_STORK_TAG ?= dev
DOCKER_HUB_CMD_EXECUTOR_IMAGE ?= cmdexecutor
DOCKER_HUB_CMD_EXECUTOR_TAG ?= dev
DOCKER_HUB_STORK_TEST_IMAGE ?= stork_test
DOCKER_HUB_STORK_TEST_TAG ?= dev
STORK_IMG=$(DOCKER_HUB_REPO)/$(DOCKER_HUB_STORK_IMAGE):$(DOCKER_HUB_STORK_TAG)
CMD_EXECUTOR_IMG=$(DOCKER_HUB_REPO)/$(DOCKER_HUB_CMD_EXECUTOR_IMAGE):$(DOCKER_HUB_CMD_EXECUTOR_TAG)
STORK_TEST_IMG=$(DOCKER_HUB_REPO)/$(DOCKER_HUB_STORK_TEST_IMAGE):$(DOCKER_HUB_STORK_TEST_TAG)
DOCK_BUILD_CNT := golang:1.21.11
# DO NOT update this to the latest version. We need to keep this old enough so that
# px_statfs.so can be loaded on OCP 4.12 which uses RHEL8. Use "ldd -r -v ./bin/px_statfs.so" to
# see which glibc will be needed to be present on the host where the .so gets loaded.
DOCK_GCC_BUILD_CNT := gcc:10.5.0
PX_STATFS_SRC_DIR := /go/src/github.com/libopenstorage/stork/drivers/volume/portworx/px-statfs
PX_STATFS_DEST_DIR := /go/src/github.com/libopenstorage/stork/bin
ifndef PKGS
PKGS := $(shell docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c "cd /go/src/github.com/libopenstorage/stork && go list -buildvcs=false ./... 2>&1 | \
grep -v 'github.com/libopenstorage/stork/vendor' | \
grep -v 'pkg/client/informers/externalversions' | \
grep -v versioned | \
grep -v 'pkg/apis/stork' | \
grep -v 'hack'")
endif
GO_FILES := $(shell find . -name '*.go' | grep -v vendor | \
grep -v '\.pb\.go' | \
grep -v '\.pb\.gw\.go' | \
grep -v 'externalversions' | \
grep -v 'versioned' | \
grep -v 'generated' | \
grep -v 'hack')
ifeq ($(BUILD_TYPE),debug)
BUILDFLAGS += -gcflags "-N -l"
endif
RELEASE_VER ?= 99.9.9
BASE_DIR := $(shell git rev-parse --show-toplevel)
GIT_SHA := $(shell git rev-parse --short HEAD)
BIN :=$(BASE_DIR)/bin
VERSION = $(RELEASE_VER)-$(GIT_SHA)
LDFLAGS += "-s -w -X github.com/libopenstorage/stork/pkg/version.Version=$(VERSION)"
BUILD_OPTIONS := -ldflags=$(LDFLAGS) -buildvcs=false
SECCOMP_OPTIONS := --security-opt seccomp=unconfined
.DEFAULT_GOAL=all
.PHONY: test clean vendor vendor-update px-statfs
all: stork storkctl cmdexecutor pretest px-statfs
vendor-update:
go mod download
vendor:
go mod tidy
go mod vendor
sed -i '1 i\// +build skipcompile\n' vendor/kubevirt.io/client-go/kubecli/kubevirt_test_utils.go
lint:
GO111MODULE=off go get -u golang.org/x/lint/golint
for file in $(GO_FILES); do \
echo "running lint on ${file}" \
golint $${file}; \
if [ -n "$$(golint $${file})" ]; then \
exit 1; \
fi; \
done
vet:
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c "cd /go/src/github.com/libopenstorage/stork; \
go vet $(PKGS); \
go vet -tags unittest $(PKGS); \
go vet -tags integrationtest github.com/libopenstorage/stork/test/integration_test"
staticcheck:
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c "cd /go/src/github.com/libopenstorage/stork; \
go install honnef.co/go/tools/cmd/staticcheck@v0.4.6; \
git config --global --add safe.directory /go/src/github.com/libopenstorage/stork; \
staticcheck $(PKGS); \
staticcheck -tags integrationtest test/integration_test/*.go;staticcheck -tags unittest $(PKGS)"
mockgen:
mockgen -destination=pkg/mock/cache/cache.mock.go -package=cache github.com/libopenstorage/stork/pkg/cache SharedInformerCache
mockgen -destination=pkg/mock/kubevirtdynamic/kubevirt-dynamic.ops.mock.go -package=kubevirtdynamic github.com/portworx/sched-ops/k8s/kubevirt-dynamic Ops
mockgen -destination=pkg/mock/kubevirtdynamic/kubevirt-dynamic.vmiops.mock.go -package=kubevirtdynamic github.com/portworx/sched-ops/k8s/kubevirt-dynamic VirtualMachineInstanceOps
mockgen -destination=pkg/mock/kubevirt/kubevirt.ops.mock.go -package=kubevirt github.com/portworx/sched-ops/k8s/kubevirt Ops
mockgen -destination=pkg/mock/osd/driver.mock.go -package=osd github.com/libopenstorage/openstorage/volume VolumeDriver
mockgen -destination=drivers/volume/mock/volume/driver.mock.go -package=drivervolume github.com/libopenstorage/stork/drivers/volume Driver
# NOTE: Use go.uber.org/mock/mockgen to generate mock for the below file. It would fail with golang/mock/mockgen since it doesn't
# support generating mocks for multi-level interfaces.
mockgen -source=vendor/github.com/portworx/sched-ops/k8s/externalstorage/externalstorage.go -destination=pkg/snapshot/controllers/snapshot.mock.go
errcheck:
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c "cd /go/src/github.com/libopenstorage/stork; \
go install github.com/kisielk/errcheck@v1.7.0; \
git config --global --add safe.directory /go/src/github.com/libopenstorage/stork; \
errcheck -verbose -blank $(PKGS); \
errcheck -verbose -blank -tags unittest $(PKGS); \
errcheck -verbose -blank -tags integrationtest /go/src/github.com/libopenstorage/stork/test/integration_test"
check-fmt:
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c "cd /go/src/github.com/libopenstorage/stork; \
diff -u <(echo -n) <(gofmt -l -d -s -e $(GO_FILES));"
do-fmt:
gofmt -s -w $(GO_FILES)
gocyclo:
GO111MODULE=off go get -u github.com/fzipp/gocyclo
gocyclo -over 15 $(GO_FILES)
pretest: check-fmt vet errcheck staticcheck
test:
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c 'cd /go/src/github.com/libopenstorage/stork; \
echo "" > coverage.txt; \
for pkg in $(PKGS); do \
go test --timeout 1800s -v -tags unittest -coverprofile=profile.out -covermode=atomic $(BUILD_OPTIONS) $${pkg} || exit 1; \
if [ -f profile.out ]; then \
cat profile.out >> coverage.txt; \
rm profile.out; \
fi; \
done'
integration-test:
@echo "Building stork integration tests"
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c 'cd /go/src/github.com/libopenstorage/stork/test/integration_test && \
CGO_ENABLED=0 GOOS=linux go test -tags integrationtest $(BUILD_OPTIONS) -v -c -o stork.test;'
integration-test-container:
@echo "Building container: docker build --tag $(STORK_TEST_IMG) -f Dockerfile ."
@rm -rf test/integration_test/stork-specs && mkdir -p test/integration_test/stork-specs
@cp -r specs/* test/integration_test/stork-specs
@cd test/integration_test && sudo docker build --tag $(STORK_TEST_IMG) -f Dockerfile .
integration-test-deploy:
sudo docker push $(STORK_TEST_IMG)
codegen:
@echo "Generating CRD"
(GOFLAGS="" hack/update-codegen.sh)
stork:
@echo "Building the stork binary"
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c 'cd /go/src/github.com/libopenstorage/stork/cmd/stork && \
CGO_ENABLED=0 GOOS=linux go build $(BUILD_OPTIONS) -o /go/src/github.com/libopenstorage/stork/bin/stork;'
cmdexecutor:
@echo "Building command executor binary"
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c 'cd /go/src/github.com/libopenstorage/stork/cmd/cmdexecutor && \
GOOS=linux go build $(BUILD_OPTIONS) -o /go/src/github.com/libopenstorage/stork/bin/cmdexecutor;'
storkctl:
@echo "Building storkctl"
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c 'cd /go/src/github.com/libopenstorage/stork/cmd/storkctl; \
CGO_ENABLED=0 GOOS=linux go build $(BUILD_OPTIONS) -o /go/src/github.com/libopenstorage/stork/bin/linux/storkctl; \
CGO_ENABLED=0 GOOS=darwin go build $(BUILD_OPTIONS) -o /go/src/github.com/libopenstorage/stork/bin/darwin/storkctl; \
CGO_ENABLED=0 GOOS=windows go build $(BUILD_OPTIONS) -o /go/src/github.com/libopenstorage/stork/bin/windows/storkctl.exe;'
px-statfs:
@echo "Building px_statfs.so"
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_GCC_BUILD_CNT) \
/bin/bash -c 'cd $(PX_STATFS_SRC_DIR) && \
gcc -g -shared -fPIC -o $(PX_STATFS_DEST_DIR)/px_statfs.so px_statfs.c -ldl -D__USE_LARGEFILE64 && \
sha256sum $(PX_STATFS_DEST_DIR)/px_statfs.so | cut -d " " -f 1 > $(PX_STATFS_DEST_DIR)/px_statfs.so.sha256;'
container: help
@echo "Building container: docker build --build-arg VERSION=$(DOCKER_HUB_STORK_TAG) --build-arg RELEASE=$(DOCKER_HUB_STORK_TAG) --tag $(STORK_IMG) -f Dockerfile . "
sudo docker build --build-arg VERSION=$(DOCKER_HUB_STORK_TAG) --build-arg RELEASE=$(DOCKER_HUB_STORK_TAG) --tag $(STORK_IMG) -f Dockerfile .
@echo "Building container: docker build --tag $(CMD_EXECUTOR_IMG) -f Dockerfile.cmdexecutor ."
sudo docker build --tag $(CMD_EXECUTOR_IMG) -f Dockerfile.cmdexecutor .
help:
@echo "Updating help file"
docker run --rm $(SECCOMP_OPTIONS) -v $(shell pwd):/go/src/github.com/libopenstorage/stork $(DOCK_BUILD_CNT) \
/bin/bash -c "cd /go/src/github.com/libopenstorage/stork; \
apt-get update -y && apt-get install -y go-md2man; \
go-md2man -in help.md -out help.1; \
go-md2man -in help-cmdexecutor.md -out help-cmdexecutor.1;"
deploy:
sudo docker push $(STORK_IMG)
sudo docker push $(CMD_EXECUTOR_IMG)
clean:
-rm -rf $(BIN)
@echo "Deleting image "$(STORK_IMG)
-sudo docker rmi -f $(STORK_IMG)
@echo "Deleting image "$(CMD_EXECUTOR_IMG)
-sudo docker rmi -f $(CMD_EXECUTOR_IMG)
go clean -i $(PKGS)