-
Notifications
You must be signed in to change notification settings - Fork 0
/
import_binary_releases.sh
executable file
·69 lines (54 loc) · 1.52 KB
/
import_binary_releases.sh
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
66
67
68
69
#!/usr/bin/env bash
set -Eeuo pipefail
trap cleanup SIGINT SIGTERM ERR EXIT
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
# global stuff
# shellcheck source="$script_dir/.envrc"
source "$script_dir/.envrc"
# shellcheck source="$script_dir/lib.sh"
source "$script_dir/lib.sh"
cleanup() {
trap - SIGINT SIGTERM ERR EXIT
# script cleanup here
}
usage() {
cat << EOF # remove the space between << and EOF, this is due to web plugin issue
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] -d deployment_name
Import binary releases to speed up deployment
Available options:
-h, --help Print this help and exit
-v, --verbose Print script debug info
-d, --deployment The deployment to export binary releases from
EOF
exit
}
parse_params() {
# default values of variables set from params
flag=0
deployment_used=''
while :; do
case "${1-}" in
-h | --help) usage ;;
-v | --verbose) set -x ;;
--no-color) NO_COLOR=1 ;;
-f | --flag) flag=1 ;; # example flag
-d | --deployment) # example named parameter
deployment_used="${2-}"
shift
;;
-?*) die "Unknown option: $1" ;;
*) break ;;
esac
shift
done
# check required params and arguments
[[ -z "${deployment_used-}" ]] && die "Missing required parameter: deployment"
return 0
}
parse_params "$@"
setup_colors
# script logic here
releases_path="${script_dir}/binary-releases/${deployment_used}"
for r in "$releases_path"/*.tgz; do
bosh -e "$BOSH_ENVIRONMENT" -n upload-release "$r"
done