forked from kubernetes/cloud-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
234 lines (198 loc) · 8.23 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
# Copyright 2020 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.
#
ROOT ?= $(shell pwd)
SHELL := /bin/bash
GOOS ?= $(shell go env GOOS)
GOARCH ?= $(shell go env GOARCH)
GOPROXY ?= $(shell go env GOPROXY)
GIT_VERSION := $(shell git describe --dirty --tags --match='v*')
VERSION ?= $(GIT_VERSION)
IMAGE_REPOSITORY ?= provider-aws/cloud-controller-manager
IMAGE ?= $(IMAGE_REPOSITORY):$(VERSION)
OUTPUT ?= $(shell pwd)/_output
INSTALL_PATH ?= $(OUTPUT)/bin
LDFLAGS ?= -w -s -X k8s.io/component-base/version.gitVersion=$(VERSION) -X main.gitVersion=$(VERSION)
# flags for ecr-credential-provider artifact promotion
UPLOAD ?= $(OUTPUT)/upload
GCS_LOCATION ?= gs://k8s-staging-provider-aws/releases/
GCS_URL = $(GCS_LOCATION:gs://%=https://storage.googleapis.com/%)
BINARY_GIT_VERSION := $(shell git describe --tags --match='v*')
.PHONY: aws-cloud-controller-manager
aws-cloud-controller-manager:
GO111MODULE=on CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) GOPROXY=$(GOPROXY) go build \
-trimpath \
-ldflags="$(LDFLAGS)" \
-o=aws-cloud-controller-manager \
cmd/aws-cloud-controller-manager/main.go
.PHONY: ecr-credential-provider
ecr-credential-provider:
GO111MODULE=on CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) GOPROXY=$(GOPROXY) go build \
-trimpath \
-ldflags="$(LDFLAGS)" \
-o=ecr-credential-provider \
cmd/ecr-credential-provider/*.go
.PHONY: ecr-credential-provider-linux-amd64
ecr-credential-provider-linux-amd64:
GO111MODULE=on CGO_ENABLED=0 GOOS=linux GOARCH="amd64" GOPROXY=$(GOPROXY) go build \
-trimpath \
-ldflags="$(LDFLAGS)" \
-o=ecr-credential-provider-linux-amd64 \
cmd/ecr-credential-provider/*.go
.PHONY: ecr-credential-provider-linux-arm64
ecr-credential-provider-linux-arm64:
GO111MODULE=on CGO_ENABLED=0 GOOS=linux GOARCH="arm64" GOPROXY=$(GOPROXY) go build \
-trimpath \
-ldflags="$(LDFLAGS)" \
-o=ecr-credential-provider-linux-arm64 \
cmd/ecr-credential-provider/*.go
.PHONY: ecr-credential-provider-windows-amd64
ecr-credential-provider-windows-amd64:
GO111MODULE=on CGO_ENABLED=0 GOOS=windows GOARCH="amd64" GOPROXY=$(GOPROXY) go build \
-trimpath \
-ldflags="$(LDFLAGS)" \
-o=ecr-credential-provider-windows-amd64 \
cmd/ecr-credential-provider/*.go
.PHONY: docker-build-amd64
docker-build-amd64:
docker buildx build --output=type=docker \
--build-arg VERSION=$(VERSION) \
--build-arg GOPROXY=$(GOPROXY) \
--platform linux/amd64 \
--tag $(IMAGE) .
.PHONY: docker-build-arm64
docker-build-arm64:
docker buildx build --output=type=docker \
--build-arg VERSION=$(VERSION) \
--build-arg GOPROXY=$(GOPROXY) \
--platform linux/arm64 \
--tag $(IMAGE) .
.PHONY: docker-build
docker-build:
docker buildx build --output=type=registry \
--build-arg LDFLAGS="$(LDFLAGS)" \
--build-arg GOPROXY=$(GOPROXY) \
--platform linux/amd64,linux/arm64 \
--tag $(IMAGE) .
.PHONY: ko
ko:
hack/install-ko.sh
.PHONY: ko-build
ko-build: ko
KO_DOCKER_REPO="$(IMAGE_REPOSITORY)" GOFLAGS="-ldflags=-X=k8s.io/component-base/version.gitVersion=$(VERSION)" ko build --tags ${VERSION} --platform=linux/amd64,linux/arm64 --bare ./cmd/aws-cloud-controller-manager/
.PHONY: ko-build-tar
ko-build-tar: ko
KO_DOCKER_REPO="$(IMAGE_REPOSITORY)" GOFLAGS="-ldflags=-X=k8s.io/component-base/version.gitVersion=$(VERSION)" ko build --tags ${VERSION} --platform=linux/amd64 --bare ./cmd/aws-cloud-controller-manager/ --tarball aws-cloud-controller-manager.tar --push=false
.PHONY: ko-build-local
ko-build-local: ko
KO_DOCKER_REPO="$(IMAGE_REPOSITORY)" GOFLAGS="-ldflags=-X=k8s.io/component-base/version.gitVersion=$(VERSION)" ko build --tags ${VERSION} --platform=linux/amd64 --bare ./cmd/aws-cloud-controller-manager/ --push=false --local
docker tag ko.local:${VERSION} $(IMAGE)
.PHONY: e2e.test
e2e.test:
pushd tests/e2e > /dev/null && \
go test -c && popd
mv tests/e2e/e2e.test e2e.test
.PHONY: check
check: verify-fmt verify-lint vet
.PHONY: test
test:
go test -count=1 -race -v $(shell go list ./...)
.PHONY: verify-fmt
verify-fmt:
./hack/verify-gofmt.sh
.PHONY: verify-lint
verify-lint:
which golint 2>&1 >/dev/null || go install golang.org/x/lint/golint@latest
golint -set_exit_status $(shell go list ./...)
.PHONY: verify-codegen
verify-codegen:
./hack/verify-codegen.sh
.PHONY: vet
vet:
go vet ./...
.PHONY: update-fmt
update-fmt:
./hack/update-gofmt.sh
.PHONY: update-deps
update-deps:
./hack/update-deps.sh
.PHONY: docs
docs:
./hack/build-gitbooks.sh
.PHONY: publish-docs
publish-docs:
./hack/publish-docs.sh
.PHONY: kops-example
kops-example:
./hack/kops-example.sh
.PHONY: switch-to-latest-k8s
switch-to-latest-k8s:
./hack/switch-to-latest-k8s.sh
.PHONY: test-e2e-latest-k8s
test-e2e-latest-k8s: switch-to-latest-k8s e2e.test ko-build-local install-e2e-tools
AWS_REGION=us-west-2 \
TEST_PATH=./tests/e2e/... \
BUILD_IMAGE=$(IMAGE) \
BUILD_VERSION=$(VERSION) \
INSTALL_PATH=$(INSTALL_PATH) \
GINKGO_FOCUS="\[cloud-provider-aws-e2e\]" \
./hack/e2e/run.sh
.PHONY: test-e2e
test-e2e: e2e.test docker-build-amd64 install-e2e-tools
AWS_REGION=us-west-2 \
TEST_PATH=./tests/e2e/... \
BUILD_IMAGE=$(IMAGE) \
BUILD_VERSION=$(VERSION) \
INSTALL_PATH=$(INSTALL_PATH) \
GINKGO_FOCUS="\[cloud-provider-aws-e2e\]" \
./hack/e2e/run.sh
# Use `make install-e2e-tools KOPS_ROOT=<local-kops-installation>`
# to skip the kops download, test local changes to the kubetest2-kops
# deployer, etc.
.PHONY: install-e2e-tools
install-e2e-tools:
mkdir -p $(INSTALL_PATH)
INSTALL_PATH=$(INSTALL_PATH) \
./hack/install-e2e-tools.sh
.PHONY: print-image-tag
print-image-tag:
@echo $(IMAGE)
.PHONY: gsutil
gsutil:
hack/install-gsutil.sh
# build ecr-credential-provider targets for different OS and ARCHs
.PHONY: crossbuild-ecr-credential-provider
crossbuild-ecr-credential-provider: ecr-credential-provider-linux-amd64 ecr-credential-provider-linux-arm64 ecr-credential-provider-windows-amd64
.PHONY: copy-bins-for-upload
copy-bins-for-upload: crossbuild-ecr-credential-provider
mkdir -p ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/amd64/
mkdir -p ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/arm64/
mkdir -p ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/windows/amd64/
cp ecr-credential-provider-linux-amd64 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/amd64/ecr-credential-provider-linux-amd64
hack/sha256 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/amd64/ecr-credential-provider-linux-amd64 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/amd64/ecr-credential-provider-linux-amd64.sha256
cp ecr-credential-provider-linux-arm64 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/arm64/ecr-credential-provider-linux-arm64
hack/sha256 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/arm64/ecr-credential-provider-linux-arm64 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/linux/arm64/ecr-credential-provider-linux-arm64.sha256
cp ecr-credential-provider-windows-amd64 $(UPLOAD)/provider-aws/${BINARY_GIT_VERSION}/windows/amd64/ecr-credential-provider-windows-amd64
hack/sha256 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/windows/amd64/ecr-credential-provider-windows-amd64 ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/windows/amd64/ecr-credential-provider-windows-amd64.sha256
# gcs-upload builds provider-aws ecr-credential-provider binaries and uploads to GCS
.PHONY: gcs-upload
gcs-upload: gsutil copy-bins-for-upload
@echo "== Uploading provider-aws =="
gsutil -h "Cache-Control:private, max-age=0, no-transform" -m cp -n -r ${UPLOAD}/provider-aws/* ${GCS_LOCATION}
# CloudBuild artifacts
# We hash some artifacts, so that we have can know that they were not modified after being built.
.PHONY: cloudbuild-artifacts
cloudbuild-artifacts: gcs-upload
cd ${UPLOAD}/provider-aws/${BINARY_GIT_VERSION}/; find . -type f | sort | xargs sha256sum > ${OUTPUT}/files.sha256
cd ${OUTPUT}/; find . -name *.sha256 | sort | xargs sha256sum > ${OUTPUT}/cloudbuild_output