-
Notifications
You must be signed in to change notification settings - Fork 613
/
Copy pathpopulate-accounts-db.yaml
341 lines (299 loc) · 11.5 KB
/
populate-accounts-db.yaml
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
# Copyright 2020 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.
# [START gke_populate_jobs_populate_accounts_db_configmap_accounts_schema_config]
# kubectl create configmap accounts-schema-config --from-file=src/accounts-db/initdb/0-accounts-schema.sql --dry-run -o yaml (copy and add below)
# kubectl create configmap accounts-schema-config --from-file=src/accounts-db/initdb/1-load-testdata.sh --dry-run -o yaml (copy and add below)
apiVersion: v1
kind: ConfigMap
metadata:
name: accounts-schema-config
data:
wait-to-complete-sidecar.sh: |
#!/bin/bash
COUNTER=0
TARGET=$1
PROCESS=$2
echo "Looking for $TARGET"
sleep 10s # Give 10s to allow processes to start
# 20 minutes (60 x 10s increments)
while [ $COUNTER -lt 120 ]; do
let COUNTER=$COUNTER+1
IS_RUNNING=$(ps -A | grep "scripts/$TARGET" | grep -v grep)
if [ "$IS_RUNNING" != "" ]; then
echo "Attempt # ${COUNTER}: Process not completed, trying again in 10 seconds -- ${IS_RUNNING}"
sleep 10s
else
echo "'${TARGET}' Process Finished, Stopping '${PROCESS}'"
killall ${PROCESS}
exit 0
fi
done
echo "Could not determine if the import finished, killing the proxy"
killall ${PROCESS}
exit 0
initialize-database.sh: |
#!/bin/bash
COUNTER=0
SLEEP_TIME=60 # 1 minute
DB_READY=0 # false
INIT_SQL_SCRIPT="/scripts/0-accounts-schema.sql"
TEST_SQL_SCRIPT="/scripts/1-load-testdata.sh"
HOST=${1:-'127.0.0.1'}
PORT=${2:-'5432'}
DB_NAME=${3:-'default'}
# Initial wait for sql-proxy to catch up
sleep 20
while [ $COUNTER -lt 10 ]; do
let COUNTER=$COUNTER+1
pg_isready --host=${HOST} --port=${PORT} --dbname=${DB_NAME}
if [ $? -gt 0 ]; then
echo "Attempt # ${COUNTER}: Database is not ready, trying again in 1 minute"
sleep $SLEEP_TIME
else
echo "Database is ready to connect"
let DB_READY=1
break
fi
done
if [ "${DB_READY}" -eq 1 ]; then
echo "Running initialization script"
psql --host=${HOST} --port=${PORT} --dbname=${DB_NAME} -f ${INIT_SQL_SCRIPT}
if [ $? -gt 0 ]; then
echo "Problems running the initialization script"
else
echo "Run Test Data"
. ${TEST_SQL_SCRIPT}
fi
fi
0-accounts-schema.sql: |
/*
* Copyright 2020, 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.
*/
CREATE TABLE IF NOT EXISTS users (
accountid CHAR(10) PRIMARY KEY,
username VARCHAR(64) UNIQUE NOT NULL,
passhash BYTEA NOT NULL,
firstname VARCHAR(64) NOT NULL,
lastname VARCHAR(64) NOT NULL,
birthday DATE NOT NULL,
timezone VARCHAR(8) NOT NULL,
address VARCHAR(64) NOT NULL,
state CHAR(2) NOT NULL,
zip VARCHAR(5) NOT NULL,
ssn CHAR(11) NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_users_accountid ON users (accountid);
CREATE INDEX IF NOT EXISTS idx_users_username ON users (username);
CREATE TABLE IF NOT EXISTS contacts (
username VARCHAR(64) NOT NULL,
label VARCHAR(128) NOT NULL,
account_num CHAR(10) NOT NULL,
routing_num CHAR(9) NOT NULL,
is_external BOOLEAN NOT NULL,
FOREIGN KEY (username) REFERENCES users(username)
);
CREATE INDEX IF NOT EXISTS idx_contacts_username ON contacts (username);
1-load-testdata.sh: |
#!/bin/bash
# Copyright 2020 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.
# Immediately exit if any error occurs during script execution.
set -o errexit
# Skip adding data if not enabled
if [ "$USE_DEMO_DATA" != "True" ]; then
echo "no demo users added"
exit 0
fi
# Expected environment variables
readonly ENV_VARS=(
"POSTGRES_DB"
"POSTGRES_USER"
"LOCAL_ROUTING_NUM"
)
add_user() {
# Usage: add_user "ACCOUNTID" "USERNAME" "FIRST_NAME"
echo "adding user: $2"
psql -X -v ON_ERROR_STOP=1 -v account="$1" -v username="$2" -v firstname="$3" -v passhash="$DEFAULT_PASSHASH" --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
INSERT INTO users VALUES (:'account', :'username', :'passhash', :'firstname', 'User', '2000-01-01', '-5', 'Bowling Green, New York City', 'NY', '10004', '111-22-3333') ON CONFLICT DO NOTHING;
EOSQL
}
add_external_account() {
# Usage: add_external_account "OWNER_USERNAME" "LABEL" "ACCOUNT" "ROUTING"
echo "user $1 adding contact: $2"
psql -X -v ON_ERROR_STOP=1 -v username="$1" -v label="$2" -v account="$3" -v routing="$4" --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
INSERT INTO contacts VALUES (:'username', :'label', :'account', :'routing', 'true') ON CONFLICT DO NOTHING;
EOSQL
}
add_contact() {
# Usage: add_contact "OWNER_USERNAME" "CONTACT_LABEL" "CONTACT_ACCOUNT"
echo "user $1 adding external account: $2"
psql -X -v ON_ERROR_STOP=1 -v username="$1" -v label="$2" -v account="$3" -v routing="$LOCAL_ROUTING_NUM" --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
INSERT INTO contacts VALUES (:'username', :'label', :'account', :'routing', 'false') ON CONFLICT DO NOTHING;
EOSQL
}
# Load test data into the database
create_accounts() {
# Add demo users.
add_user "1011226111" "testuser" "Test"
add_user "1033623433" "alice" "Alice"
add_user "1055757655" "bob" "Bob"
add_user "1077441377" "eve" "Eve"
# Make everyone contacts of each other
add_contact "testuser" "Alice" "1033623433"
add_contact "testuser" "Bob" "1055757655"
add_contact "testuser" "Eve" "1077441377"
add_contact "alice" "Testuser" "1011226111"
add_contact "alice" "Bob" "1055757655"
add_contact "alice" "Eve" "1077441377"
add_contact "bob" "Testuser" "1011226111"
add_contact "bob" "Alice" "1033623433"
add_contact "bob" "Eve" "1077441377"
add_contact "eve" "Testuser" "1011226111"
add_contact "eve" "Alice" "1033623433"
add_contact "eve" "Bob" "1055757655"
# Add external accounts
add_external_account "testuser" "External Bank" "9099791699" "808889588"
add_external_account "alice" "External Bank" "9099791699" "808889588"
add_external_account "bob" "External Bank" "9099791699" "808889588"
add_external_account "eve" "External Bank" "9099791699" "808889588"
}
main() {
# Check environment variables are set
for env_var in ${ENV_VARS[@]}; do
if [[ -z "${!env_var}" ]]; then
echo "Error: environment variable '$env_var' not set. Aborting."
exit 1
fi
done
# A password hash + salt for the demo password 'bankofanthos'
# Via Python3: bcrypt.hashpw('bankofanthos'.encode('utf-8'), bcrypt.gensalt()).hex()
DEFAULT_PASSHASH='\x2432622431322477595638423166664b50667a41524a6b69614d6c5075784847466961636b6d333349595952786d59645a6834435946696f49434943'
create_accounts
}
main
# [END gke_populate_jobs_populate_accounts_db_configmap_accounts_schema_config]
---
# [START gke_populate_jobs_populate_accounts_db_job_populate_accounts_db]
apiVersion: batch/v1
kind: Job
metadata:
name: populate-accounts-db
spec:
template:
spec:
shareProcessNamespace: true # Important to stop all processes
serviceAccountName: boa-ksa
containers:
- name: sidecar-controller
image: bash@sha256:e0acf0b8fb59c01b6a2b66de360c86bcad5c3cd114db325155970e6bab9663a0
command: ['bash', '-c', '. /scripts/wait-to-complete-sidecar.sh "initialize-database.sh" "cloud_sql_proxy"']
volumeMounts:
- name: scripts
mountPath: "/scripts"
readOnly: true
resources:
limits:
cpu: "200m"
memory: "100Mi"
- name: populate-accounts-db
image: postgres:15-alpine@sha256:ab88acc4edfbd7c728ad0fa741139b6cc830bd85138a40848672b784aab57306
command: ['bash', '-c','. /scripts/initialize-database.sh 127.0.0.1 5432 accounts-db']
volumeMounts:
- name: scripts
mountPath: "/scripts"
readOnly: true
env:
- name: PGUSER
valueFrom:
secretKeyRef:
name: cloud-sql-admin
key: username
- name: PGPASSWORD
valueFrom:
secretKeyRef:
name: cloud-sql-admin
key: password
# /start: Required for testing data
- name: LOCAL_ROUTING_NUM
valueFrom:
configMapKeyRef:
name: environment-config
key: LOCAL_ROUTING_NUM
- name: USE_DEMO_DATA
valueFrom:
configMapKeyRef:
name: demo-data-config
key: USE_DEMO_DATA
- name: POSTGRES_DB
value: "accounts-db"
- name: PGHOSTADDR
value: "127.0.0.1"
- name: POSTGRES_USER
valueFrom:
secretKeyRef:
name: cloud-sql-admin
key: username
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: cloud-sql-admin
key: password
# /end: Required for testing data
# CloudSQL Proxy
- name: cloudsql-proxy
resources:
limits:
cpu: "200m"
memory: "100Mi"
image: gcr.io/cloudsql-docker/gce-proxy:1.33.5@sha256:04576bc7c5d848b0a4585e6328b3fcaf82bf6ea73bcd64387a29ee9856a57136
env:
- name: CONNECTION_NAME
valueFrom:
secretKeyRef:
name: cloud-sql-admin
key: connectionName
command: ["/cloud_sql_proxy",
"-instances=$(CONNECTION_NAME)=tcp:5432"]
securityContext:
runAsNonRoot: true
volumes:
- name: scripts
configMap:
name: accounts-schema-config
restartPolicy: Never
backoffLimit: 4
# [END gke_populate_jobs_populate_accounts_db_job_populate_accounts_db]