Added couple scripts and tested a version of kolla installation

This commit is contained in:
Eliezer Croitoru 2024-08-31 01:39:36 +03:00
parent d07f9033aa
commit 742fd9bf47
3 changed files with 39 additions and 10 deletions

4
disable-selinux.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
setenforce 0
sed -i -e "s@^SELINUX=.*@SELINUX=disabled@g" /etc/selinux/config

View File

@ -24,30 +24,34 @@ if [ -z "${EXTERNAL_INTERFACE}" ];then
fi fi
dnf group install -y "Development Tools" dnf group install -y "Development Tools"
dnf install -y python3.12-devel python3.12 cmake dbus-devel python3.12-pip pkgconfig glib2-devel dnf install -y git python3-devel libffi-devel gcc openssl-devel python3-libselinux
dnf install -y python-devel python cmake dbus-devel python-pip pkgconfig glib2-devel dbus-tools dbus-daemon
update-alternatives --set python3 /usr/bin/python3.12 #update-alternatives --set python3 /usr/bin/python
#apt install -y build-essential python3-dev python3 #apt install -y build-essential python3-dev python3
#apt install -y libdbus-1-dev cmake libspice-client-glib-2.0-dev #apt install -y libdbus-1-dev cmake libspice-client-glib-2.0-dev
#apt install -y python3-venv #apt install -y python3-venv
python3 -m venv /opt/deploy python -m venv /opt/deploy
source /opt/deploy/bin/activate source /opt/deploy/bin/activate
pip install -U pip python -m pip install -U pip
#pip install 'ansible>=4,<6' #pip install 'ansible>=4,<6'
pip install 'ansible-core>=2.16,<=2.17' pip install 'ansible-core>=2.16,<2.17.99'
#python -m pip install 'ansible-core>=2.16,<=2.17'
#pip install 'ansible>=7,<8' #pip install 'ansible>=7,<8'
pip install ansible python -m pip install ansible
#pip install ansible-core #pip install ansible-core
#pip install ansible #pip install ansible
pip install dbus-python python -m pip install dbus-python
pip install docker python -m pip install docker
pip install git+https://opendev.org/openstack/kolla-ansible@master python -m pip install selinux
python -m pip install git+https://opendev.org/openstack/kolla-ansible@master
mkdir -p /etc/kolla mkdir -p /etc/kolla
@ -80,8 +84,8 @@ sed -i -e 's@^\#kolla_base_distro: ".*@kolla_base_distro: "ubuntu"@g' \
/etc/kolla/globals.yml /etc/kolla/globals.yml
cd /opt && \ cd /opt && \
kolla-ansible -i all-in-one prechecks && \
kolla-ansible -i all-in-one bootstrap-servers && \ kolla-ansible -i all-in-one bootstrap-servers && \
kolla-ansible -i all-in-one prechecks && \
kolla-ansible -i all-in-one deploy && kolla-ansible -i all-in-one deploy &&
kolla-ansible -i all-in-one post-deploy kolla-ansible -i all-in-one post-deploy

21
install-docker.sh Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env bash
dnf install curl jq -y
dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
dnf remove -y runc
dnf -y install docker-ce docker-ce-cli containerd.io docker-compose-plugin
DOCKER_COMPOSE_VERSION=$( curl -s 'https://api.github.com/repos/docker/compose/releases' |jq -r .[0].tag_name)
if [ -f "docker-compose-linux-x86_64.xz" ];then
unxz docker-compose-linux-x86_64.xz
cp -v docker-compose-linux-x86_64 /usr/bin/docker-compose
else
curl -SL "https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-linux-x86_64" -o /usr/bin/docker-compose
fi
chmod +x /usr/bin/docker-compose