forked from metal3-io/metal3-dev-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01_install_requirements.sh
executable file
·106 lines (91 loc) · 2.81 KB
/
01_install_requirements.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
#!/usr/bin/env bash
set -ex
source utils/logging.sh
sudo yum install -y libselinux-utils
if selinuxenabled ; then
sudo setenforce permissive
sudo sed -i "s/=enforcing/=permissive/g" /etc/selinux/config
fi
# Update to latest packages first
sudo yum -y update
# Install EPEL required by some packages
if [ ! -f /etc/yum.repos.d/epel.repo ] ; then
if grep -q "Red Hat Enterprise Linux" /etc/redhat-release ; then
sudo yum -y install http://mirror.centos.org/centos/7/extras/x86_64/Packages/epel-release-7-11.noarch.rpm
else
sudo yum -y install epel-release --enablerepo=extras
fi
fi
# Work around a conflict with a newer zeromq from epel
if ! grep -q zeromq /etc/yum.repos.d/epel.repo; then
sudo sed -i '/enabled=1/a exclude=zeromq*' /etc/yum.repos.d/epel.repo
fi
# Install required packages
# python-{requests,setuptools} required for tripleo-repos install
sudo yum -y install \
crudini \
curl \
dnsmasq \
figlet \
golang \
NetworkManager \
nmap \
patch \
psmisc \
python-pip \
python-requests \
python-setuptools \
vim-enhanced \
wget
# We're reusing some tripleo pieces for this setup so clone them here
cd
if [ ! -d tripleo-repos ]; then
git clone https://git.openstack.org/openstack/tripleo-repos
fi
pushd tripleo-repos
sudo python setup.py install
popd
# Needed to get a recent python-virtualbmc package
sudo tripleo-repos current-tripleo
# There are some packages which are newer in the tripleo repos
sudo yum -y update
# Setup yarn and nodejs repositories
sudo curl -sL https://dl.yarnpkg.com/rpm/yarn.repo -o /etc/yum.repos.d/yarn.repo
curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash -
# make sure additional requirments are installed
sudo yum -y install \
ansible \
bind-utils \
jq \
libguestfs-tools \
libvirt \
libvirt-devel \
libvirt-daemon-kvm \
nodejs \
podman \
python-ironicclient \
python-ironic-inspector-client \
python-lxml \
python-netaddr \
python-openstackclient \
python-virtualbmc \
qemu-kvm \
virt-install \
unzip \
yarn
# Install python packages not included as rpms
sudo pip install \
lolcat \
yq
if ! which minikube 2>/dev/null ; then
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& chmod +x minikube && sudo mv minikube /usr/local/bin/.
fi
if ! which docker-machine-driver-kvm2 >/dev/null ; then
curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-kvm2 \
&& sudo install docker-machine-driver-kvm2 /usr/local/bin/
fi
if ! which kubectl 2>/dev/null ; then
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
&& chmod +x kubectl && sudo mv kubectl /usr/local/bin/.
fi