Permit release tag tarballs
This commit is contained in:
parent
63807935cb
commit
812a8bcc6c
|
@ -32,8 +32,10 @@ Deploys a CD testnet
|
||||||
options:
|
options:
|
||||||
-s edge|beta|stable - Deploy the specified Snap release channel
|
-s edge|beta|stable - Deploy the specified Snap release channel
|
||||||
(default: $snapChannel)
|
(default: $snapChannel)
|
||||||
-t edge|beta|stable - Deploy the specified prebuilt tar from channel
|
-t edge|beta|stable|vX.Y.Z - Deploy the latest tarball release for the
|
||||||
(default: $releaseChannel)
|
specified release channel (edge|beta|stable) or release tag
|
||||||
|
(vX.Y.Z)
|
||||||
|
(default: $releaseChannel)
|
||||||
-n [number] - Number of validator nodes (default: $validatorNodeCount)
|
-n [number] - Number of validator nodes (default: $validatorNodeCount)
|
||||||
-c [number] - Number of client nodes (default: $clientNodeCount)
|
-c [number] - Number of client nodes (default: $clientNodeCount)
|
||||||
-P - Use public network IP addresses (default: $publicNetwork)
|
-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)
|
t)
|
||||||
case $OPTARG in
|
case $OPTARG in
|
||||||
edge|beta|stable)
|
edge|beta|stable|v*)
|
||||||
releaseChannel=$OPTARG
|
releaseChannel=$OPTARG
|
||||||
useReleaseChannel=true
|
useReleaseChannel=true
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue