-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmachinecreate.sh
108 lines (95 loc) · 2.85 KB
/
machinecreate.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
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
# shellcheck shell=bash disable=SC2148
# MACHINE CREATE ==============================================================
# MU_create_process_options checks if arg1 is in a list of valid machine utility
# options. This function is called by the parser.
# Args: arg1 - the option to check.
# arg2 - value of the option to be set, optional. This depends on the
# type of option.
MU_create_process_options() {
case "$1" in
-h | --help)
MU_create_usage
return "${STOP}"
;;
-v | --verbose)
UT_set_tailf "${TRUE}" || err || return
;;
*)
MU_create_usage
printf 'ERROR: "%s" is not a valid "create" option.\n' "${1}" \
>"${STDERR}"
return "${ERROR}"
;;
esac
}
# MU_create_usage outputs help text for the machine utilities component.
# Args: None expected.
MU_create_usage() {
cat <<EnD
machine create options:
Format:
machine create [flags]
Flags:
-h, --help - This help text.
-v, --verbose - Verbose output. Useful if there was a problem.
Description:
This will create a Podman machine named 'mok-machine' and setup the
machine to run Kubernetes.
EnD
}
# MU_create_run lists Podman machines.
# Args: None expected.
MU_create_run() {
UT_run_with_progress \
" Creating the Podman machine: mok-machine" \
podman machine init --now --rootful --user-mode-networking mok-machine
r=$?
[[ ${r} -ne 0 ]] && {
runlogfile=$(UT_runlogfile) || err || return
cat "${runlogfile}" >"${STDERR}"
return "${ERROR}"
}
UT_run_with_progress \
" Loading module in mok-machine" \
podman machine ssh --username root mok-machine modprobe nf_conntrack
r=$?
[[ ${r} -ne 0 ]] && {
runlogfile=$(UT_runlogfile) || err || return
cat "${runlogfile}" >"${STDERR}"
return "${ERROR}"
}
UT_run_with_progress \
" Persisting nf_conntrack module in mok-machine" \
podman machine ssh --username root mok-machine \
bash -c \
"\"\\\"echo nf_conntrack \
>/etc/modules-load.d/nf_conntrack.conf\\\"\""
r=$?
[[ ${r} -ne 0 ]] && {
runlogfile=$(UT_runlogfile) || err || return
cat "${runlogfile}" >"${STDERR}"
return "${ERROR}"
}
UT_run_with_progress \
" Setting nf_conntrack_max in mok-machine" \
podman machine ssh --username root mok-machine sysctl -q \
-w net.netfilter.nf_conntrack_max=163840
r=$?
[[ ${r} -ne 0 ]] && {
runlogfile=$(UT_runlogfile) || err || return
cat "${runlogfile}" >"${STDERR}"
return "${ERROR}"
}
UT_run_with_progress \
" Persisting nf_conntrack_max in mok-machine" \
podman machine ssh --username root mok-machine \
bash -c \
"\"\\\"echo net.netfilter.nf_conntrack_max=163840 \
>/etc/sysctl.d/99-nf_conntrack_max.conf\\\"\""
r=$?
[[ ${r} -ne 0 ]] && {
runlogfile=$(UT_runlogfile) || err || return
cat "${runlogfile}" >"${STDERR}"
return "${ERROR}"
}
}