summaryrefslogtreecommitdiffstats
path: root/jjb/yardstick/yardstick-get-k8s-conf.sh
blob: 82744a4ee098ad2a44e998566d7cc2c43f7f7f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e

dest_path="$HOME/admin.conf"

if [[ "${DEPLOY_SCENARIO:0:2}" == "k8" ]];then
    if [[ ${INSTALLER_TYPE} == 'joid' ]];then
        juju scp kubernetes-master/0:config "${dest_path}"
    elif [[ ${INSTALLER_TYPE} == 'compass' ]];then
        echo "Copy admin.conf to ${dest_path}"
        docker cp compass-tasks:/opt/admin.conf "${dest_path}"
    elif [[ ${INSTALLER_TYPE} == 'fuel' ]];then
        echo "Getting kubernetes config ..."
        docker cp -L fuel:/opt/kubernetes.config "${dest_path}"
    fi
fi