This repository was archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 562
/
Copy pathutils.sh
283 lines (252 loc) · 8.76 KB
/
utils.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Utilies for working with clusters and google cloud
# Checks that the gsutil CLI exists.
function check_gsutil_exists() {
command -v gsutil >/dev/null 2>&1 || {
echo >&2 "gsutil command is not defined"
echo >&2 "Install Google Cloud SDK first:"
echo >&2 " https://cloud.google.com/sdk/downloads"
exit 1
}
}
# Checks that the gcloud CLI exists.
function check_gcloud_exists() {
command -v gcloud >/dev/null 2>&1 || {
echo >&2 "gcloud command is not defined"
echo >&2 "Install Google Cloud SDK first"
echo >&2 " https://cloud.google.com/sdk/downloads"
exit 1
}
}
# Checks that the cbt (Cloud Bigtable) CLI exists.
function check_cbt_exists() {
command -v cbt >/dev/null 2>&1 || {
echo >&2 "cbt command is not defined"
echo >&2 "Install Google Cloud SDK first:"
echo >&2 " https://cloud.google.com/sdk/downloads"
echo >&2 "then:"
echo >&2 " gcloud components install cbt"
exit 1
}
}
# Creates a cloud bucket if it doesn't exist. Recall that cloud buckets are
# a global namespace.
#
# Globals:
# BUCKET_NAME: The name of the cloud bucket
# BUCKET_LOCATION: The location to create the cloud bucket
function create_gcs_bucket() {
check_gsutil_exists
if [[ -z "${BUCKET_NAME}" ]]; then
echo >&2 "BUCKET_NAME is not defined"
return 1
fi
if [[ -z "${BUCKET_LOCATION}" ]]; then
echo >&2 "BUCKET_LOCATION is not defined"
return 1
fi
gsutil ls -b gs://$BUCKET_NAME >/dev/null || {
echo >&2 "Bucket $BUCKET_NAME does not exist. Creating."
gsutil mb -l $BUCKET_LOCATION gs://$BUCKET_NAME
}
}
# Creates a Cloud Bigtable instance.
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance to create within PROJECT
# CBT_ZONE: The zone in which to create the instance
function create_cbt_instance() {
check_cbt_exists
if [[ -z "${PROJECT}" ]]; then
echo >&2 "PROJECT is not defined"
return 1
fi
if [[ -z "${CBT_INSTANCE}" ]]; then
echo >&2 "CBT_INSTANCE is not defined"
return 1
fi
if ! ( cbt -project ${PROJECT} createinstance ${CBT_INSTANCE} ${CBT_INSTANCE} \
${CBT_INSTANCE}-c ${CBT_ZONE} 3 SSD ); then
echo "Could not create instance ${CBT_INSTANCE} in project ${PROJECT}"
return 1
fi
}
# Creates a Cloud Bigtable family.
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance within PROJECT (create if absent)
# Params:
# $1: table name
# $2: column family name
function create_cbt_family() {
check_cbt_exists
table="$1"
family="$2"
if ( cbt -project ${PROJECT} -instance ${CBT_INSTANCE} ls ${table} |& grep -wq "^${family}" ); then
echo "CBT family ${family} already exists in table ${PROJECT}:${CBT_INSTANCE}:${table}"
return 0
fi
if ! ( cbt -project ${PROJECT} -instance ${CBT_INSTANCE} createfamily ${table} ${family} &&
cbt -project ${PROJECT} -instance ${CBT_INSTANCE} setgcpolicy ${table} ${family} maxversions=1 ); then
echo "Could not create family ${family} in table ${table}"
return 1
fi
}
# Creates a Cloud Bigtable table.
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance within PROJECT (create if absent)
# Params:
# $1: table name
function create_cbt_table() {
check_cbt_exists
table="$1"
if ! ( cbt -project ${PROJECT} listinstances |& grep -wq "^${CBT_INSTANCE}" ); then
echo "Creating cbt instance: ${CBT_INSTANCE}"
create_cbt_instance
fi
if ! ( cbt -project ${PROJECT} -instance ${CBT_INSTANCE} ls |& grep -wq "^${table}" ); then
if ! ( cbt -project ${PROJECT} -instance ${CBT_INSTANCE} createtable ${table} ); then
echo "Could not create table ${table} on instance ${CBT_INSTANCE} in project ${PROJECT}"
return 1
fi
fi
}
# Creates a Cloud Bigtable table with metadata column family
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance within PROJECT (create if absent)
# Params:
# $1: table name
function create_cbt_table_and_metadata() {
table="$1"
check_cbt_exists
if ! (create_cbt_table ${table} ); then
return 1
fi
if ! (create_cbt_family ${table} metadata ); then
return 1
fi
}
# Creates a Cloud Bigtable table for storing games.
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance within PROJECT (create if absent)
# CBT_TABLE: The name of the Cloud Bigtable table to create in CBT_INSTANCE
function create_cbt_game_table() {
check_cbt_exists
if ! (create_cbt_table_and_metadata ${CBT_TABLE} ); then
return 1
fi
if ! (create_cbt_family ${CBT_TABLE} tfexample ); then
return 1
fi
}
# Creates a Cloud Bigtable table for storing eval games.
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance within PROJECT (create if absent)
# CBT_EVAL_TABLE: The name of the Cloud Bigtable table to create in CBT_INSTANCE
function create_cbt_eval_game_table() {
check_cbt_exists
if ! (create_cbt_table_and_metadata ${CBT_EVAL_TABLE} ); then
return 1
fi
}
# Creates a Cloud Bigtable table for storing models.
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance within PROJECT (create if absent)
# CBT_MODEL_TABLE: The name of the Cloud Bigtable table to create in CBT_INSTANCE
function create_cbt_model_table() {
check_cbt_exists
if ! (create_cbt_table_and_metadata ${CBT_MODEL_TABLE} ); then
return 1
fi
}
# Creates a Cloud Bigtable table for storing and evaluating one-off models.
# Globals:
# PROJECT: The cloud project
# CBT_INSTANCE: The Cloud Bigtable instance within PROJECT (create if absent)
# CBT_MODEL_EVAL_TABLE: The name of the Cloud Bigtable table to create in CBT_INSTANCE
function create_cbt_model_eval_table() {
check_cbt_exists
if ! (create_cbt_table_and_metadata ${CBT_MODEL_EVAL_TABLE} ); then
return 1
fi
}
# Creates a cluster service account if it doesn't exist.
# Globals:
# PROJECT: The cloud project
# SERVICE_ACCOUNT: The service account email to create.
function create_service_account_key() {
check_gcloud_exists
if [[ -z "${PROJECT}" ]]; then
echo >&2 "PROJECT is not defined"
return 1
fi
if [[ -z "${SERVICE_ACCOUNT}" ]]; then
echo >&2 "SERVICE_ACCOUNT is not defined"
return 1
fi
if [[ -z "${SERVICE_ACCOUNT_EMAIL}" ]]; then
echo >&2 "SERVICE_ACCOUNT_EMAIL is not defined"
return 1
fi
if [[ -z "${SERVICE_ACCOUNT_KEY_LOCATION}" ]]; then
echo >&2 "SERVICE_ACCOUNT_KEY_LOCATION is not defined"
return 1
fi
if [[ -z "${BUCKET_NAME}" ]]; then
echo >&2 "BUCKET_NAME is not defined"
return 1
fi
if ! gcloud iam service-accounts list --project=$PROJECT | grep -q ${SERVICE_ACCOUNT}; then
echo >&2 "SERVICE_ACCOUNT doesn't exist: creating"
gcloud iam service-accounts create $SERVICE_ACCOUNT --project=$PROJECT
fi
# Make sure the service account can actually read the existing model entries
gsutil ls gs://$BUCKET_NAME/models >/dev/null 2>&1 && {
gsutil -m acl ch -r -u "${SERVICE_ACCOUNT_EMAIL}":R gs://${BUCKET_NAME}/models
}
# Grant it write permissions on our bucket. Should be safe to do multiple times
gsutil acl ch -u "${SERVICE_ACCOUNT_EMAIL}":W gs://${BUCKET_NAME}
if [[ ! -f "${SERVICE_ACCOUNT_KEY_LOCATION}" ]]; then
echo >&2 "Service account key file doesn't exist."
echo >&2 "Creating new key file at ${SERVICE_ACCOUNT_KEY_LOCATION}"
gcloud iam service-accounts keys create \
"${SERVICE_ACCOUNT_KEY_LOCATION}" --iam-account "${SERVICE_ACCOUNT_EMAIL}"
# Ensure the service account can write to GCS
gcloud projects add-iam-policy-binding "${PROJECT}" \
--member serviceAccount:"${SERVICE_ACCOUNT_EMAIL}" \
--role roles/storage.objectAdmin \
--project "${PROJECT}"
fi
}
function check_envsubst() {
# envsubst doesn't exist for OSX. needs to be brew-installed
# via gettext. Should probably warn the user about that.
command -v envsubst >/dev/null 2>&1 || {
echo >&2 "envsubst is required and not found. Aborting"
if [[ "$OSTYPE" == "darwin"* ]]; then
echo >&2 "------------------------------------------------"
echo >&2 "If you're on OSX, you can install with brew via:"
echo >&2 " brew install gettext"
echo >&2 " brew link --force gettext"
fi
exit 1;
}
}