forked from openshift-metal3/dev-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.sh
executable file
·596 lines (493 loc) · 21.1 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
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
#!/bin/bash
set -o pipefail
function retry_with_timeout() {
retries=$1
timeout_duration=$2
command=${*:3}
for _ in $(seq "$retries"); do
exit_code=0
timeout "$timeout_duration" bash -c "$command" || exit_code=$?
if (( exit_code == 0 )); then
return 0
fi
done
return $(( exit_code ))
}
function generate_assets() {
rm -rf assets/generated && mkdir assets/generated
for file in $(find assets/templates/ -iname '*.yaml' -type f -printf "%P\n"); do
echo "Templating ${file} to assets/generated/${file}"
cp assets/{templates,generated}/${file}
for path in $(yq -r '.spec.config.storage.files[].path' assets/templates/${file} | cut -c 2-); do
assets/yaml_patch.py "assets/generated/${file}" "/${path}" "$(cat assets/files/${path} | base64 -w0)"
done
done
}
function local_gateway_mode(){
ASSESTS_DIR=$1
cp assets/templates/cluster-network-00-gateway-mode.yaml.optional assets/generated/cluster-network-00-gateway-mode.yaml
}
function ensure_line() {
file=$1
line=$2
grep -q "$line" $file || echo "$line" | sudo tee -a $file
}
function configure_chronyd() {
sudo dnf install chrony && sudo systemctl enable chronyd
ensure_line /etc/chrony.conf "allow ${EXTERNAL_SUBNET_V4}"
ensure_line /etc/chrony.conf "allow ${EXTERNAL_SUBNET_V6}"
ensure_line /etc/chrony.conf "allow ${PROVISIONING_NETWORK}"
sudo systemctl restart chronyd
if [ "$MANAGE_BR_BRIDGE" == "y" ];
then
sudo firewall-cmd --permanent --zone=libvirt --add-service=ntp
sudo firewall-cmd --zone=libvirt --add-service=ntp
else
sudo firewall-cmd --permanent --add-service=ntp
sudo firewall-cmd --add-service=ntp
fi
}
function custom_ntp(){
ASSESTS_DIR=$1
# TODO - consider adding NTP server config to install-config.yaml instead
if [ -z "${NTP_SERVERS}" ]; then
if host clock.redhat.com; then
NTP_SERVERS="clock.redhat.com"
elif host pool.ntp.org; then
NTP_SERVERS="pool.ntp.org"
fi
fi
if [ -n "$NTP_SERVERS" ]; then
cp assets/templates/98_worker-chronyd-custom.yaml.optional assets/generated/98_worker-chronyd-custom.yaml
cp assets/templates/98_master-chronyd-custom.yaml.optional assets/generated/98_master-chronyd-custom.yaml
NTPFILECONTENT=$(cat assets/files/etc/chrony.conf)
for ntp in $(echo $NTP_SERVERS | tr ";" "\n"); do
NTPFILECONTENT="${NTPFILECONTENT}"$'\n'"pool ${ntp} iburst"
done
NTPFILECONTENT=$(echo "${NTPFILECONTENT}" | base64 -w0)
sed -i -e "s/NTPFILECONTENT/${NTPFILECONTENT}/g" assets/generated/*-chronyd-custom.yaml
IGNITION_VERSION=$(yq -r .spec.config.ignition.version ${ASSESTS_DIR}/99_openshift-machineconfig_99-master-ssh.yaml)
sed -i -e "s/IGNITION_VERSION/${IGNITION_VERSION}/g" assets/generated/*-chronyd-custom.yaml
if [[ ${IGNITION_VERSION} =~ ^3\. ]]; then
sed -i -e "/filesystem: root/d" assets/generated/*-chronyd-custom.yaml
fi
fi
}
function create_cluster() {
local assets_dir
assets_dir="$1"
# Enable terraform debug logging
export TF_LOG=DEBUG
$OPENSHIFT_INSTALLER --dir "${assets_dir}" --log-level=debug create manifests
if [[ "$OPENSHIFT_RELEASE_TYPE" != "ga" ]]; then
# For CI and nightly releases we need to remove the channel property to
# prevent critical alerts.
sed -i '/^ channel:/d' "${assets_dir}/manifests/cvo-overrides.yaml"
fi
mkdir -p ${assets_dir}/openshift
generate_assets
if [ -z "${NTP_SERVERS}" ];
then
export NTP_SERVERS="$PROVISIONING_HOST_EXTERNAL_IP"
fi
custom_ntp ${assets_dir}/openshift
if [[ "${OVN_LOCAL_GATEWAY_MODE}" == "true" ]] && [[ "${NETWORK_TYPE}" == "OVNKubernetes" ]]; then
local_gateway_mode ${assets_dir}/openshift
fi
generate_metal3_config
find assets/generated -name '*.yaml' -exec cp -f {} ${assets_dir}/openshift \;
if [[ "${IP_STACK}" == "v4v6" && "$(openshift_version $OCP_DIR)" =~ 4.[67] ]]; then
# The IPv6DualStack feature is not on by default in 4.6 and 4.7 and needs
# to be manually enabled
cp assets/ipv6-dual-stack-no-upgrade.yaml ${assets_dir}/openshift/.
fi
if [[ ! -z "${ENABLE_CBO_TEST}" ]]; then
# Create an empty image to be used by the CBO test deployment
EMPTY_IMAGE=${LOCAL_REGISTRY_DNS_NAME}:${LOCAL_REGISTRY_PORT}/localimages/empty:latest
echo -e "FROM quay.io/quay/busybox\nCMD [\"sleep\", \"infinity\"]" | sudo podman build -t ${EMPTY_IMAGE} -f - .
sudo podman push --tls-verify=false --authfile ${REGISTRY_CREDS} ${EMPTY_IMAGE} ${EMPTY_IMAGE}
cp assets/metal3-cbo-deployment.yaml ${assets_dir}/openshift/.
fi
if [ ! -z "${ASSETS_EXTRA_FOLDER:-}" ]; then
cp -rf ${ASSETS_EXTRA_FOLDER}/*.yaml ${assets_dir}/openshift/
fi
if [[ "$BMO_WATCH_ALL_NAMESPACES" == "true" ]]; then
sed -i s/"watchAllNamespaces: false"/"watchAllNamespaces: true"/ "${assets_dir}/openshift/99_baremetal-provisioning-config.yaml"
fi
# Preserve the assets for debugging
mkdir -p "${assets_dir}/saved-assets"
cp -av "${assets_dir}/openshift" "${assets_dir}/saved-assets"
cp -av "${assets_dir}/manifests" "${assets_dir}/saved-assets"
if [ ! -z "${IGNITION_EXTRA:-}" ]; then
$OPENSHIFT_INSTALLER --dir "${assets_dir}" --log-level=debug create ignition-configs
if ! jq . ${IGNITION_EXTRA}; then
echo "Error ${IGNITION_EXTRA} not valid json"
exit 1
fi
mv ${assets_dir}/master.ign ${assets_dir}/master.ign.orig
jq -s '.[0] * .[1]' ${IGNITION_EXTRA} ${assets_dir}/master.ign.orig | tee ${assets_dir}/master.ign
mv ${assets_dir}/worker.ign ${assets_dir}/worker.ign.orig
jq -s '.[0] * .[1]' ${IGNITION_EXTRA} ${assets_dir}/worker.ign.orig | tee ${assets_dir}/worker.ign
fi
trap auth_template_and_removetmp EXIT
$OPENSHIFT_INSTALLER --dir "${assets_dir}" --log-level=debug create cluster 2>&1 | grep --line-buffered -v 'password\|X-Auth-Token\|UserData:'
}
function network_ip() {
local network
local rc
network="$1"
ip="$(sudo virsh net-dumpxml "$network" | "${PWD}/pyxpath" "//ip/@address" -)"
rc=$?
if [ $rc -ne 0 ]; then
return $rc
fi
echo "$ip"
}
function node_val() {
local n
local val
n="$1"
val="$2"
jq -r ".nodes[${n}].${val}" $NODES_FILE
}
function node_map_to_install_config_hosts() {
local num_hosts
num_hosts="$1"
start_idx="$2"
role="$3"
for ((idx=$start_idx;idx<$(($1 + $start_idx));idx++)); do
name=$(node_val ${idx} "name")
mac=$(node_val ${idx} "ports[0].address")
driver=$(node_val ${idx} "driver")
if [ $driver == "ipmi" ] ; then
driver_prefix=ipmi
elif [ $driver == "idrac" ] ; then
driver_prefix=drac
fi
port=$(node_val ${idx} "driver_info.port // \"\"")
username=$(node_val ${idx} "driver_info.username")
password=$(node_val ${idx} "driver_info.password")
address=$(node_val ${idx} "driver_info.address")
disable_certificate_verification=$(node_val ${idx} "driver_info.disable_certificate_verification")
boot_mode=$(node_val ${idx} "properties.boot_mode")
if [[ "$boot_mode" == "null" ]]; then
boot_mode="UEFI"
fi
cat << EOF
- name: ${name}
role: ${role}
bmc:
address: ${address}
username: ${username}
password: ${password}
disableCertificateVerification: ${disable_certificate_verification}
bootMACAddress: ${mac}
bootMode: ${boot_mode}
EOF
# FIXME(stbenjam) Worker code in installer should accept
# "default" as well -- currently the mapping doesn't work,
# so we use the raw value for BMO's default which is "unknown"
if [[ "$role" == "master" ]]; then
if [ -z "${MASTER_HARDWARE_PROFILE:-}" ]; then
cat <<EOF
rootDeviceHints:
deviceName: "${ROOT_DISK_NAME}"
EOF
else
echo "WARNING: host profiles are deprecated, set ROOT_DISK_NAME instead of MASTER_HARDWARE_PROFILE." 1>&2
fi
echo " hardwareProfile: ${MASTER_HARDWARE_PROFILE:-default}"
else
if [ -z "${WORKER_HARDWARE_PROFILE:-}" ]; then
cat <<EOF
rootDeviceHints:
deviceName: "${ROOT_DISK_NAME}"
EOF
else
echo "WARNING: host profiles are deprecated, set ROOT_DISK_NAME instead of WORKER_HARDWARE_PROFILE." 1>&2
fi
echo " hardwareProfile: ${WORKER_HARDWARE_PROFILE:-unknown}"
fi
done
}
function sync_repo_and_patch {
REPO_PATH=${REPO_PATH:-$HOME}
DEST="${REPO_PATH}/$1"
echo "Syncing $1"
if [ ! -d $DEST ]; then
mkdir -p $DEST
git clone $2 $DEST
fi
pushd $DEST
git am --abort || true
git checkout master
git fetch origin
git rebase origin/master
if test "$#" -gt "2" ; then
git branch -D metalkube || true
git checkout -b metalkube
shift; shift;
for arg in "$@"; do
curl -L $arg | git am
done
fi
popd
}
function generate_auth_template {
set +x
numPods=$(oc get pods -n openshift-machine-api -l baremetal.openshift.io/cluster-baremetal-operator=metal3-state -o json | jq '.items | length')
if [ "$numPods" -eq '0' ]; then
echo "Metal3 pod not found, skipping clouds.yaml generation"
return
fi
# clouds.yaml
OCP_VERSIONS_NOAUTH="4.3 4.4 4.5"
VERSION=$(openshift_version $OCP_DIR)
if [[ "$OCP_VERSIONS_NOAUTH" == *"$VERSION"* ]]; then
go run metal3-templater.go "noauth" -template-file=clouds.yaml.template -provisioning-interface="$CLUSTER_PRO_IF" -provisioning-network="$PROVISIONING_NETWORK" -image-url="$MACHINE_OS_IMAGE_URL" -bootstrap-ip="$BOOTSTRAP_PROVISIONING_IP" -cluster-ip="$CLUSTER_PROVISIONING_IP" > clouds.yaml
else
IRONIC_USER=$((oc -n openshift-machine-api get secret/metal3-ironic-password -o template --template '{{.data.username}}' || echo "") | base64 -d)
IRONIC_PASSWORD=$((oc -n openshift-machine-api get secret/metal3-ironic-password -o template --template '{{.data.password}}' || echo "") | base64 -d)
IRONIC_CREDS="$IRONIC_USER:$IRONIC_PASSWORD"
INSPECTOR_USER=$((oc -n openshift-machine-api get secret/metal3-ironic-inspector-password -o template --template '{{.data.username}}' || echo "") | base64 -d)
INSPECTOR_PASSWORD=$((oc -n openshift-machine-api get secret/metal3-ironic-inspector-password -o template --template '{{.data.password}}' || echo "") | base64 -d)
INSPECTOR_CREDS="$INSPECTOR_USER:$INSPECTOR_PASSWORD"
CLUSTER_IRONIC_IP=$(oc get pods -n openshift-machine-api -l baremetal.openshift.io/cluster-baremetal-operator=metal3-state -o jsonpath="{.items[0].status.hostIP}" || echo "")
# TODO(dtantsur): fetch the TLS public key, store it locally and link from clouds.yaml.
if [ ! -z "${CLUSTER_IRONIC_IP}" ]; then
go run metal3-templater.go "http_basic" -ironic-basic-auth="$IRONIC_CREDS" -inspector-basic-auth="$INSPECTOR_CREDS" -template-file=clouds.yaml.template -provisioning-interface="$CLUSTER_PRO_IF" -provisioning-network="$PROVISIONING_NETWORK" -image-url="$MACHINE_OS_IMAGE_URL" -bootstrap-ip="$BOOTSTRAP_PROVISIONING_IP" -cluster-ip="$CLUSTER_IRONIC_IP" > clouds.yaml
else
echo "Unable to read CLUSTER_IRONIC_IP - you may need to run generate_clouds_yaml.sh manually"
fi
BOOTSTRAP_VM_IP=$(bootstrap_ip)
if [ ! -z "${BOOTSTRAP_VM_IP}" ]; then
if ping -c 1 ${BOOTSTRAP_VM_IP}; then
# From 4.7 basic_auth is also enabled on the bootstrap VM
# There's a clouds.yaml we can copy in that case
# FIXME: the sed of the URL is a workaround for
# https://bugzilla.redhat.com/show_bug.cgi?id=1930240
($SSH core@${BOOTSTRAP_VM_IP} sudo cat /opt/metal3/auth/clouds.yaml || echo "") | sed "s/^clouds://" | sed "s/http:\/\/:/http:\/\/${BOOTSTRAP_VM_IP}:/" >> clouds.yaml
fi
fi
fi
# For compatibility with metal3-dev-env openstackclient.sh
# which mounts a config dir into the ironic-client container
mkdir -p _clouds_yaml
ln -f clouds.yaml _clouds_yaml
set -x
}
function generate_metal3_config {
MACHINE_OS_IMAGE_URL="http:///$(wrap_if_ipv6 $MIRROR_IP)/images/${MACHINE_OS_IMAGE_NAME}?sha256=${MACHINE_OS_BOOTSTRAP_IMAGE_SHA256}"
# metal3-config.yaml
mkdir -p ${OCP_DIR}/deploy
go get github.com/apparentlymart/go-cidr/cidr github.com/openshift/installer/pkg/ipnet
if [[ "$(openshift_version $OCP_DIR)" == "4.3" ]]; then
go run metal3-templater.go noauth -template-file=metal3-config.yaml.template -provisioning-interface="$CLUSTER_PRO_IF" -provisioning-network="$PROVISIONING_NETWORK" -image-url="$MACHINE_OS_IMAGE_URL" -bootstrap-ip="$BOOTSTRAP_PROVISIONING_IP" -cluster-ip="$CLUSTER_PROVISIONING_IP" > ${OCP_DIR}/deploy/metal3-config.yaml
cp ${OCP_DIR}/deploy/metal3-config.yaml assets/generated/98_metal3-config.yaml
else
echo "OpenShift Version is > 4.3; skipping config map"
fi
# Function to generate the bootstrap cloud information
go run metal3-templater.go "bootstrap" -template-file=clouds.yaml.template -bootstrap-ip="$BOOTSTRAP_PROVISIONING_IP" > clouds.yaml
mkdir -p _clouds_yaml
ln -f clouds.yaml _clouds_yaml/clouds.yaml
}
function image_mirror_config {
if [[ ! -z "${MIRROR_IMAGES}" || ! -z "${ENABLE_LOCAL_REGISTRY}" ]]; then
INDENTED_CERT=$( cat $REGISTRY_DIR/certs/$REGISTRY_CRT | awk '{ print " ", $0 }' )
if [[ ! -z "${MIRROR_IMAGES}" && ! -s ${MIRROR_LOG_FILE} ]]; then
. /tmp/mirrored_release_image
TAGGED=$(echo $MIRRORED_RELEASE_IMAGE | sed -e 's/release://')
RELEASE=$(echo $MIRRORED_RELEASE_IMAGE | grep -o 'registry.ci.openshift.org[^":\@]\+')
cat << EOF
imageContentSources:
- mirrors:
- ${LOCAL_REGISTRY_DNS_NAME}:${LOCAL_REGISTRY_PORT}/localimages/local-release-image
source: ${RELEASE}
- mirrors:
- ${LOCAL_REGISTRY_DNS_NAME}:${LOCAL_REGISTRY_PORT}/localimages/local-release-image
source: ${TAGGED}
additionalTrustBundle: |
${INDENTED_CERT}
EOF
else
cat ${MIRROR_LOG_FILE} | sed -n '/To use the new mirrored repository to install/,/To use the new mirrored repository for upgrades/p' |\
sed -e '/^$/d' -e '/To use the new mirrored repository/d'
cat << EOF
additionalTrustBundle: |
${INDENTED_CERT}
EOF
fi
fi
}
function setup_local_registry() {
# httpd-tools provides htpasswd utility
sudo yum install -y httpd-tools
sudo mkdir -pv ${REGISTRY_DIR}/{auth,certs,data}
sudo chown -R $USER:$GROUP ${REGISTRY_DIR}
pushd $REGISTRY_DIR/certs
#
# registry key and cert are generated if they don't exist
#
# NOTE(bnemec): When making changes to the certificate configuration,
# increment the number in this filename and the REGISTRY_CRT value in common.sh
REGISTRY_KEY=registry.2.key
restart_registry=0
if [[ ! -s ${REGISTRY_DIR}/certs/${REGISTRY_KEY} ]]; then
restart_registry=1
openssl genrsa -out ${REGISTRY_DIR}/certs/${REGISTRY_KEY} 2048
fi
if [[ ! -s ${REGISTRY_DIR}/certs/${REGISTRY_CRT} ]]; then
restart_registry=1
# Format names as DNS:name1,DNS:name2
SUBJECT_ALT_NAME="DNS:$(echo $ALL_REGISTRY_DNS_NAMES | sed 's/ /,DNS:/g')"
SSL_CONF=${REGISTRY_DIR}/certs/openssl.cnf
cat > ${SSL_CONF} <<EOF
[req]
distinguished_name = req_distinguished_name
prompt = no
[req_distinguished_name]
C = US
ST = NC
L = Raleigh
O = Test Company
OU = Testing
CN = ${BASE_DOMAIN}
[SAN]
basicConstraints=CA:TRUE,pathlen:0
subjectAltName = ${SUBJECT_ALT_NAME}
EOF
openssl req -x509 \
-key ${REGISTRY_DIR}/certs/${REGISTRY_KEY} \
-out ${REGISTRY_DIR}/certs/${REGISTRY_CRT} \
-days 365 \
-config ${SSL_CONF} \
-extensions SAN
# Dump the certificate details to the log
openssl x509 -in ${REGISTRY_DIR}/certs/${REGISTRY_CRT} -text
fi
popd
htpasswd -bBc ${REGISTRY_DIR}/auth/htpasswd ${REGISTRY_USER} ${REGISTRY_PASS}
sudo cp ${REGISTRY_DIR}/certs/${REGISTRY_CRT} /etc/pki/ca-trust/source/anchors/
sudo update-ca-trust
reg_state=$(sudo podman inspect registry --format "{{.State.Status}}" || echo "error")
# if container doesn't run or has different SSL cert that preent in ${REGISTRY_DIR}/certs/
# restart it
if [[ "$reg_state" != "running" || $restart_registry -eq 1 ]]; then
sudo podman rm registry -f || true
sudo podman run -d --name registry --net=host --privileged \
-v ${REGISTRY_DIR}/data:/var/lib/registry:z \
-v ${REGISTRY_DIR}/auth:/auth:z \
-e "REGISTRY_AUTH=htpasswd" \
-e "REGISTRY_AUTH_HTPASSWD_REALM=Registry Realm" \
-e REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd \
-v ${REGISTRY_DIR}/certs:/certs:z \
-e REGISTRY_HTTP_TLS_CERTIFICATE=/certs/${REGISTRY_CRT} \
-e REGISTRY_HTTP_TLS_KEY=/certs/${REGISTRY_KEY} \
${DOCKER_REGISTRY_IMAGE}
fi
}
function add_local_certificate_as_trusted() {
REGISTRY_CONFIG="registry-config"
oc create configmap ${REGISTRY_CONFIG} \
--from-file=${LOCAL_REGISTRY_DNS_NAME}..${LOCAL_REGISTRY_PORT}=${REGISTRY_DIR}/certs/${REGISTRY_CRT} -n openshift-config
oc patch image.config.openshift.io/cluster --patch "{\"spec\":{\"additionalTrustedCA\":{\"name\":\"${REGISTRY_CONFIG}\"}}}" --type=merge
}
function verify_pull_secret() {
# Do some PULL_SECRET sanity checking
if [[ "${OPENSHIFT_RELEASE_IMAGE}" == *"registry.ci.openshift.org"* ]]; then
if [[ ${#CI_TOKEN} = 0 ]]; then
error "Please login to https://console-openshift-console.apps.ci.l2s4.p1.openshiftapps.com/ and copy the token from the login command from the menu in the top right corner to set CI_TOKEN."
exit 1
fi
fi
if ! grep -q cloud.openshift.com "${PERSONAL_PULL_SECRET}"; then
error "No cloud.openshift.com pull secret in ${PERSONAL_PULL_SECRET}"
error "Get a valid pull secret (json string) from https://cloud.redhat.com/openshift/install/pull-secret"
exit 1
fi
}
function write_pull_secret() {
if [ "${OPENSHIFT_CI}" == true ]; then
# We don't need to fetch a personal pull secret with the
# token, but we still need to merge what we're given with the
# credentials for the local reigstry.
jq -s '.[0] * .[1]' ${REGISTRY_CREDS} ${PERSONAL_PULL_SECRET} > ${PULL_SECRET_FILE}
return
fi
verify_pull_secret
# Get a current pull secret for registry.ci.openshift.org using the token
tmpkubeconfig=$(mktemp --tmpdir "kubeconfig--XXXXXXXXXX")
_tmpfiles="$_tmpfiles $tmpkubeconfig"
oc login https://${CI_SERVER}:6443 --kubeconfig=$tmpkubeconfig --token=${CI_TOKEN}
tmppullsecret=$(mktemp --tmpdir "pullsecret--XXXXXXXXXX")
echo '{}' >$tmppullsecret
_tmpfiles="$_tmpfiles $tmppullsecret"
oc registry login --kubeconfig=$tmpkubeconfig --to=$tmppullsecret
# Combine the personal pull secret with the ones for the CI
# registry and the local registry credentials.
jq -s '.[0] * .[1] * .[2]' ${PERSONAL_PULL_SECRET} ${REGISTRY_CREDS} ${tmppullsecret} > ${PULL_SECRET_FILE}
}
function switch_to_internal_dns() {
sudo mkdir -p /etc/NetworkManager/conf.d/
ansible localhost -b -m ini_file -a "path=/etc/NetworkManager/conf.d/dnsmasq.conf section=main option=dns value=dnsmasq"
if [ "$ADDN_DNS" ] ; then
echo "server=$ADDN_DNS" | sudo tee /etc/NetworkManager/dnsmasq.d/upstream.conf
fi
if systemctl is-active --quiet NetworkManager; then
sudo systemctl reload NetworkManager
else
sudo systemctl restart NetworkManager
fi
}
function bootstrap_ip {
if [[ "${IP_STACK}" == "v6" ]]; then
pref_ip=ipv6
else
pref_ip=ipv4
fi
# TODO(bnemec): Remove this logic once we have libvirt 7.0 or higher.
# Older versions fail on infinite leases.
if [ "$DHCP_LEASE_EXPIRY" -ne "0" ]; then
sudo virsh net-dhcp-leases ${BAREMETAL_NETWORK_NAME} \
| grep -v master \
| grep "${pref_ip}" \
| tail -n1 \
| awk '{print $5}' \
| sed -e 's/\(.*\)\/.*/\1/'
else
echo "Unable to retrieve bootstrap IP with infinite leases enabled." 1>&2
fi
}
function image_for() {
jq -r ".references.spec.tags[] | select(.name == \"$1\") | .from.name" ${OCP_DIR}/release_info.json
}
function wait_for_crd() {
echo "Waiting for CRD ($1) to be defined"
for i in {1..40}; do
oc get "crd/$1" && break || sleep 10
done
oc wait --for condition=established --timeout=60s "crd/$1" || exit 1
}
function generate_proxy_conf() {
if [[ "$PROVISIONING_NETWORK_PROFILE" != "Disabled" ]]; then
echo "acl all src ${PROVISIONING_NETWORK}"
fi
cat <<EOF
acl all src ${EXT_SUBNET}
http_access allow all
http_port ${INSTALLER_PROXY_PORT}
debug_options ALL,2
dns_v4_first on
coredump_dir /var/spool/squid
EOF
}
_tmpfiles=
function removetmp(){
[ -n "$_tmpfiles" ] && rm -rf $_tmpfiles || true
}
function auth_template_and_removetmp(){
generate_auth_template
removetmp
}
trap removetmp EXIT