This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Makefile
executable file
·320 lines (267 loc) · 12.5 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
GCLOUD_PROJECT ?= kubeflow-images-public
GOLANG_VERSION ?= 1.13.7
GOPATH ?= $(HOME)/go
# To build without the cache set the environment variable
# export DOCKER_BUILD_OPTS=--no-cache
KFCTL_IMG ?= gcr.io/$(GCLOUD_PROJECT)/kfctl
TAG ?= $(eval TAG := $(shell git describe --tags --long --always))$(TAG)
REPO ?= $(shell echo $$(cd ../kubeflow && git config --get remote.origin.url) | sed 's/git@\(.*\):\(.*\).git$$/https:\/\/\1\/\2/')
BRANCH ?= $(shell cd ../kubeflow && git branch | grep '^*' | awk '{print $$2}')
KFCTL_TARGET ?= kfctl
MOUNT_KUBE ?= -v $(HOME)/.kube:/root/.kube
MOUNT_GCP ?= -v $(HOME)/.config:/root/.config
# set to -V
VERBOSE ?=
PLUGINS_ENVIRONMENT ?= $(GOPATH)/src/github.com/kubeflow/kfctl/bin
export GO111MODULE = on
export GO = go
ARCH ?= $(shell ${GO} env|grep GOOS|cut -d'=' -f2|tr -d '"')
OPERATOR_IMG ?= kubeflow-operator
IMAGE_BUILDER ?= docker
DOCKERFILE ?= Dockerfile
OPERATOR_BINARY_NAME ?= $(shell basename ${PWD})
# Location of junit file
JUNIT_FILE ?= /tmp/report.xml
%.so:
cd cmd/plugins/$* && \
${GO} build -i -gcflags '-N -l' -o ../../../bin/$*.so -buildmode=plugin $*.go
%.init:
@echo kfctl init test/$* $(VERBOSE) --platform $* --project $(GCLOUD_PROJECT) --version master && \
PLUGINS_ENVIRONMENT=$(PLUGINS_ENVIRONMENT) kfctl init $(PWD)/test/$* $(VERBOSE) --platform $* --project $(GCLOUD_PROJECT) --version master
%.init-no-platform:
@echo kfctl init test/$* $(VERBOSE) --version master && \
kfctl init $(PWD)/test/$* $(VERBOSE) --version master
%.generate:
@echo kfctl generate all $(VERBOSE) '(--platform '$*')' && \
cd test/$* && \
PLUGINS_ENVIRONMENT=$(PLUGINS_ENVIRONMENT) kfctl generate all $(VERBOSE) --mount-local --email gcp-deploy@$(GCLOUD_PROJECT).iam.gserviceaccount.com
%.md:
all: build
auth:
gcloud auth configure-docker
# Run go fmt against code
fmt:
@${GO} fmt ./config ./cmd/... ./pkg/...
# Run go vet against code
vet:
@${GO} vet ./config ./cmd/... ./pkg/...
generate:
@${GO} generate ./config ./pkg/apis/apps/kfdef/... ./pkg/utils/... ./pkg/kfapp/minikube ./pkg/kfapp/gcp/... ./cmd/kfctl/...
${GOPATH}/bin/deepcopy-gen:
GO111MODULE=on ${GO} get k8s.io/code-generator/cmd/deepcopy-gen
config/zz_generated.deepcopy.go: config/types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/config -O zz_generated.deepcopy \
-p config
pkg/apis/apps/kfdef/v1alpha1/zz_generated.deepcopy.go: pkg/apis/apps/kfdef/v1alpha1/application_types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/apis/apps/kfdef/... -O zz_generated.deepcopy \
-p pkg/apis/apps/kfdef/v1alpha1/
pkg/apis/apps/kfdef/v1beta1/zz_generated.deepcopy.go: pkg/apis/apps/kfdef/v1beta1/application_types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/apis/apps/kfdef/... -O zz_generated.deepcopy \
-p pkg/apis/apps/kfdef/v1beta1/
pkg/apis/apps/kfdef/v1/zz_generated.deepcopy.go: pkg/apis/apps/kfdef/v1/application_types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/apis/apps/kfdef/... -O zz_generated.deepcopy \
-p pkg/apis/apps/kfdef/v1/
pkg/apis/apps/plugins/gcp/v1alpha1/zz_generated.deepcopy.go: pkg/apis/apps/plugins/gcp/v1alpha1/types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/apis/apps/plugins/gcp/... -O zz_generated.deepcopy \
-p pkg/apis/apps/plugins/gcp/v1alpha1/
pkg/apis/apps/plugins/aws/v1alpha1/zz_generated.deepcopy.go: pkg/apis/apps/plugins/aws/v1alpha1/types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/apis/apps/plugins/aws/... -O zz_generated.deepcopy \
-p pkg/apis/apps/plugins/aws/v1alpha1/
pkg/kfconfig/zz_generated.deepcopy.go: pkg/kfconfig/types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/kfconfig/... -O zz_generated.deepcopy \
-p pkg/kfconfig/
pkg/kfconfig/awsplugin/zz_generated.deepcopy.go: pkg/kfconfig/awsplugin/types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/kfconfig/awsplugin/... -O zz_generated.deepcopy \
-p pkg/kfconfig/awsplugin/
pkg/kfconfig/gcpplugin/zz_generated.deepcopy.go: pkg/kfconfig/gcpplugin/types.go
${GOPATH}/bin/deepcopy-gen -h hack/boilerplate.go.txt -i github.com/kubeflow/kfctl/v3/pkg/kfconfig/gcpplugin/... -O zz_generated.deepcopy\
-p pkg/kfconfig/gcpplugin/
deepcopy: ${GOPATH}/bin/deepcopy-gen config/zz_generated.deepcopy.go \
pkg/apis/apps/kfdef/v1alpha1/zz_generated.deepcopy.go \
pkg/apis/apps/kfdef/v1beta1/zz_generated.deepcopy.go \
pkg/apis/apps/kfdef/v1/zz_generated.deepcopy.go \
pkg/apis/apps/plugins/gcp/v1alpha1/zz_generated.deepcopy.go \
pkg/apis/apps/plugins/aws/v1alpha1/zz_generated.deepcopy.go \
pkg/kfconfig/zz_generated.deepcopy.go \
pkg/kfconfig/awsplugin/zz_generated.deepcopy.go \
pkg/kfconfig/gcpplugin/zz_generated.deepcopy.go
build: build-kfctl
build-kfctl: deepcopy generate fmt vet
# TODO(swiftdiaries): figure out import conflict errors for windows
#CGO_ENABLED=0 GOOS=windows GOARCH=amd64 ${GO} build -gcflags '-N -l' -ldflags "-X main.VERSION=$(TAG)" -o bin/windows/kfctl.exe cmd/kfctl/main.go
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 ${GO} build -gcflags '-N -l' -ldflags "-X main.VERSION=${TAG}" -o bin/darwin/kfctl cmd/kfctl/main.go
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 ${GO} build -gcflags '-N -l' -ldflags "-X main.VERSION=$(TAG)" -o bin/linux/kfctl cmd/kfctl/main.go
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 ${GO} build -gcflags '-N -l' -ldflags "-X main.VERSION=$(TAG)" -o bin/arm64/kfctl cmd/kfctl/main.go
CGO_ENABLED=0 GOOS=linux GOARCH=ppc64le ${GO} build -gcflags '-N -l' -ldflags "-X main.VERSION=$(TAG)" -o bin/ppc64le/kfctl cmd/kfctl/main.go
cp bin/$(ARCH)/kfctl bin/kfctl
# Fast rebuilds useful for development.
# Does not regenerate code; assumes you already ran build-kfctl once.
build-kfctl-fast: fmt vet
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 ${GO} build -gcflags '-N -l' -ldflags "-X main.VERSION=$(TAG)" -o bin/linux/kfctl cmd/kfctl/main.go
# Release tarballs suitable for upload to GitHub release pages
build-kfctl-tgz: build-kfctl
chmod a+rx ./bin/kfctl
rm -f bin/*.tgz
cd bin/linux && tar -cvzf kfctl_$(TAG)_linux.tar.gz ./kfctl
cd bin/darwin && tar -cvzf kfctl_${TAG}_darwin.tar.gz ./kfctl
cd bin/arm64 && tar -cvzf kfctl_${TAG}_arm64.tar.gz ./kfctl
cd bin/ppc64le && tar -cvzf kfctl_${TAG}_ppc64le.tar.gz ./kfctl
build-and-push-operator: build-operator push-operator
build-push-update-operator: build-operator push-operator update-operator-image
# Build operator image
build-operator:
go mod vendor
# Fix duplicated logrus library (Sirupsen/logrus and sirupsen/logrus) bug
# due to the two different logrus versions that kfctl is using.
pushd vendor/github.com/Sirupsen/logrus/ && \
echo '\
// +build linux aix\n\
package logrus\n\
import "golang.org/x/sys/unix"\n\
func isTerminal(fd int) bool {\n\
_, err := unix.IoctlGetTermios(fd, unix.TCGETS)\n\
return err == nil\n\
} ' > terminal_check_unix.go && \
popd
ifneq ($(DOCKERFILE), Dockerfile)
pushd build &&\
cp Dockerfile Dockerfile.bckp &&\
cp ${DOCKERFILE} Dockerfile &&\
popd
endif
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 ${GO} build -a -o build/_output/bin/$(OPERATOR_BINARY_NAME) cmd/manager/main.go
${IMAGE_BUILDER} build build -t ${OPERATOR_IMG}
ifneq ($(DOCKERFILE), Dockerfile)
pushd build &&\
cp Dockerfile.bckp Dockerfile &&\
popd
endif
# push operator image and update deployment files.
push-operator:
${IMAGE_BUILDER} push ${OPERATOR_IMG}
update-operator-image:
# Use perl instead of sed to avoid OSX/Linux compatibility issue:
# https://stackoverflow.com/questions/34533893/sed-command-creating-unwanted-duplicates-of-file-with-e-extension
perl -pi -e 's@image: .*@image: '"${OPERATOR_IMG}"'@' ./deploy/operator.yaml
# push the releases to a GitHub page
push-to-github-release: build-kfctl-tgz
github-release upload \
--user kubeflow \
--repo kubeflow \
--tag $(TAG) \
--name "kfctl_$(TAG)_linux.tar.gz" \
--file bin/linux/kfctl_$(TAG)_linux.tar.gz
github-release upload \
--user kubeflow \
--repo kubeflow \
--tag $(TAG) \
--name "kfctl_$(TAG)_darwin.tar.gz" \
--file bin/darwin/kfctl_$(TAG)_darwin.tar.gz
github-release upload \
--user kubeflow \
--repo kubeflow \
--tag $(TAG) \
--name "kfctl_$(TAG)_arm64.tar.gz" \
--file bin/arm64/kfctl_$(TAG)_arm64.tar.gz
github-release upload \
--user kubeflow \
--repo kubeflow \
--tag $(TAG) \
--name "kfctl_$(TAG)_ppc64le.tar.gz" \
--file bin/ppc64le/kfctl_$(TAG)_ppc64le.tar.gz
build-kfctl-container:
DOCKER_BUILDKIT=1 docker build \
--build-arg REPO="$(REPO)" \
--build-arg BRANCH=$(BRANCH) \
--build-arg GOLANG_VERSION=$(GOLANG_VERSION) \
--build-arg VERSION=$(TAG) \
--target=$(KFCTL_TARGET) \
--tag $(KFCTL_IMG)/builder:$(TAG) .
@echo Built $(KFCTL_IMG)/builder:$(TAG)
mkdir -p bin
docker create \
--name=temp_kfctl_container \
$(KFCTL_IMG)/builder:$(TAG)
docker cp temp_kfctl_container:/usr/local/bin/kfctl ./bin/kfctl
docker rm temp_kfctl_container
@echo Exported kfctl binary to bin/kfctl
# build containers using GCLOUD_PROJECT
build-gcb:
gcloud --project=$(GCLOUD_PROJECT)\
builds submit \
--machine-type=n1-highcpu-32 \
--substitutions=TAG_NAME=$(TAG)
--config=cloudbuild.yaml .
# Build but don't attach the latest tag. This allows manual testing/inspection of the image
# first.
push: build
docker push $(BOOTSTRAPPER_IMG):$(TAG)
@echo Pushed $(BOOTSTRAPPER_IMG):$(TAG)
push-latest: push
gcloud container images add-tag --quiet $(BOOTSTRAPPER_IMG):$(TAG) $(BOOTSTRAPPER_IMG):latest --verbosity=info
echo created $(BOOTSTRAPPER_IMG):latest
push-kfctl-container: build-kfctl-container
docker push $(KFCTL_IMG):$(TAG)
@echo Pushed $(KFCTL_IMG):$(TAG)
push-kfctl-container-latest: push-kfctl-container
gcloud container images add-tag --quiet $(KFCTL_IMG):$(TAG) $(KFCTL_IMG):latest --verbosity=info
@echo created $(KFCTL_IMG):latest
install: build-kfctl dockerfordesktop.so
@echo copying bin/kfctl to /usr/local/bin
@cp bin/kfctl /usr/local/bin
run-kfctl-container: build-kfctl-container
docker run $(MOUNT_KUBE) $(MOUNT_GCP) --entrypoint /bin/sh -it $(KFCTL_IMG):$(TAG)
#***************************************************************************************************
# Build a docker container that can be used to build kfctl
#
# The rules in this section are used to build the docker image that provides
# a suitable go build environment for kfctl
build-builder-container:
docker build \
--build-arg GOLANG_VERSION=$(GOLANG_VERSION) \
--target=builder \
--tag $(KFCTL_IMG):$(TAG) .
@echo Built $(KFCTL_IMG):$(TAG)
# build containers using GCLOUD_PROJECT
build-builder-container-gcb:
gcloud --project=$(GCLOUD_PROJECT) \
builds submit \
--machine-type=n1-highcpu-32 \
--substitutions=TAG_NAME=$(TAG),_TARGET=builder \
--config=cloudbuild.yaml .
#***************************************************************************************************
clean:
rm -rf test && mkdir test
doc:
doctoc ./cmd/kfctl/README.md README.md k8sSpec/README.md developer_guide.md
#**************************************************************************************************
# checks licenses
check-licenses:
./third_party/check-license.sh
# rules to run unittests
#
test: build-kfctl check-licenses
go test ./... -v
# Unit test invoked by Github Action
go-unittests-junit:
echo Running tests ... junit_file=$(JUNIT_FILE)
mkdir -p $(JUNIT_DIR)
go test ./... -v 2>&1 | go-junit-report > $(JUNIT_FILE) --set-exit-code
#***************************************************************************************************
test-init: clean install dockerfordesktop.init minikube.init gcp.init none.init-no-platform
test-generate: test-init dockerfordesktop.generate minikube.generate gcp.generate none.generate
test-apply: test-generate dockerfordesktop.apply minikube.apply gcp.apply none.apply