[openstack] add initial scripts

This commit is contained in:
Nico Schottelius 2024-01-06 19:29:52 +01:00
commit ece4c00dd0
5 changed files with 37 additions and 0 deletions

15
openstack/init-openstack-env.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/sh
mkdir -p ~/osh
cd ~/osh
if [ ! -d openstack-helm ]; then
git clone https://opendev.org/openstack/openstack-helm.git
else
cd openstack-helm && git pull
fi
if [ ! -d openstack-helm-infa ]; then
git clone https://opendev.org/openstack/openstack-helm-infra.git
else
cd openstack-helm-infra && git pull
fi