
1. Changing nodeselector to use same label and to sync (openstack-control-plane = enabled) which comes default with osh deployment. 2. Fix Ceph Deploy script. 3. Updated Apparmor script to remove node-selector. 4. Remove repos cloned not needed for Porthole Project. Change-Id: Ibb4c98a956347c8487beff90277fe9a88bed9739 Signed-off-by: diwakar thyagaraj <diwakar.chitoor.thyagaraj@att.com>
13 lines
302 B
Bash
Executable File
13 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
CURRENT_DIR="$(pwd)"
|
|
: "${INSTALL_PATH:="../"}"
|
|
: "${OSH_INFRA_COMMIT:="8ba46703ee9fab0115e4b7f62ea43e0798c36872"}"
|
|
cd ${INSTALL_PATH}
|
|
|
|
# Clone dependencies
|
|
git clone https://opendev.org/openstack/openstack-helm-infra.git
|
|
|
|
cd openstack-helm-infra
|
|
git checkout "${OSH_INFRA_COMMIT}" |