forked from algorand/go-algorand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_and_deploy_recipe.sh
executable file
·113 lines (98 loc) · 3.62 KB
/
create_and_deploy_recipe.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
#!/bin/bash
# create_and_deploy_recipe.sh - Generates deployed network configuration (based on a recipe) and private build and pushes to S3
#
# Syntax: create_and_deploy_recipe.sh -c <channel/network> [-n network] --recipe <recipe file> -r <rootdir> [--nodeploy] [--force] [-m genesisVersionModifier] [ -b <bucket> ]"
#
# Outputs: <errors or warnings>
#
# ExitCode: 0 = Success - config generated and uploaded, and new version built and uploaded
#
# Usage: Generates deployed network configuration (nodecfg package) and cloudspec.config (for TF/algonet),
# sends it to S3, then uses the deploy_private_version script to build the private version with the
# correct genesis file and uploads it to S3 (if --nodeply specified only the config is build and uploaded).
#
# Examples: create_and_deploy_recipe.sh -c TestCatchup --recipe test/testdata/deployednettemplates/recipes/devnet-like.config -r ~/networks/gen
#
# Notes: If you're running on a Mac, this will attempt to use docker to build for linux.
set -e
if [[ "${AWS_ACCESS_KEY_ID}" = "" || "${AWS_SECRET_ACCESS_KEY}" = "" ]]; then
echo "You need to export your AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY for this to work"
exit 1
fi
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
export GOPATH=$(go env GOPATH)
# Anchor our repo root reference location
REPO_ROOT=${SCRIPTPATH}/..
export SRCPATH=${REPO_ROOT}
CHANNEL=""
NETWORK=""
RECIPEFILE=""
ROOTDIR=""
NO_DEPLOY=""
FORCE_OPTION=""
SCHEMA_MODIFIER=""
BUCKET=""
while [ "$1" != "" ]; do
case "$1" in
-c)
shift
CHANNEL=$1
;;
-n)
shift
NETWORK=$1
;;
-m)
shift
SCHEMA_MODIFIER=$1
;;
--recipe)
shift
RECIPEFILE=$1
;;
-r)
shift
ROOTDIR=$1
;;
--force)
FORCE_OPTION="--force"
;;
--nodeploy)
NO_DEPLOY="true"
;;
-b)
shift
BUCKET="$1"
;;
*)
echo "Unknown option" "$1"
exit 1
;;
esac
shift
done
if [[ -z "${CHANNEL}" || -z "${RECIPEFILE}" || -z "${ROOTDIR}" ]]; then
echo "Syntax: create_and_deploy_recipe.sh -c <channel/network> [-n network] --recipe <recipe file> -r <rootdir> [--nodeploy] [--force]"
echo "e.g. create_and_deploy_recipe.sh -c TestCatchup --recipe test/testdata/deployednettemplates/recipes/devnet-like.config -r ~/networks/<channel>/gen"
exit 1
fi
# Don't use environment variable for S3_RELEASE_BUCKET - default to algorand-internal for private deployments
if [[ ! -z "${S3_RELEASE_BUCKET}" && -z "${BUCKET}" ]]; then
echo "Ignoring S3_RELEASE_BUCKET setting - defaulting to algorand-internal. Use -b to override."
fi
S3_RELEASE_BUCKET="${BUCKET:-algorand-internal}"
# if Network isn't specified, use the same string as Channel
if [[ "${NETWORK}" = "" ]]; then
NETWORK=${CHANNEL}
fi
# Build so we've got up-to-date binaries
(cd ${SRCPATH} && make)
# Generate the nodecfg package directory
${GOPATH}/bin/netgoal build -r "${ROOTDIR}" -n "${NETWORK}" --recipe "${RECIPEFILE}" "${FORCE_OPTION}" -m "${SCHEMA_MODIFIER}"
# Package and upload the config package
export S3_RELEASE_BUCKET="${S3_RELEASE_BUCKET}"
${SRCPATH}/scripts/upload_config.sh "${ROOTDIR}" "${CHANNEL}"
if [ "${NO_DEPLOY}" = "" ]; then
# Now generate a private build using our custom genesis.json and deploy it to S3 also
${SRCPATH}/scripts/deploy_private_version.sh -c "${CHANNEL}" -f "${ROOTDIR}/genesisdata/genesis.json" -n "${NETWORK}" -b "${S3_RELEASE_BUCKET}"
fi