blob: eaf0e7341ad7fe1276e13e0ae2e57898c2c6fc6c (
about) (
plain)
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
|
#!/usr/bin/env bash
###
#Copyright 2021 The KubeEdge 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.
###
set -o errexit
set -o nounset
set -o pipefail
KUBEEDGE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)"
ALL_IMAGES_AND_TARGETS=(
#{target}:{IMAGE_NAME}:{DOCKERFILE_PATH}
cloudcore:cloudcore:build/cloud/Dockerfile
admission:admission:build/admission/Dockerfile
edgecore:edgecore:build/edge/Dockerfile
edgesite-agent:edgesite-agent:build/edgesite/agent-build.Dockerfile
edgesite-server:edgesite-server:build/edgesite/server-build.Dockerfile
csidriver:csidriver:build/csidriver/Dockerfile
iptablesmanager:iptables-manager:build/iptablesmanager/Dockerfile
edgemark:edgemark:build/edgemark/Dockerfile
conformance:conformance:build/conformance/Dockerfile
nodeconformance:nodeconformance:build/conformance/nodeconformance.Dockerfile
controllermanager:controller-manager:build/controllermanager/Dockerfile
installation-package:installation-package:build/docker/installation-package/installation-package.dockerfile
)
GO_LDFLAGS="$(${KUBEEDGE_ROOT}/hack/make-rules/version.sh)"
IMAGE_TAG=$(git describe --tags)
DOCKER_BUILD_AND_SYSTEM_PRUNE=${DOCKER_BUILD_AND_SYSTEM_PRUNE:-"false"}
function get_imagename_by_target() {
local key=$1
for bt in "${ALL_IMAGES_AND_TARGETS[@]}" ; do
local binary="${bt%%:*}"
if [ "${binary}" == "${key}" ]; then
local name_path="${bt#*:}"
echo "${name_path%%:*}"
return
fi
done
echo "can not find image name: $key"
exit 1
}
function get_dockerfile_by_target() {
local key=$1
for bt in "${ALL_IMAGES_AND_TARGETS[@]}" ; do
local binary="${bt%%:*}"
if [ "${binary}" == "${key}" ]; then
local name_path="${bt#*:}"
echo "${name_path#*:}"
return
fi
done
echo "can not find dockerfile for: $key"
exit 1
}
function build_images() {
local -a targets=()
for arg in "$@"; do
targets+=("${arg}")
done
if [[ ${#targets[@]} -eq 0 ]]; then
for bt in "${ALL_IMAGES_AND_TARGETS[@]}" ; do
targets+=("${bt%%:*}")
done
fi
for arg in "${targets[@]}"; do
IMAGE_NAME="$(get_imagename_by_target ${arg})"
DOCKERFILE_PATH="$(get_dockerfile_by_target ${arg})"
set -x
docker build --build-arg GO_LDFLAGS="${GO_LDFLAGS}" -t kubeedge/${IMAGE_NAME}:${IMAGE_TAG} -f ${DOCKERFILE_PATH} .
set +x
if [[ "${DOCKER_BUILD_AND_SYSTEM_PRUNE}" = "true" ]]; then
docker builder prune -f
docker system prune -f
fi
done
}
build_images "$@"
|