forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.sh
634 lines (569 loc) · 23.9 KB
/
start.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
#!/bin/bash
#
# This library holds functions for configuring and starting an OpenShift server
# os::start::configure_server will create and write OS master certificates, node configurations, and OpenShift configurations.
# It is recommended to run the following environment setup functions before configuring the OpenShift server:
# - os::util::environment::setup_all_server_vars
# - os::util::environment::use_sudo -- if your script should be using root privileges
#
# Globals:
# - ALL_IP_ADDRESSES
# - PUBLIC_MASTER_HOST
# - MASTER_CONFIG_DIR
# - SERVER_CONFIG_DIR
# - MASTER_ADDR
# - API_SCHEME
# - PUBLIC_MASTER_HOST
# - API_PORT
# - KUBELET_SCHEME
# - KUBELET_BIND_HOST
# - KUBELET_PORT
# - NODE_CONFIG_DIR
# - KUBELET_HOST
# - API_BIND_HOST
# - VOLUME_DIR
# - ETCD_DATA_DIR
# - USE_IMAGES
# - USE_SUDO
# Arguments:
# 1 - alternate version for the config
# Returns:
# - export ADMIN_KUBECONFIG
# - export CLUSTER_ADMIN_CONTEXT
function os::start::configure_server() {
local version="${1:-}"
local current_user
current_user="$( id -u )"
os::start::internal::create_master_certs "${version}"
os::start::internal::configure_node "${version}"
os::start::internal::configure_master "${version}"
# fix up owner after creating initial config
${USE_SUDO:+sudo} chown -R "${current_user}" "${SERVER_CONFIG_DIR}"
os::start::internal::patch_master_config
}
readonly -f os::start::configure_server
# os::start::internal::create_master_certs creates master certificates for the Openshift server
#
# Globals:
# - PUBLIC_MASTER_HOST
# - MASTER_CONFIG_DIR
# - MASTER_ADDR
# - API_SCHEME
# - PUBLIC_MASTER_HOST
# - API_PORT
# Arguments:
# 1 - alternate version for the config
function os::start::internal::create_master_certs() {
local version="${1:-}"
local openshift_volumes=( "${MASTER_CONFIG_DIR}" )
os::log::debug "Creating certificates for the OpenShift server"
oc adm ca create-master-certs \
--overwrite=false \
--master="${MASTER_ADDR}" \
--cert-dir="${MASTER_CONFIG_DIR}" \
--hostnames="$( os::start::internal::determine_hostnames )" \
--public-master="${API_SCHEME}://${PUBLIC_MASTER_HOST}:${API_PORT}"
}
readonly -f os::start::internal::create_master_certs
# os::start::internal::configure_node creates a node configuration
#
# Globals:
# - NODE_CONFIG_DIR
# - KUBELET_SCHEME
# - KUBELET_BIND_HOST
# - KUBELET_PORT
# - KUBELET_HOST
# - MASTER_ADDR
# - MASTER_CONFIG_DIR
# Arguments:
# 1 - alternate version for the config
function os::start::internal::configure_node() {
local version="${1:-}"
local openshift_volumes=( "${MASTER_CONFIG_DIR}" "${NODE_CONFIG_DIR}" )
os::log::debug "Creating node configuration for the OpenShift server"
oc adm create-node-config \
--node-dir="${NODE_CONFIG_DIR}" \
--node="${KUBELET_HOST}" \
--hostnames="${KUBELET_HOST}" \
--master="${MASTER_ADDR}" \
--signer-cert="${MASTER_CONFIG_DIR}/ca.crt" \
--signer-key="${MASTER_CONFIG_DIR}/ca.key" \
--signer-serial="${MASTER_CONFIG_DIR}/ca.serial.txt" \
--certificate-authority="${MASTER_CONFIG_DIR}/ca.crt" \
--node-client-certificate-authority="${MASTER_CONFIG_DIR}/ca.crt" \
--listen="${KUBELET_SCHEME}://${KUBELET_BIND_HOST}:${KUBELET_PORT}"
}
readonly -f os::start::internal::configure_node
# os::start::internal::configure_master creates the configuration for the OpenShift master
#
# Globals:
# - MASTER_CONFIG_DIR
# - USE_IMAGES
# - USE_SUDO
# - API_HOST
# - KUBELET_HOST
# - VOLUME_DIR
# - ETCD_DATA_DIR
# - SERVER_CONFIG_DIR
# - API_SCHEME
# - API_BIND_HOST
# - API_PORT
# - PUBLIC_MASTER_HOST
# - NETWORK_PLUGIN
# Arguments
# 1 - alternate version for the config
# - MASTER_CONFIG_DIR
function os::start::internal::configure_master() {
local version="${1:-}"
local openshift_volumes=( "${MASTER_CONFIG_DIR}" )
local openshift_executable
openshift_executable="$(os::start::internal::openshift_executable "${version}")"
os::log::debug "Creating master configuration for the OpenShift server"
${openshift_executable} start master \
--create-certs=false \
--images="${USE_IMAGES}" \
--master="${MASTER_ADDR}" \
--dns="tcp://${API_HOST}:8053" \
--etcd-dir="${ETCD_DATA_DIR}" \
--network-plugin="${NETWORK_PLUGIN:-}" \
--write-config="${SERVER_CONFIG_DIR}/master" \
--listen="${API_SCHEME}://${API_BIND_HOST}:${API_PORT}" \
--public-master="${API_SCHEME}://${PUBLIC_MASTER_HOST}:${API_PORT}"
}
readonly -f os::start::internal::configure_master
# os::start::internal::patch_master_config patches the master configuration
#
# Globals:
# - MASTER_CONFIG_DIR
# - SERVER_CONFIG_DIR
# - API_HOST
# - ETCD_PORT
# - ETCD_PEER_PORT
# - USE_SUDO
# - MAX_IMAGES_BULK_IMPORTED_PER_REPOSITORY
# - ALLOWED_REGISTRIES
# Returns:
# - export ADMIN_KUBECONFIG
# - export CLUSTER_ADMIN_CONTEXT
function os::start::internal::patch_master_config() {
local sudo=${USE_SUDO:+sudo}
cp "${SERVER_CONFIG_DIR}/master/master-config.yaml" "${SERVER_CONFIG_DIR}/master/master-config.orig.yaml"
oc ex config patch "${SERVER_CONFIG_DIR}/master/master-config.orig.yaml" --patch="{\"etcdConfig\": {\"address\": \"${API_HOST}:${ETCD_PORT}\"}}" | \
oc ex config patch - --patch="{\"admissionConfig\": {\"pluginConfig\": {\"openshift.io/ImagePolicy\": {\"configuration\": {\"apiVersion\": \"v1\", \"executionRules\": [{\"matchImageAnnotations\": [{\"key\": \"images.openshift.io/deny-execution\", \"value\": \"true\"}], \"name\": \"execution-denied\", \"onResources\": [{\"resource\": \"pods\"}, {\"resource\": \"builds\"}], \"reject\": true, \"skipOnResolutionFailure\": true }], \"kind\": \"ImagePolicyConfig\" }, \"location\": \"\"}}}}" | \
oc ex config patch - --patch="{\"etcdConfig\": {\"servingInfo\": {\"bindAddress\": \"${API_HOST}:${ETCD_PORT}\"}}}" | \
oc ex config patch - --type json --patch="[{\"op\": \"replace\", \"path\": \"/etcdClientInfo/urls\", \"value\": [\"${API_SCHEME}://${API_HOST}:${ETCD_PORT}\"]}]" | \
oc ex config patch - --patch="{\"etcdConfig\": {\"peerAddress\": \"${API_HOST}:${ETCD_PEER_PORT}\"}}" | \
oc ex config patch - --patch="{\"etcdConfig\": {\"peerServingInfo\": {\"bindAddress\": \"${API_HOST}:${ETCD_PEER_PORT}\"}}}" | \
oc ex config patch - --patch="{\"auditConfig\": {\"enabled\": true}}" | \
oc ex config patch - --patch="{\"imagePolicyConfig\": {\"maxImagesBulkImportedPerRepository\": ${MAX_IMAGES_BULK_IMPORTED_PER_REPOSITORY:-5}}}" > "${SERVER_CONFIG_DIR}/master/master-config.yaml"
if [[ -n "${ALLOWED_REGISTRIES-}" ]]; then
oc ex config patch "${SERVER_CONFIG_DIR}/master/master-config.yaml" --patch="{\"imagePolicyConfig\":{\"allowedRegistriesForImport\":${ALLOWED_REGISTRIES}}}" > "${SERVER_CONFIG_DIR}/master/master-config.yaml.patch"
mv -f "${SERVER_CONFIG_DIR}/master/master-config.yaml.patch" "${SERVER_CONFIG_DIR}/master/master-config.yaml"
fi
# Make oc use ${MASTER_CONFIG_DIR}/admin.kubeconfig, and ignore anything in the running user's $HOME dir
export ADMIN_KUBECONFIG="${MASTER_CONFIG_DIR}/admin.kubeconfig"
CLUSTER_ADMIN_CONTEXT=$(oc config view --config="${ADMIN_KUBECONFIG}" --flatten -o template --template='{{index . "current-context"}}'); export CLUSTER_ADMIN_CONTEXT
${sudo} chmod -R a+rwX "${ADMIN_KUBECONFIG}"
os::log::debug "To debug: export KUBECONFIG=$ADMIN_KUBECONFIG"
}
readonly -f os::start::internal::patch_master_config
# os::start::server starts the OpenShift server, exports the PID of the OpenShift server and waits until openshift server endpoints are available
# It is advised to use this function after a successful run of 'os::start::configure_server'
#
# Globals:
# - USE_SUDO
# - LOG_DIR
# - ARTIFACT_DIR
# - VOLUME_DIR
# - SERVER_CONFIG_DIR
# - USE_IMAGES
# - MASTER_ADDR
# - MASTER_CONFIG_DIR
# - NODE_CONFIG_DIR
# - API_SCHEME
# - API_HOST
# - API_PORT
# - KUBELET_SCHEME
# - KUBELET_HOST
# - KUBELET_PORT
# Arguments:
# 1 - API server version (i.e. "v1.2.0")
# 2 - Controllers version (i.e. "v1.2.0")
# 3 - Skip node start ("1" to skip node start)
# Returns:
# - export OS_PID
# - export ETCD_PID
# - export API_SERVER_PID
# - export CONTROLLERS_PID
# - export NODE_PID
function os::start::server() {
local api_server_version="${1:-}"
local controllers_version="${2:-}"
local skip_node="${3:-}"
os::log::debug "Scan of OpenShift related processes already up via ps -ef | grep openshift : "
os::log::debug "$( ps -ef | grep openshift )"
mkdir -p "${LOG_DIR}"
if [[ -z "${api_server_version}" && -z "${controllers_version}" ]]; then
if [[ -z "${skip_node}" ]]; then
os::start::internal::print_server_info
os::start::all_in_one
else
os::start::master
fi
else
os::start::internal::print_server_info
os::start::etcd
os::start::api_server "${api_server_version}"
os::start::controllers "${controllers_version}"
if [[ -z "${skip_node}" ]]; then
os::start::internal::start_node
fi
fi
}
readonly -f os::start::server
# os::start::master starts the OpenShift master, exports the PID of the OpenShift master and waits until OpenShift master endpoints are available
# It is advised to use this function after a successful run of 'os::start::configure_server'
#
# Globals:
# - USE_SUDO
# - LOG_DIR
# - ARTIFACT_DIR
# - SERVER_CONFIG_DIR
# - USE_IMAGES
# - MASTER_ADDR
# - MASTER_CONFIG_DIR
# - API_SCHEME
# - API_HOST
# - API_PORT
# Arguments:
# None
# Returns:
# - export OS_PID
function os::start::master() {
os::start::internal::print_server_info
mkdir -p "${LOG_DIR}"
os::log::debug "Scan of OpenShift related processes already up via ps -ef | grep openshift : "
os::log::debug "$( ps -ef | grep openshift )"
os::log::debug "Starting OpenShift server"
local openshift_env=( "OPENSHIFT_ON_PANIC=crash" )
$(os::start::internal::openshift_executable) start master \
--loglevel=4 \
--logspec='*importer=5' \
--config="${MASTER_CONFIG_DIR}/master-config.yaml" \
&>"${LOG_DIR}/openshift.log" &
export OS_PID=$!
os::log::debug "OpenShift server start at: $( date )"
os::test::junit::declare_suite_start "setup/start-master"
os::cmd::try_until_text "oc get --raw /healthz --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 160 * second )) 0.25
os::cmd::try_until_text "oc get --raw /healthz/ready --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 160 * second )) 0.25
os::cmd::try_until_success "oc get service kubernetes --namespace default --config='${ADMIN_KUBECONFIG}'" $(( 160 * second )) 0.25
# wait for lease acquisition that indicates the controllers and scheduler have successfully started
os::cmd::try_until_success "oc get configmap kube-controller-manager --namespace kube-system --config='${ADMIN_KUBECONFIG}'" $(( 160 * second )) 0.25
os::cmd::try_until_success "oc get configmap openshift-master-controllers --namespace kube-system --config='${ADMIN_KUBECONFIG}'" $(( 160 * second )) 0.25
os::cmd::try_until_success "oc get configmap kube-scheduler --namespace kube-system --config='${ADMIN_KUBECONFIG}'" $(( 160 * second )) 0.25
os::test::junit::declare_suite_end
os::log::debug "OpenShift server health checks done at: $( date )"
}
readonly -f os::start::master
# os::start::all_in_one starts the OpenShift server all in one.
# It is advised to use this function after a successful run of 'os::start::configure_server'
#
# Globals:
# - USE_SUDO
# - LOG_DIR
# - ARTIFACT_DIR
# - VOLUME_DIR
# - SERVER_CONFIG_DIR
# - USE_IMAGES
# - MASTER_ADDR
# - MASTER_CONFIG_DIR
# - NODE_CONFIG_DIR
# - API_SCHEME
# - API_HOST
# - API_PORT
# - KUBELET_SCHEME
# - KUBELET_HOST
# - KUBELET_PORT
# Returns:
# - export OS_PID
function os::start::all_in_one() {
local use_latest_images
if [[ -n "${USE_LATEST_IMAGES:-}" ]]; then
use_latest_images="true"
else
use_latest_images="false"
fi
os::log::debug "Starting OpenShift server"
local openshift_env=( "OPENSHIFT_PROFILE=${OPENSHIFT_PROFILE:-web}" "OPENSHIFT_ON_PANIC=crash" )
local openshift_executable
openshift_executable="$(os::start::internal::openshift_executable)"
${openshift_executable} start \
--loglevel=4 \
--logspec='*importer=5' \
--latest-images="${use_latest_images}" \
--node-config="${NODE_CONFIG_DIR}/node-config.yaml" \
--master-config="${MASTER_CONFIG_DIR}/master-config.yaml" \
&>"${LOG_DIR}/openshift.log" &
export OS_PID=$!
os::log::debug "OpenShift server start at: $( date )"
os::test::junit::declare_suite_start "setup/start-all_in_one"
os::cmd::try_until_text "oc get --raw /healthz --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 80 * second )) 0.25
os::cmd::try_until_text "oc get --raw ${KUBELET_SCHEME}://${KUBELET_HOST}:${KUBELET_PORT}/healthz --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 2 * minute )) 0.5
os::cmd::try_until_text "oc get --raw /healthz/ready --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 80 * second )) 0.25
os::cmd::try_until_success "oc get service kubernetes --namespace default --config='${ADMIN_KUBECONFIG}'" $(( 160 * second )) 0.25
os::cmd::try_until_success "oc get --raw /api/v1/nodes/${KUBELET_HOST} --config='${ADMIN_KUBECONFIG}'" $(( 80 * second )) 0.25
os::test::junit::declare_suite_end
os::log::debug "OpenShift server health checks done at: $( date )"
}
readonly -f os::start::all_in_one
# os::start::etcd starts etcd for OpenShift
# Globals:
# - USE_SUDO
# - LOG_DIR
# - MASTER_CONFIG_DIR
# - API_SCHEME
# - API_HOST
# - ETCD_PORT
# Arguments:
# None
# Returns:
# - export ETCD_PID
function os::start::etcd() {
os::log::debug "Starting etcd"
local openshift_env=( "OPENSHIFT_ON_PANIC=crash" )
local openshift_executable
openshift_executable="$(os::start::internal::openshift_executable)"
${openshift_executable} start etcd \
--config="${MASTER_CONFIG_DIR}/master-config.yaml" &>"${LOG_DIR}/etcd.log" &
export ETCD_PID=$!
os::log::debug "etcd server start at: $( date )"
os::test::junit::declare_suite_start "setup/start-etcd"
os::cmd::try_until_success "os::util::curl_etcd '/version'" $(( 10 * second ))
os::test::junit::declare_suite_end
os::log::debug "etcd server health checks done at: $( date )"
}
readonly -f os::start::etcd
# os::start::api_server starts the OpenShift API server
# Globals:
# - USE_SUDO
# - LOG_DIR
# - ARTIFACT_DIR
# - MASTER_CONFIG_DIR
# - API_SCHEME
# - API_HOST
# - API_PORT
# - KUBELET_SCHEME
# - KUBELET_HOST
# - KUBELET_PORT
# Arguments:
# 1 - api server version
# Returns:
# - export OS_PID
function os::start::api_server() {
local api_server_version=${1:-}
local openshift_volumes=( "${MASTER_CONFIG_DIR}" )
local openshift_env=( "OPENSHIFT_PROFILE=${OPENSHIFT_PROFILE:-web}" "OPENSHIFT_ON_PANIC=crash" )
local openshift_executable
openshift_executable="$(os::start::internal::openshift_executable "${api_server_version}")"
${openshift_executable} start master api \
--config="${MASTER_CONFIG_DIR}/master-config.yaml" \
&>"${LOG_DIR}/apiserver.log" &
export API_SERVER_PID=$!
os::log::debug "OpenShift API server start at: $( date )"
os::test::junit::declare_suite_start "setup/start-api_server"
os::cmd::try_until_text "oc get --raw /healthz --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 80 * second )) 0.25
os::cmd::try_until_text "oc get --raw /healthz/ready --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 160 * second )) 0.25
os::test::junit::declare_suite_end
os::log::debug "OpenShift API server health checks done at: $( date )"
}
readonly -f os::start::api_server
# os::start::controllers starts the OpenShift controllers
# Globals:
# - USE_SUDO
# - LOG_DIR
# - MASTER_CONFIG_DIR
# Arguments:
# 1 - controllers version
# Returns:
# - export CONTROLLERS_PID
function os::start::controllers() {
local controllers_version=${1:-}
local openshift_volumes=( "${MASTER_CONFIG_DIR}" )
local openshift_env=( "OPENSHIFT_ON_PANIC=crash" )
local openshift_executable
openshift_executable="$(os::start::internal::openshift_executable "${controllers_version}")"
${openshift_executable} start master controllers \
--config="${MASTER_CONFIG_DIR}/master-config.yaml" \
&>"${LOG_DIR}/controllers.log" &
export CONTROLLERS_PID=$!
os::log::debug "OpenShift controllers start at: $( date )"
}
readonly -f os::start::controllers
# os::start::internal::start_node starts the OpenShift node
# Globals:
# - USE_SUDO
# - LOG_DIR
# - USE_LATEST_IMAGES
# - NODE_CONFIG_DIR
# - KUBELET_SCHEME
# - KUBELET_HOST
# - KUBELET_PORT
# Arguments:
# none
# Returns:
# - export NODE_PID
function os::start::internal::start_node() {
local use_latest_images
if [[ -n "${USE_LATEST_IMAGES:-}" ]]; then
use_latest_images="true"
else
use_latest_images="false"
fi
mkdir -p "${LOG_DIR}"
os::log::debug "Starting OpenShift node"
local openshift_env=( "OPENSHIFT_ON_PANIC=crash" )
$(which hyperkube) kubelet $(openshift-node-config --config="${NODE_CONFIG_DIR}/node-config.yaml" --loglevel=4) &>"${LOG_DIR}/node.log" &
export NODE_PID=$!
os::log::debug "OpenShift node start at: $( date )"
os::test::junit::declare_suite_start "setup/start-node"
os::cmd::try_until_text "oc get --raw ${KUBELET_SCHEME}://${KUBELET_HOST}:${KUBELET_PORT}/healthz --as system:unauthenticated --config='${ADMIN_KUBECONFIG}'" 'ok' $(( 80 * second )) 0.25
os::test::junit::declare_suite_end
os::log::debug "OpenShift node health checks done at: $( date )"
}
readonly -f os::start::internal::start_node
# os::start::internal::openshift_executable returns an openshift executable
# Vars:
# - openshift_volumes - array of volumes to mount to openshift container (if previous version)
# - openshift_env - array of environment variables to use when running the openshift executable
# Arguments:
# 1 - version - the version of openshift to run. If empty, execute current version
# Returns:
# - openshift executable
function os::start::internal::openshift_executable() {
local sudo="${USE_SUDO:+sudo}"
local version="${1:-}"
local openshift_executable
if [[ -n "${version}" ]]; then
local docker_options="--rm --privileged --net=host"
local volumes=""
local envvars=""
if [[ -n "${openshift_volumes:-}" ]]; then
for volume in "${openshift_volumes[@]}"; do
volumes+=" -v ${volume}:${volume}"
done
fi
if [[ -n "${openshift_env:-}" ]]; then
for envvar in "${openshift_env[@]}"; do
envvars+=" -e ${envvar}"
done
fi
openshift_executable="${sudo} docker run ${docker_options} ${volumes} ${envvars} openshift/origin:${version}"
else
if [[ -n "${sudo}" ]]; then
openshift_executable="${sudo} -E $(which openshift)"
else
openshift_executable="$(which openshift)"
fi
fi
echo "${openshift_executable}"
}
readonly -f os::start::internal::openshift_executable
# os::start::internal::determine_hostnames determines host names to add to tls cert
#
# Globals:
# - PUBLIC_MASTER_HOST
# Returns:
# - hostnames - list of hostnames to add to tls cert
function os::start::internal::determine_hostnames() {
local hostnames
hostnames="${PUBLIC_MASTER_HOST},"
hostnames+="localhost,172.30.0.1,"
for address in $(openshift start master --print-ip); do
hostnames+="${address},"
done
hostnames+="kubernetes.default.svc.cluster.local,"
hostnames+="kubernetes.default.svc,"
hostnames+="kubernetes.default,"
hostnames+="kubernetes,"
hostnames+="openshift.default.svc.cluster.local,"
hostnames+="openshift.default.svc,"
hostnames+="openshift.default,"
hostnames+="openshift"
echo "${hostnames}"
}
readonly -f os::start::internal::determine_hostnames
# os::start::internal::determine_hostnames determines host names to add to tls cert
#
# Globals:
# - LOG_DIR
# - SERVER_CONFIG_DIR
# - USE_IMAGES
# - MASTER_ADDR
function os::start::internal::print_server_info() {
local openshift_executable
openshift_executable="$(os::start::internal::openshift_executable)"
os::log::debug "$(${openshift_executable} version)"
os::log::debug "Server logs will be at: ${LOG_DIR}"
os::log::debug "Config dir is: ${SERVER_CONFIG_DIR}"
os::log::debug "Using images: ${USE_IMAGES}"
os::log::debug "MasterIP is: ${MASTER_ADDR}"
}
# os::start::router installs the OpenShift router and optionally creates
# the server cert as well.
#
# Globals:
# - CREATE_ROUTER_CERT
# - MASTER_CONFIG_DIR
# - API_HOST
# - ADMIN_KUBECONFIG
# - USE_IMAGES
# Arguments:
# None
# Returns:
# None
function os::start::router() {
os::log::debug "Installing the router"
oc adm policy add-scc-to-user privileged --serviceaccount='router' --config="${ADMIN_KUBECONFIG}"
# Create a TLS certificate for the router
if [[ -n "${CREATE_ROUTER_CERT:-}" ]]; then
os::log::debug "Generating router TLS certificate"
oc adm ca create-server-cert --hostnames="*.${API_HOST}.nip.io" \
--key="${MASTER_CONFIG_DIR}/router.key" \
--cert="${MASTER_CONFIG_DIR}/router.crt" \
--signer-key="${MASTER_CONFIG_DIR}/ca.key" \
--signer-cert="${MASTER_CONFIG_DIR}/ca.crt" \
--signer-serial="${MASTER_CONFIG_DIR}/ca.serial.txt"
cat "${MASTER_CONFIG_DIR}/router.crt" \
"${MASTER_CONFIG_DIR}/router.key" \
"${MASTER_CONFIG_DIR}/ca.crt" > "${MASTER_CONFIG_DIR}/router.pem"
oc adm router --config="${ADMIN_KUBECONFIG}" --images="${USE_IMAGES}" --service-account=router --default-cert="${MASTER_CONFIG_DIR}/router.pem"
else
oc adm router --config="${ADMIN_KUBECONFIG}" --images="${USE_IMAGES}" --service-account=router
fi
# Note that when the haproxy config manager is set based on router type,
# the env entry may need to be always set or removed (if defaulted).
if [[ -n "${ROUTER_HAPROXY_CONFIG_MANAGER:-}" ]]; then
os::log::debug "Changing the router DC to enable the haproxy config manager"
oc set env dc/router -c router ROUTER_HAPROXY_CONFIG_MANAGER=true
fi
}
readonly -f os::start::router
# os::start::registry installs the OpenShift integrated registry
#
# Globals:
# - ADMIN_KUBECONFIG
# - USE_IMAGES
# Arguments:
# None
# Returns:
# None
function os::start::registry() {
# The --mount-host option is provided to reuse local storage.
os::log::debug "Installing the registry"
# For testing purposes, ensure the quota objects are always up to date in the registry by
# disabling project cache.
oc adm registry --config="${ADMIN_KUBECONFIG}" --images="${USE_IMAGES}" --enforce-quota -o json | \
oc set env --config="${ADMIN_KUBECONFIG}" --local -f - --output json "REGISTRY_MIDDLEWARE_REPOSITORY_OPENSHIFT_PROJECTCACHETTL=0" | \
oc create --config="${ADMIN_KUBECONFIG}" -f -
}
readonly -f os::start::registry