blob: 32c07f8b6f1597746b5ee8347649c1ba1cb99965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#!/bin/bash
##############################################################################
# Copyright (c) 2018 Huawei and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o errexit
set -o nounset
set -o pipefail
info () {
logger -s -t "fetch_k8_conf.info" "$*"
}
error () {
logger -s -t "fetch_k8_conf.error" "$*"
exit 1
}
: ${DEPLOY_TYPE:=''}
#Get options
while getopts ":d:i:a:h:s:o:v" optchar; do
case "${optchar}" in
d) dest_path=${OPTARG} ;;
i) installer_type=${OPTARG} ;;
v) DEPLOY_TYPE="virt" ;;
*) echo "Non-option argument: '-${OPTARG}'" >&2
usage
exit 2
;;
esac
done
# set vars from env if not provided by user as options
dest_path=${dest_path:-$HOME/admin.conf}
installer_type=${installer_type:-$INSTALLER_TYPE}
if [ -z $dest_path ] || [ -z $installer_type ]; then
usage
exit 2
fi
# Checking if destination path is valid
if [ -d $dest_path ]; then
error "Please provide the full destination path for the credentials file including the filename"
else
# Check if we can create the file (e.g. path is correct)
touch $dest_path || error "Cannot create the file specified. Check that the path is correct and run the script again."
fi
if [ "$installer_type" == "compass" ]; then
info "Fetching admin.conf file on Compass"
sudo docker cp compass-tasks:/opt/admin.conf $dest_path &> /dev/null
sudo chown $(whoami):$(whoami) $dest_path
info "Fetch admin.conf successfully"
elif [ "$installer_type" == "joid" ]; then
info "Do nothing, config file has been provided in $HOME/joid_config/config for joid"
else
error "Installer $installer_type is not supported by this script"
fi
|