-
Notifications
You must be signed in to change notification settings - Fork 119
/
Makefile
265 lines (219 loc) · 11.1 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
# Copyright 2018 The kube-fledged 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.
.PHONY: clean clean-controller clean-cri-client clean-operator controller-amd64 controller-image cri-client-image operator-image build-images push-images test deploy update remove hack
# Default tag and architecture. Can be overridden
TAG?=$(shell git describe --tags --dirty)
ARCH?=amd64
# Only enable CGO (and build the UDP backend) on AMD64
ifeq ($(ARCH),amd64)
CGO_ENABLED=1
else
CGO_ENABLED=0
endif
GOARM=7
DOCKER_CLI_EXPERIMENTAL=enabled
ifndef CONTROLLER_IMAGE_REPO
CONTROLLER_IMAGE_REPO=docker.io/senthilrch/kubefledged-controller
endif
ifndef WEBHOOK_SERVER_IMAGE_REPO
WEBHOOK_SERVER_IMAGE_REPO=docker.io/senthilrch/kubefledged-webhook-server
endif
ifndef CRI_CLIENT_IMAGE_REPO
CRI_CLIENT_IMAGE_REPO=docker.io/senthilrch/kubefledged-cri-client
endif
ifndef OPERATOR_IMAGE_REPO
OPERATOR_IMAGE_REPO=docker.io/senthilrch/kubefledged-operator
endif
ifndef ALPINE_VERSION
ALPINE_VERSION=3.16.2
endif
ifndef CRICTL_VERSION
CRICTL_VERSION=v1.25.0
endif
ifndef DOCKER_VERSION
DOCKER_VERSION=20.10.20
endif
ifndef GOLANG_VERSION
GOLANG_VERSION=1.19.2
endif
ifndef OPERATORSDK_VERSION
OPERATORSDK_VERSION=v1.24.1
endif
ifndef RELEASE_VERSION
RELEASE_VERSION=v0.11.0-alpha
endif
ifndef TARGET_PLATFORMS
TARGET_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64/v8
endif
ifndef OPERATOR_TARGET_PLATFORMS
OPERATOR_TARGET_PLATFORMS=linux/amd64,linux/arm64
endif
ifndef BUILD_OUTPUT
BUILD_OUTPUT=--push
endif
ifndef PROGRESS
PROGRESS=auto
endif
ifndef KUBEFLEDGED_NAMESPACE
KUBEFLEDGED_NAMESPACE=kube-fledged
endif
HTTP_PROXY_CONFIG=
ifdef HTTP_PROXY
HTTP_PROXY_CONFIG=--build-arg http_proxy=${HTTP_PROXY}
endif
HTTPS_PROXY_CONFIG=
ifdef HTTPS_PROXY
HTTPS_PROXY_CONFIG=--build-arg https_proxy=${HTTPS_PROXY}
endif
### BUILD
clean: clean-controller clean-webhook-server clean-cri-client clean-operator
clean-controller:
-rm -f build/kubefledged-controller
-docker image rm ${CONTROLLER_IMAGE_REPO}:${RELEASE_VERSION}
-docker image rm `docker image ls -f dangling=true -q`
clean-webhook-server:
-rm -f build/kubefledged-webhook-server
-docker image rm ${WEBHOOK_SERVER_IMAGE_REPO}:${RELEASE_VERSION}
-docker image rm `docker image ls -f dangling=true -q`
clean-cri-client:
-docker image rm ${CRI_CLIENT_IMAGE_REPO}:${RELEASE_VERSION}
-docker image rm `docker image ls -f dangling=true -q`
clean-operator:
-docker image rm ${OPERATOR_IMAGE_REPO}:${RELEASE_VERSION}
-docker image rm `docker image ls -f dangling=true -q`
controller-image: clean-controller
docker buildx build --platform=${TARGET_PLATFORMS} -t ${CONTROLLER_IMAGE_REPO}:${RELEASE_VERSION} \
-t ${CONTROLLER_IMAGE_REPO}:latest -f build/Dockerfile.controller ${HTTP_PROXY_CONFIG} ${HTTPS_PROXY_CONFIG} \
--build-arg GOLANG_VERSION=${GOLANG_VERSION} --build-arg ALPINE_VERSION=${ALPINE_VERSION} --progress=${PROGRESS} ${BUILD_OUTPUT} .
controller-amd64: TARGET_PLATFORMS=linux/amd64
controller-amd64: install-buildx controller-image
controller-dev: clean-controller
CGO_ENABLED=0 go build -o build/kubefledged-controller -ldflags '-s -w -extldflags "-static"' cmd/controller/main.go && \
docker build -t ${CONTROLLER_IMAGE_REPO}:${RELEASE_VERSION} -f build/Dockerfile.controller_dev \
--build-arg ALPINE_VERSION=${ALPINE_VERSION} .
docker push ${CONTROLLER_IMAGE_REPO}:${RELEASE_VERSION}
webhook-server-image: clean-webhook-server
docker buildx build --platform=${TARGET_PLATFORMS} -t ${WEBHOOK_SERVER_IMAGE_REPO}:${RELEASE_VERSION} \
-t ${WEBHOOK_SERVER_IMAGE_REPO}:latest -f build/Dockerfile.webhook_server ${HTTP_PROXY_CONFIG} ${HTTPS_PROXY_CONFIG} \
--build-arg GOLANG_VERSION=${GOLANG_VERSION} --build-arg ALPINE_VERSION=${ALPINE_VERSION} --progress=${PROGRESS} ${BUILD_OUTPUT} .
webhook-server-amd64: TARGET_PLATFORMS=linux/amd64
webhook-server-amd64: install-buildx webhook-server-image
webhook-server-dev: clean-webhook-server
CGO_ENABLED=0 go build -o build/kubefledged-webhook-server -ldflags '-s -w -extldflags "-static"' cmd/webhook-server/main.go && \
docker build -t ${WEBHOOK_SERVER_IMAGE_REPO}:${RELEASE_VERSION} -f build/Dockerfile.webhook_server_dev \
--build-arg ALPINE_VERSION=${ALPINE_VERSION} .
docker push ${WEBHOOK_SERVER_IMAGE_REPO}:${RELEASE_VERSION}
cri-client-image: clean-cri-client
docker buildx build --platform=${TARGET_PLATFORMS} -t ${CRI_CLIENT_IMAGE_REPO}:${RELEASE_VERSION} \
-t ${CRI_CLIENT_IMAGE_REPO}:latest -f build/Dockerfile.cri_client ${HTTP_PROXY_CONFIG} ${HTTPS_PROXY_CONFIG} \
--build-arg DOCKER_VERSION=${DOCKER_VERSION} --build-arg CRICTL_VERSION=${CRICTL_VERSION} \
--build-arg ALPINE_VERSION=${ALPINE_VERSION} --progress=${PROGRESS} ${BUILD_OUTPUT} .
cri-client-amd64: TARGET_PLATFORMS=linux/amd64
cri-client-amd64: install-buildx cri-client-image
operator-image: clean-operator
cd deploy/kubefledged-operator && \
docker buildx build --platform=${OPERATOR_TARGET_PLATFORMS} -t ${OPERATOR_IMAGE_REPO}:${RELEASE_VERSION} \
-t ${OPERATOR_IMAGE_REPO}:latest -f build/Dockerfile --build-arg OPERATORSDK_VERSION=${OPERATORSDK_VERSION} --progress=${PROGRESS} ${BUILD_OUTPUT} .
operator-amd64: TARGET_PLATFORMS=linux/amd64
operator-amd64: install-buildx operator-image
release-amd64: TARGET_PLATFORMS=linux/amd64
release-amd64: release
release: install-buildx controller-image webhook-server-image cri-client-image operator-image
install-buildx:
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
-docker buildx rm multibuilder
docker buildx create --name multibuilder --driver docker-container --use
docker buildx inspect --bootstrap
docker buildx ls
test:
-rm -f coverage.out
bash hack/run-unit-tests.sh
hack:
bash hack/update-codegen.sh
bash hack/update-gofmt.sh
bash hack/verify-codegen.sh
bash hack/verify-gofmt.sh
bash hack/verify-golint.sh
bash hack/verify-govet.sh
deploy-using-yaml:
-kubectl apply -f deploy/kubefledged-namespace.yaml
kubectl apply -f deploy/kubefledged-crd.yaml
kubectl apply -f deploy/kubefledged-serviceaccount-controller.yaml
kubectl apply -f deploy/kubefledged-clusterrole-controller.yaml
kubectl apply -f deploy/kubefledged-clusterrolebinding-controller.yaml
kubectl apply -f deploy/kubefledged-deployment-controller.yaml
kubectl rollout status deployment kubefledged-controller -n kube-fledged --watch
-kubectl delete validatingwebhookconfigurations -l app=kubefledged
kubectl apply -f deploy/kubefledged-validatingwebhook.yaml
-kubectl delete deploy -l app=kubefledged,kubefledged=kubefledged-webhook-server
kubectl apply -f deploy/kubefledged-serviceaccount-webhook-server.yaml
kubectl apply -f deploy/kubefledged-clusterrole-webhook-server.yaml
kubectl apply -f deploy/kubefledged-clusterrolebinding-webhook-server.yaml
kubectl apply -f deploy/kubefledged-deployment-webhook-server.yaml
kubectl apply -f deploy/kubefledged-service-webhook-server.yaml
kubectl rollout status deployment kubefledged-webhook-server -n kube-fledged --watch
kubectl get pods -n kube-fledged
deploy-using-operator:
# Create the namespace
-kubectl create namespace ${KUBEFLEDGED_NAMESPACE}
# Deploy the operator
sed -i '' "s|{{KUBEFLEDGED_NAMESPACE}}|${KUBEFLEDGED_NAMESPACE}|g" deploy/kubefledged-operator/deploy/service_account.yaml
sed -i '' "s|{{KUBEFLEDGED_NAMESPACE}}|${KUBEFLEDGED_NAMESPACE}|g" deploy/kubefledged-operator/deploy/clusterrole_binding.yaml
sed -i '' "s|{{KUBEFLEDGED_NAMESPACE}}|${KUBEFLEDGED_NAMESPACE}|g" deploy/kubefledged-operator/deploy/operator.yaml
kubectl apply -f deploy/kubefledged-operator/deploy/crds/charts.helm.kubefledged.io_kubefledgeds_crd.yaml
kubectl apply -f deploy/kubefledged-operator/deploy/service_account.yaml
kubectl apply -f deploy/kubefledged-operator/deploy/clusterrole.yaml
kubectl apply -f deploy/kubefledged-operator/deploy/clusterrole_binding.yaml
kubectl apply -f deploy/kubefledged-operator/deploy/operator.yaml
# Deploy kube-fledged
sed -i '' "s|{{KUBEFLEDGED_NAMESPACE}}|${KUBEFLEDGED_NAMESPACE}|g" deploy/kubefledged-operator/deploy/crds/charts.helm.kubefledged.io_v1alpha2_kubefledged_cr.yaml
kubectl rollout status deployment kubefledged-operator -n ${KUBEFLEDGED_NAMESPACE} --watch
kubectl apply -f deploy/kubefledged-operator/deploy/crds/charts.helm.kubefledged.io_v1alpha2_kubefledged_cr.yaml
sed -i '' "s|enable: false|enable: true|g" deploy/kubefledged-operator/deploy/crds/charts.helm.kubefledged.io_v1alpha2_kubefledged_cr.yaml
kubectl apply -f deploy/kubefledged-operator/deploy/crds/charts.helm.kubefledged.io_v1alpha2_kubefledged_cr.yaml
# Wait for the controller and webhook-server
sleep 5
kubectl rollout status deployment kube-fledged-controller -n ${KUBEFLEDGED_NAMESPACE} --watch
kubectl rollout status deployment kube-fledged-webhook-server -n ${KUBEFLEDGED_NAMESPACE} --watch
kubectl get pods -n ${KUBEFLEDGED_NAMESPACE}
update:
kubectl scale deployment kubefledged-controller --replicas=0 -n kube-fledged
kubectl scale deployment kubefledged-webhook-server --replicas=0 -n kube-fledged && sleep 1
kubectl scale deployment kubefledged-controller --replicas=1 -n kube-fledged && sleep 1
kubectl scale deployment kubefledged-webhook-server --replicas=1 -n kube-fledged && sleep 1
kubectl get pods -l app=kubefledged -n kube-fledged
remove-kubefledged:
-kubectl delete -f deploy/kubefledged-namespace.yaml
-kubectl delete clusterrolebinding -l app=kubefledged
-kubectl delete clusterrole -l app=kubefledged
-kubectl delete crd -l app=kubefledged
-kubectl delete validatingwebhookconfigurations -l app=kubefledged
remove-kubefledged-and-operator:
# Remove kubefledged
-kubectl delete -f deploy/kubefledged-operator/deploy/crds/charts.helm.kubefledged.io_v1alpha2_kubefledged_cr.yaml
-kubectl delete validatingwebhookconfigurations -l app.kubernetes.io/name=kube-fledged
# Remove the kubefledged operator and the namespace
-kubectl delete -f deploy/kubefledged-operator/deploy/operator.yaml
-kubectl delete -f deploy/kubefledged-operator/deploy/clusterrole_binding.yaml
-kubectl delete -f deploy/kubefledged-operator/deploy/clusterrole.yaml
-kubectl delete -f deploy/kubefledged-operator/deploy/service_account.yaml
-kubectl delete -f deploy/kubefledged-operator/deploy/crds/charts.helm.kubefledged.io_kubefledgeds_crd.yaml
-kubectl delete namespace ${KUBEFLEDGED_NAMESPACE}
# Restore manifests
-git checkout deploy/kubefledged-operator/deploy/operator.yaml
-git checkout deploy/kubefledged-operator/deploy/clusterrole_binding.yaml
-git checkout deploy/kubefledged-operator/deploy/service_account.yaml
.PHONY: e2e-test
e2e-test:
@go test -v ./e2etest