forked from liuyi01/kubernetes-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen-config.sh
executable file
·66 lines (58 loc) · 1.28 KB
/
gen-config.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
66
#!/bin/bash
declare -A kvs=()
function replace_files() {
local file=$1
if [ -f $file ];then
echo "$file"
for key in ${!kvs[@]}
do
value=${kvs[$key]}
value=${value//\//\\\/}
sed -i "s/{{$key}}/${value}/g" $file
done
return 0
fi
if [ -d $file ];then
for f in `ls $file`
do
replace_files "${file}/${f}"
done
fi
return 0
}
target=$1
if [ "$target" != "simple" -a "$target" != "with-ca" ];then
echo -e "Usage:\n\t sh gen-config.sh (simple / with-ca)"
exit 1
fi
if [ "$target" == "simple" ];then
folder="kubernetes-simple"
else
folder="kubernetes-with-ca"
fi
target="target"
rm -fr $target
cp -r $folder $target
cd $target
echo "====替换变量列表===="
while read line;do
if [ "${line:0:1}" == "#" -o "${line:0:1}" == "" ];then
continue;
fi
key=${line/=*/}
value=${line#*=}
echo "$key=$value"
kvs["$key"]="$value"
done < ../config.properties
echo "===================="
echo "====替换配置文件===="
for element in `ls`
do
dir_or_file=$element
if [ ! -d $dir_or_file ];then
continue
fi
replace_files $dir_or_file
done
echo "================="
echo "配置生成成功,位置: `pwd`"