-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathabaco-update.sh
More file actions
executable file
·120 lines (105 loc) · 2.9 KB
/
abaco-update.sh
File metadata and controls
executable file
·120 lines (105 loc) · 2.9 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#!/bin/bash
THIS=$(basename $0)
THIS=${THIS%.sh}
THIS=${THIS//[-]/ }
HELP="
Usage: ${THIS} [OPTION]... [ACTORID] [IMAGE]
Updates an actor. State status and actor name
cannot be changed. Actor ID and Docker image
required.
Options:
-h show help message
-z api access token
-e set environment variables (key=value)
-E read environment variables from json file
-p add privileged status
-f force update
-u use actor uid
-v verbose output
-V very verbose output
"
# function usage() { echo "$0 usage:" && grep " .)\ #" $0; exit 0; }
function usage() { echo "$HELP"; exit 0; }
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$DIR/abaco-common.sh"
tok=
force=false
use_uid=false
privileged=false
while getopts ":he:E:pfuvz:V" o; do
case "${o}" in
z) # custom token
tok=${OPTARG}
;;
e) # default environment (command line key=value)
env_args[${#env_args[@]}]=${OPTARG}
;;
E) # default environment (json file)
env_json=${OPTARG}
;;
p) # privileged
privileged=true
;;
f) # force
force=true
;;
u) # use uid
use_uid=true
;;
v) # verbose
verbose="true"
;;
V) # verbose
very_verbose="true"
;;
h | *) # print help text
usage
;;
esac
done
shift $((OPTIND-1))
actorid="$1"
image="$2"
if [ ! -z "$tok" ]; then TOKEN=$tok; fi
if [[ "$very_verbose" == "true" ]]
then
verbose="true"
fi
# fail if no actorid or image
if [ -z "$actorid" ] || [ -z "$image" ]
then
echo "Please specify an actor ID and a Docker image"
usage
fi
# default env
# check env vars json file (exists, have contents, be json)
file_default_env=
if [ ! -z "$env_json" ]
then
if [ ! -f "$env_json" ] || [ ! -s "$env_json" ] || ! $(is_json $(cat $env_json))
then
die "$env_json is not valid. Please ensure it exists and contains valid JSON."
fi
file_default_env=$(cat $env_json)
fi
# build command line env vars into json
args_default_env=$(build_json_from_array "${env_args[@]}")
#combine both
default_env=$(echo "$file_default_env $args_default_env" | jq -s add)
# curl command
data="{\"image\":\"${image}\", \"privileged\":${privileged}, \"force\":${force}, \"useContainerUid\":${use_uid}, \"defaultEnvironment\":${default_env}}"
curlCommand="curl -X PUT -sk -H \"Authorization: Bearer $TOKEN\" -H \"Content-Type: application/json\" --data '$data' '$BASE_URL/actors/v2/${actorid}'"
function filter() {
# eval $@ | jq -r '.result | [.name, .id] | @tsv' | column -t
eval $@ | jq -r '.result | [.name, .id] | "\(.[0]) \(.[1])"' | column -t
}
if [[ "$very_verbose" == "true" ]]
then
echo "Calling $curlCommand"
fi
if [[ "$verbose" == "true" ]]
then
eval $curlCommand
else
filter $curlCommand
fi