
Add focal-based docker recipes for porthole images. Besides, amend helm charts and zuul variables related to distribution. Change-Id: I1a6ac464a115a842dd7010fa8a28fbe0822b9598
18 lines
497 B
Bash
Executable File
18 lines
497 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
: "${INSTALL_PATH:="../"}"
|
|
cd ${INSTALL_PATH}
|
|
|
|
# Clone dependencies
|
|
rm -rf openstack-helm-infra
|
|
rm -rf openstack-helm
|
|
git clone https://opendev.org/openstack/openstack-helm-infra.git
|
|
git clone https://opendev.org/openstack/openstack-helm.git
|
|
# Install Packages
|
|
bash -c "./openstack-helm-infra/tools/deployment/common/000-install-packages.sh"
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install --no-install-recommends -y \
|
|
lvm2 \
|
|
ca-certificates \
|
|
python3-certifi |