diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2019-03-28 18:36:41 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2019-03-28 18:38:05 +0400 |
commit | 2b65471f6b3f7684f4f9f66dd338d13a93e7b852 (patch) | |
tree | 752a35d370fcd7baaf6517ff9933c7b558fd6e21 /utils | |
parent | bb29dd01208fec13dc606626d4bf07245ef61783 (diff) |
[fuel] Follow symlink to get k8s config
Change-Id: Icd7aef4c5a328e5e92e9740de3737a82acc71f8b
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/fetch_k8_conf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fetch_k8_conf.sh b/utils/fetch_k8_conf.sh index b3be0d6e1..e5e237d03 100755 --- a/utils/fetch_k8_conf.sh +++ b/utils/fetch_k8_conf.sh @@ -61,7 +61,7 @@ elif [ "$installer_type" == "joid" ]; then info "Do nothing, config file has been provided in $HOME/joid_config/config for joid" elif [ "$installer_type" == "fuel" ]; then info "Getting kubernetes config ..." - docker cp fuel:/opt/kubernetes.config $dest_path + docker cp -L fuel:/opt/kubernetes.config $dest_path else error "Installer $installer_type is not supported by this script" fi |