285959c863
This PS adds a disc targeting framework for OSH Components for services like Ceph, Swift, and Cinder (LVM) to use when targeting phsical discs. It uses the bus ID of the attached device to simplfy management of large quanitites of physical hardware. Change-Id: I1cb227e43ed5394d4c68c6156047889574a0e869
51 lines
2.1 KiB
Bash
Executable File
51 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
set -ex
|
|
: ${WORK_DIR:="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"}
|
|
source ${WORK_DIR}/tools/gate/vars.sh
|
|
|
|
sudo chown $(whoami) ${SSH_PRIVATE_KEY}
|
|
sudo chmod 600 ${SSH_PRIVATE_KEY}
|
|
|
|
KUBEADM_TOKEN=$(sudo docker exec kubeadm-aio kubeadm token list | awk '/The default bootstrap token/ { print $1 ; exit }')
|
|
|
|
SUB_NODE_PROVISION_SCRIPT=$(mktemp --suffix=.sh)
|
|
for SUB_NODE in $SUB_NODE_IPS ; do
|
|
cat >> ${SUB_NODE_PROVISION_SCRIPT} <<EOS
|
|
ssh-keyscan "${SUB_NODE}" >> ~/.ssh/known_hosts
|
|
ssh -i ${SSH_PRIVATE_KEY} $(whoami)@${SUB_NODE} mkdir -p ${WORK_DIR%/*}
|
|
scp -i ${SSH_PRIVATE_KEY} -r ${WORK_DIR} $(whoami)@${SUB_NODE}:${WORK_DIR%/*}
|
|
ssh -i ${SSH_PRIVATE_KEY} $(whoami)@${SUB_NODE} "export WORK_DIR=${WORK_DIR}; \
|
|
export KUBEADM_TOKEN=${KUBEADM_TOKEN}; \
|
|
export PRIMARY_NODE_IP=${PRIMARY_NODE_IP}; \
|
|
export KUBEADM_IMAGE=${KUBEADM_IMAGE}; \
|
|
export PVC_BACKEND=${PVC_BACKEND}; \
|
|
export LOOPBACK_CREATE=${LOOPBACK_CREATE}; \
|
|
export LOOPBACK_DEVS=${LOOPBACK_DEVS}; \
|
|
export LOOPBACK_SIZE=${LOOPBACK_SIZE}; \
|
|
export LOOPBACK_DIR=${LOOPBACK_DIR}; \
|
|
bash ${WORK_DIR}/tools/gate/provision_gate_worker_node.sh"
|
|
EOS
|
|
done
|
|
bash ${SUB_NODE_PROVISION_SCRIPT}
|
|
rm -rf ${SUB_NODE_PROVISION_SCRIPT}
|
|
|
|
source ${WORK_DIR}/tools/gate/funcs/kube.sh
|
|
kube_wait_for_nodes ${SUB_NODE_COUNT} ${NODE_START_TIMEOUT}
|
|
kube_wait_for_pods kube-system ${POD_START_TIMEOUT_SYSTEM}
|
|
kube_wait_for_pods openstack ${POD_START_TIMEOUT_OPENSTACK}
|
|
kubectl get nodes --show-all
|
|
kubectl get --all-namespaces all --show-all
|
|
sudo docker exec kubeadm-aio openstack-helm-dev-prep
|