-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.sh
81 lines (71 loc) · 2.32 KB
/
utils.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env bash
exit_if_stopped() {
# test if the snap is marked as stopped
if [ -e ${SNAP_DATA}/var/lock/stopped.lock ]
then
echo "microk8s is not running, try microk8s.start"
exit 1
fi
}
refresh_opt_in_config() {
# add or replace an option inside the config file.
# Create the file if doesn't exist
local opt="--$1"
local value="$2"
local config_file="$SNAP_DATA/args/$3"
local replace_line="$opt=$value"
if $(grep -qE "^$opt=" $config_file); then
sudo "$SNAP/bin/sed" -i "s/^$opt=.*/$replace_line/" $config_file
else
sudo "$SNAP/bin/sed" -i "$ a $replace_line" "$config_file"
fi
}
skip_opt_in_config() {
# remove an option inside the config file.
# argument $1 is the option to be removed
# argument $2 is the configuration file under $SNAP_DATA/args
local opt="--$1"
local config_file="$SNAP_DATA/args/$2"
sudo "${SNAP}/bin/sed" -i '/'"$opt"'/d' "${config_file}"
}
arch() {
# Return the architecture we are on
local ARCH="${KUBE_ARCH:-`$SNAP/usr/bin/dpkg --print-architecture`}"
if [ "$ARCH" = "ppc64el" ]; then
ARCH="ppc64le"
elif [ "$ARCH" = "armhf" ]; then
ARCH="arm"
fi
echo $ARCH
}
use_manifest() {
# Perform an action (apply or delete) on a manifest.
# Optionally replace strings in the manifest
#
# Parameters:
# $1 the name of the manifest. Should be ${SNAP}/actions/ and should not
# include the trailing .yaml eg ingress, dns
# $2 the action to be performed on the manifest, eg apply, delete
# $3 (optional) an associative array with keys the string to be replaced and value what to
# replace with. The string $ARCH is always injected to this array.
#
local manifest="$1.yaml"; shift
local action="$1"; shift
if ! [ "$#" = "0" ]
then
eval "declare -A items="${1#*=}
else
declare -A items
fi
local tmp_manifest="${SNAP_USER_DATA}/tmp/temp.${manifest}"
items[\$ARCH]=$(arch)
mkdir -p ${SNAP_USER_DATA}/tmp
cp "${SNAP}/actions/${manifest}" "${tmp_manifest}"
for i in "${!items[@]}"
do
"$SNAP/bin/sed" -i 's@'$i'@'"${items[$i]}"'@g' "${tmp_manifest}"
done
"$SNAP/kubectl" "--kubeconfig=$SNAP/client.config" "$action" -f "${tmp_manifest}"
use_manifest_result="$?"
rm "${tmp_manifest}"
}