mirror of
https://github.com/fluencelabs/examples
synced 2024-12-04 19:20:17 +00:00
fix for deployment: added the sk param support (#355)
* fix for deployment: added the sk param support * returning peer id we used previously * small fixes Co-authored-by: igor <dev@igor.sh>
This commit is contained in:
parent
b4b2426f34
commit
4b56530c05
@ -1,8 +1,28 @@
|
||||
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
||||
|
||||
function is_installed {
|
||||
if ! command -v "$1" >/dev/null 2>&1; then
|
||||
echo "${1} not found, please install it"
|
||||
echo "exiting..."
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
is_installed jq
|
||||
is_installed aqua
|
||||
|
||||
echo "generating keys..."
|
||||
|
||||
SK=$(aqua key create | jq -r ".secretKey")
|
||||
|
||||
echo "deploying the service..."
|
||||
|
||||
aqua remote deploy_service \
|
||||
--addr /dns4/kras-04.fluence.dev/tcp/19001/wss/p2p/12D3KooWFEwNWcHqi9rtsmDhsYcDbRUCDXH84RC4FW6UfsFWaoHi \
|
||||
--config-path configs/ts_oracle_deploy_cfg.json \
|
||||
--sk ${SK} \
|
||||
--service ts-oracle \
|
||||
>>\
|
||||
deployed_service.data
|
||||
deployed_service.data
|
||||
|
||||
tail -4 deployed_service.data
|
Loading…
Reference in New Issue
Block a user