Permit release tag tarballs

This commit is contained in:
Michael Vines 2018-11-07 10:33:20 -08:00
parent 63807935cb
commit 812a8bcc6c
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
1 changed files with 5 additions and 3 deletions

View File

@ -32,8 +32,10 @@ Deploys a CD testnet
options:
-s edge|beta|stable - Deploy the specified Snap release channel
(default: $snapChannel)
-t edge|beta|stable - Deploy the specified prebuilt tar from channel
(default: $releaseChannel)
-t edge|beta|stable|vX.Y.Z - Deploy the latest tarball release for the
specified release channel (edge|beta|stable) or release tag
(vX.Y.Z)
(default: $releaseChannel)
-n [number] - Number of validator nodes (default: $validatorNodeCount)
-c [number] - Number of client nodes (default: $clientNodeCount)
-P - Use public network IP addresses (default: $publicNetwork)
@ -82,7 +84,7 @@ while getopts "h?p:Pn:c:s:t:gG:a:d" opt; do
;;
t)
case $OPTARG in
edge|beta|stable)
edge|beta|stable|v*)
releaseChannel=$OPTARG
useReleaseChannel=true
;;