forked from karmab/kcli-ztp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathztp.sh
executable file
·81 lines (72 loc) · 3.71 KB
/
ztp.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
#for i in `oc get node -o wide | awk '{print $6}' | grep -v INTERN` ; do ssh core@$i "sudo sed -i 's/mirror-by-digest-only = true/mirror-by-digest-only = false/' /etc/containers/registries.conf && sudo systemctl restart kubelet crio" ; done
#sleep 120
RHCOS_AI="https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/pre-release/latest/rhcos-live.x86_64.iso"
RHCOS_ROOTFS="https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/pre-release/latest/rhcos-live-rootfs.x86_64.img"
curl -Lk $RHCOS_AI > /var/www/html/$(basename $RHCOS_AI)
curl -Lk $RHCOS_ROOTFS > /var/www/html/$(basename $RHCOS_ROOTFS)
echo export SPOKE={{ ztp_spoke_name }} >> /root/.bashrc
{% if acm %}
oc create -f /root/acm_install.yml
timeout=0
ready=false
while [ "$timeout" -lt "60" ] ; do
oc get crd | grep -q multiclusterhubs.operator.open-cluster-management.io && ready=true && break;
echo "Waiting for CRD multiclusterhubs.operator.open-cluster-management.io to be created"
sleep 5
timeout=$(($timeout + 5))
done
if [ "$ready" == "false" ] ; then
echo timeout waiting for CRD multiclusterhubs.operator.open-cluster-management.io
exit 1
fi
oc create -f /root/acm_cr.yml
sleep 240
oc patch hiveconfig hive --type merge -p '{"spec":{"targetNamespace":"hive","logLevel":"debug","featureGates":{"custom":{"enabled":["AlphaAgentInstallStrategy"]},"featureSet":"Custom"}}}'
sleep 120
{% else %}
oc create -f /root/ai_install.yml
{% endif %}
OCP_RELEASE=$(/root/bin/openshift-baremetal-install version | head -1 | cut -d' ' -f2)-x86_64
export MINOR=$(echo $OCP_RELEASE | cut -d. -f1,2)
BAREMETAL_IP=$(ip -o addr show eth0 | head -1 | awk '{print $4}' | cut -d'/' -f1)
{% if disconnected %}
REVERSE_NAME=$(dig -x $BAREMETAL_IP +short | sed 's/\.[^\.]*$//')
echo $BAREMETAL_IP | grep -q ':' && SERVER6=$(grep : /etc/resolv.conf | grep -v fe80 | cut -d" " -f2) && REVERSE_NAME=$(dig -6x $BAREMETAL_IP +short @$SERVER6 | sed 's/\.[^\.]*$//')
export LOCAL_REGISTRY=${REVERSE_NAME:-$(hostname -f)}:5000
export RELEASE=$LOCAL_REGISTRY/ocp4:$OCP_RELEASE
python3 /root/bin/gen_registries.py > /root/registries.txt
export REGISTRIES=$(cat /root/registries.txt)
{% elif version == 'ci' %}
export RELEASE={{ openshift_image }}
{% elif version == 'nightly' %}
export RELEASE=quay.io/openshift-release-dev/ocp-release-nightly:$OCP_RELEASE
{% elif version in ['latest', 'stable'] %}
export RELEASE=quay.io/openshift-release-dev/ocp-release:$OCP_RELEASE
{% endif %}
echo $BAREMETAL_IP | grep -q ':' && BAREMETAL_IP=[$BAREMETAL_IP]
export BAREMETAL_IP
export PULLSECRET=$(cat /root/openshift_pull.json | tr -d [:space:])
export SSH_PRIV_KEY=$(cat /root/.ssh/id_rsa |sed "s/^/ /")
export CA_CERT=$(cat /opt/registry/certs/domain.crt | sed "s/^/ /")
envsubst < /root/ztp_assisted-service.sample.yml > /root/ztp_assisted-service.yml
oc create -f /root/ztp_assisted-service.yml
{% if ztp_spoke_deploy %}
export SPOKE_NAME={{ ztp_spoke_name }}
export DOMAIN={{ domain }}
export MASTERS_NUMBER={{ ztp_spoke_masters_number }}
export WORKERS_NUMBER={{ ztp_spoke_workers_number }}
export SSH_PUB_KEY=$(cat /root/.ssh/id_rsa.pub)
envsubst < /root/ztp_spoke.sample.yml > /root/ztp_spoke.yml
oc create -f /root/ztp_spoke.yml
oc patch provisioning provisioning-configuration --type merge -p '{"spec":{"watchAllNamespaces": true}}'
sed -i "s@IP@$BAREMETAL_IP@" /root/ztp_bmc.yml
export LIBVIRT_DEFAULT_URI=qemu+ssh://{{ 'root' if config_user == 'apache' else config_user }}@{{ config_host if config_host != '127.0.0.1' else baremetal_net|local_ip(true) }}/system
{% for num in range(0, ztp_virtual_nodes_number) %}
UUID=$(virsh domuuid {{ cluster }}-ztp-node-{{ num }})
sed -i "s@UUID-{{ num }}@$UUID@" /root/ztp_bmc.yml
{% endfor %}
oc create -f /root/ztp_bmc.yml
{% if ztp_spoke_wait %}
sleep 240
{% endif %}
{% endif %}