forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.sh
289 lines (267 loc) · 8.05 KB
/
environment.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
#!/bin/bash
# This script holds library functions for setting up the shell environment for OpenShift scripts
# os::util::environment::use_sudo updates $USE_SUDO to be 'true', so that later scripts choosing between
# execution using 'sudo' and execution without it chose to use 'sudo'
#
# Globals:
# None
# Arguments:
# None
# Returns:
# - export USE_SUDO
function os::util::environment::use_sudo() {
USE_SUDO=true
export USE_SUDO
}
readonly -f os::util::environment::use_sudo
# os::util::environment::setup_time_vars sets up environment variables that describe durations of time
# These variables can be used to specify times for other utility functions
#
# Globals:
# None
# Arguments:
# None
# Returns:
# - export TIME_MS
# - export TIME_SEC
# - export TIME_MIN
function os::util::environment::setup_time_vars() {
TIME_MS=1
export TIME_MS
TIME_SEC="$(( 1000 * ${TIME_MS} ))"
export TIME_SEC
TIME_MIN="$(( 60 * ${TIME_SEC} ))"
export TIME_MIN
}
readonly -f os::util::environment::setup_time_vars
# os::util::environment::setup_all_server_vars sets up all environment variables necessary to configure and start an OpenShift server
#
# Globals:
# - OS_ROOT
# - PATH
# - TMPDIR
# - LOG_DIR
# - ARTIFACT_DIR
# - KUBELET_SCHEME
# - KUBELET_BIND_HOST
# - KUBELET_HOST
# - KUBELET_PORT
# - BASETMPDIR
# - ETCD_PORT
# - ETCD_PEER_PORT
# - API_BIND_HOST
# - API_HOST
# - API_PORT
# - API_SCHEME
# - PUBLIC_MASTER_HOST
# - USE_IMAGES
# Arguments:
# - 1: the path under the root temporary directory for OpenShift where these subdirectories should be made
# Returns:
# - export PATH
# - export BASETMPDIR
# - export LOG_DIR
# - export VOLUME_DIR
# - export ARTIFACT_DIR
# - export FAKE_HOME_DIR
# - export KUBELET_SCHEME
# - export KUBELET_BIND_HOST
# - export KUBELET_HOST
# - export KUBELET_PORT
# - export ETCD_PORT
# - export ETCD_PEER_PORT
# - export ETCD_DATA_DIR
# - export API_BIND_HOST
# - export API_HOST
# - export API_PORT
# - export API_SCHEME
# - export SERVER_CONFIG_DIR
# - export MASTER_CONFIG_DIR
# - export NODE_CONFIG_DIR
# - export USE_IMAGES
# - export TAG
function os::util::environment::setup_all_server_vars() {
os::util::environment::setup_kubelet_vars
os::util::environment::setup_etcd_vars
os::util::environment::setup_server_vars
os::util::environment::setup_images_vars
}
readonly -f os::util::environment::setup_all_server_vars
# os::util::environment::update_path_var updates $PATH so that OpenShift binaries are available
#
# Globals:
# - OS_ROOT
# - PATH
# Arguments:
# None
# Returns:
# - export PATH
function os::util::environment::update_path_var() {
local prefix
if os::util::find::system_binary 'go' >/dev/null 2>&1; then
prefix+="${OS_OUTPUT_BINPATH}/$(os::build::host_platform):"
fi
if [[ -n "${GOPATH:-}" ]]; then
prefix+="${GOPATH}/bin:"
fi
PATH="${prefix:-}${PATH}"
export PATH
}
readonly -f os::util::environment::update_path_var
# os::util::environment::setup_tmpdir_vars sets up temporary directory path variables
#
# Globals:
# - TMPDIR
# Arguments:
# - 1: the path under the root temporary directory for OpenShift where these subdirectories should be made
# Returns:
# - export BASETMPDIR
# - export BASEOUTDIR
# - export LOG_DIR
# - export VOLUME_DIR
# - export ARTIFACT_DIR
# - export FAKE_HOME_DIR
# - export OS_TMP_ENV_SET
function os::util::environment::setup_tmpdir_vars() {
local sub_dir=$1
BASETMPDIR="${TMPDIR:-/tmp}/openshift/${sub_dir}"
export BASETMPDIR
VOLUME_DIR="${BASETMPDIR}/volumes"
export VOLUME_DIR
BASEOUTDIR="${OS_OUTPUT_SCRIPTPATH}/${sub_dir}"
export BASEOUTDIR
LOG_DIR="${LOG_DIR:-${BASEOUTDIR}/logs}"
export LOG_DIR
ARTIFACT_DIR="${ARTIFACT_DIR:-${BASEOUTDIR}/artifacts}"
export ARTIFACT_DIR
FAKE_HOME_DIR="${BASEOUTDIR}/openshift.local.home"
export FAKE_HOME_DIR
mkdir -p "${LOG_DIR}" "${VOLUME_DIR}" "${ARTIFACT_DIR}" "${FAKE_HOME_DIR}"
export OS_TMP_ENV_SET="${sub_dir}"
}
readonly -f os::util::environment::setup_tmpdir_vars
# os::util::environment::setup_kubelet_vars sets up environment variables necessary for interacting with the kubelet
#
# Globals:
# - KUBELET_SCHEME
# - KUBELET_BIND_HOST
# - KUBELET_HOST
# - KUBELET_PORT
# Arguments:
# None
# Returns:
# - export KUBELET_SCHEME
# - export KUBELET_BIND_HOST
# - export KUBELET_HOST
# - export KUBELET_PORT
function os::util::environment::setup_kubelet_vars() {
KUBELET_SCHEME="${KUBELET_SCHEME:-https}"
export KUBELET_SCHEME
KUBELET_BIND_HOST="${KUBELET_BIND_HOST:-$(openshift start master --print-ip || echo "127.0.0.1")}"
export KUBELET_BIND_HOST
KUBELET_HOST="${KUBELET_HOST:-${KUBELET_BIND_HOST}}"
export KUBELET_HOST
KUBELET_PORT="${KUBELET_PORT:-10250}"
export KUBELET_PORT
}
readonly -f os::util::environment::setup_kubelet_vars
# os::util::environment::setup_etcd_vars sets up environment variables necessary for interacting with etcd
#
# Globals:
# - BASETMPDIR
# - ETCD_HOST
# - ETCD_PORT
# - ETCD_PEER_PORT
# Arguments:
# None
# Returns:
# - export ETCD_HOST
# - export ETCD_PORT
# - export ETCD_PEER_PORT
# - export ETCD_DATA_DIR
function os::util::environment::setup_etcd_vars() {
ETCD_HOST="${ETCD_HOST:-127.0.0.1}"
export ETCD_HOST
ETCD_PORT="${ETCD_PORT:-4001}"
export ETCD_PORT
ETCD_PEER_PORT="${ETCD_PEER_PORT:-7001}"
export ETCD_PEER_PORT
ETCD_DATA_DIR="${BASETMPDIR}/etcd"
export ETCD_DATA_DIR
mkdir -p "${ETCD_DATA_DIR}"
}
readonly -f os::util::environment::setup_etcd_vars
# os::util::environment::setup_server_vars sets up environment variables necessary for interacting with the server
#
# Globals:
# - BASETMPDIR
# - KUBELET_HOST
# - API_BIND_HOST
# - API_HOST
# - API_PORT
# - API_SCHEME
# - PUBLIC_MASTER_HOST
# Arguments:
# None
# Returns:
# - export API_BIND_HOST
# - export API_HOST
# - export API_PORT
# - export API_SCHEME
# - export SERVER_CONFIG_DIR
# - export MASTER_CONFIG_DIR
# - export NODE_CONFIG_DIR
function os::util::environment::setup_server_vars() {
# turn on cache mutation detector every time we start a server
KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
export KUBE_CACHE_MUTATION_DETECTOR
API_BIND_HOST="${API_BIND_HOST:-$(openshift start master --print-ip || echo "127.0.0.1")}"
export API_BIND_HOST
API_HOST="${API_HOST:-${API_BIND_HOST}}"
export API_HOST
API_PORT="${API_PORT:-8443}"
export API_PORT
API_SCHEME="${API_SCHEME:-https}"
export API_SCHEME
MASTER_ADDR="${API_SCHEME}://${API_HOST}:${API_PORT}"
export MASTER_ADDR
PUBLIC_MASTER_HOST="${PUBLIC_MASTER_HOST:-${API_HOST}}"
export PUBLIC_MASTER_HOST
SERVER_CONFIG_DIR="${BASETMPDIR}/openshift.local.config"
export SERVER_CONFIG_DIR
MASTER_CONFIG_DIR="${SERVER_CONFIG_DIR}/master"
export MASTER_CONFIG_DIR
NODE_CONFIG_DIR="${SERVER_CONFIG_DIR}/node-${KUBELET_HOST}"
export NODE_CONFIG_DIR
mkdir -p "${SERVER_CONFIG_DIR}" "${MASTER_CONFIG_DIR}" "${NODE_CONFIG_DIR}"
}
readonly -f os::util::environment::setup_server_vars
# os::util::environment::setup_images_vars sets up environment variables necessary for interacting with release images
#
# Globals:
# - OS_ROOT
# - USE_IMAGES
# Arguments:
# None
# Returns:
# - export USE_IMAGES
# - export TAG
# - export MAX_IMAGES_BULK_IMPORTED_PER_REPOSITORY
function os::util::environment::setup_images_vars() {
# Use either the latest release built images, or latest.
IMAGE_PREFIX="${OS_IMAGE_PREFIX:-"openshift/origin"}"
if [[ -z "${USE_IMAGES-}" ]]; then
TAG='latest'
export TAG
USE_IMAGES="${IMAGE_PREFIX}-\${component}:latest"
export USE_IMAGES
if [[ -e "${OS_ROOT}/_output/local/releases/.commit" ]]; then
TAG="$(cat "${OS_ROOT}/_output/local/releases/.commit")"
export TAG
USE_IMAGES="${IMAGE_PREFIX}-\${component}:${TAG}"
export USE_IMAGES
fi
fi
export MAX_IMAGES_BULK_IMPORTED_PER_REPOSITORY="${MAX_IMAGES_BULK_IMPORTED_PER_REPOSITORY:-3}"
}
readonly -f os::util::environment::setup_images_vars