-
Notifications
You must be signed in to change notification settings - Fork 0
/
migrate.sh
executable file
·65 lines (53 loc) · 1.68 KB
/
migrate.sh
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
#!/bin/bash
# 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.
set -o errexit
set -o nounset
set -o pipefail
# Usage:
# KUBERNETES_SRC_ROOT=$GOPATH/src/k8s.io/kubernetes \
# KUBECTL_SRC_ROOT=$GOPATH/src/k8s.io/kubectl \
# FROM_PKG=k8s.io/kubernetes \
# TO_PKG=github.com/fabianofranz/kubectl \
# ./migrate.sh
if [[ -z ${KUBERNETES_SRC_ROOT:-} ]]; then
echo "Please export KUBERNETES_SRC_ROOT (Kubernetes source dir)"
exit 1
fi
if [[ -z ${KUBECTL_SRC_ROOT:-} ]]; then
echo "Please export KUBECTL_SRC_ROOT (kubectl source dir)"
exit 1
fi
if [[ -z ${FROM_PKG:-} ]]; then
echo "Please export FROM_PKG (original package)"
exit 1
fi
if [[ -z ${TO_PKG:-} ]]; then
echo "Please export TO_PKG (destination package)"
exit 1
fi
KUBERNETES_SRC="$(cd "${KUBERNETES_SRC_ROOT}"; pwd)"
KUBECTL_SRC="$(cd "${KUBECTL_SRC_ROOT}"; pwd)"
function copy() {
echo "Copying $1..."
mkdir -p "$(dirname "${KUBECTL_SRC}/$1")"
cp -r "${KUBERNETES_SRC}/$1"* "${KUBECTL_SRC}/$1"
}
function repackage() {
echo "Repackaging $1..."
grep -Rl "$FROM_PKG/$1" . | grep "\.go" | xargs sed -i "s|\"$FROM_PKG/$1|\"$TO_PKG/$1|g"
}
copy "cmd/kubectl"
repackage "cmd/kubectl"
echo "done"