New repo name

This commit is contained in:
phahulin 2017-11-21 23:52:28 +03:00
parent 7d50d3cd80
commit 3c324643e5
5 changed files with 19 additions and 19 deletions

View File

@ -1,8 +1,8 @@
## TestNet (actual notaries)
### Mining node
[![Deploy to Azure](http://azuredeploy.net/deploybutton.png)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Foraclesorg%2Ftest-templates%2FAlphaTestTestNet%2FTestTestNet%2Fmining-node%2Ftemplate.json)
[![Deploy to Azure](http://azuredeploy.net/deploybutton.png)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Foraclesorg%2Fdeployment-azure%2FAlphaTestTestNet%2FTestTestNet%2Fmining-node%2Ftemplate.json)
### Bootnode
NOTE: at this moment creating a new bootnode is equivalent to creating a separate network
[![Deploy to Azure](http://azuredeploy.net/deploybutton.png)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Foraclesorg%2Ftest-templates%2FAlphaTestTestNet%2FTestTestNet%2Fbootnode%2Ftemplate.json)
[![Deploy to Azure](http://azuredeploy.net/deploybutton.png)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Foraclesorg%2Fdeployment-azure%2FAlphaTestTestNet%2FTestTestNet%2Fbootnode%2Ftemplate.json)

View File

@ -112,7 +112,7 @@ declare -p
# script parameters
#INSTALL_DOCKER_VERSION="17.03.1~ce-0~ubuntu-xenial"
#INSTALL_DOCKER_IMAGE="parity/parity:v1.6.8"
INSTALL_CONFIG_REPO="https://raw.githubusercontent.com/oraclesorg/test-templates/AlphaTestTestNet/TestTestNet/bootnode"
INSTALL_CONFIG_REPO="https://raw.githubusercontent.com/oraclesorg/deployment-azure/AlphaTestTestNet/TestTestNet/bootnode"
GENESIS_REPO_LOC="https://raw.githubusercontent.com/oraclesorg/oracles-scripts/alphadevtestnet/spec.json"
GENESIS_JSON="spec.json"
NODE_TOML="node.toml"
@ -156,7 +156,7 @@ add_user_to_docker_group() {
newgrp docker
newgrp -
#newgrp "${orig_group_id}"
echo "===== Groups: "
groups
echo "<===== add_user_to_docker_group"
@ -602,7 +602,7 @@ use_deb() {
curl -LO 'http://parity-downloads-mirror.parity.io/v1.7.0/x86_64-unknown-linux-gnu/parity_1.7.0_amd64.deb'
sudo dpkg -i parity_1.7.0_amd64.deb
sudo apt-get install dtach
cat > parity.start << EOF
dtach -n parity.dtach bash -c "parity -l engine=trace,discovery=trace,network=trace --config ${NODE_TOML} --ui-no-validation >> logs/parity.out 2>> logs/parity.err"
EOF
@ -640,12 +640,12 @@ use_bin() {
curl -L -o parity-bin-v1.7.0.zip 'https://gitlab.parity.io/parity/parity/-/jobs/61863/artifacts/download'
unzip parity-bin-v1.7.0.zip -d parity-bin-v1.7.0
ln -s parity-bin-v1.7.0/target/release/parity parity-v1.7.0
cat > parity.start << EOF
dtach -n parity.dtach bash -c "./parity-v1.7.0 -l discovery=trace,network=trace --config ${NODE_TOML} --ui-no-validation >> logs/parity.out 2>> logs/parity.err"
EOF
chmod +x parity.start
./parity.start
./parity.start
echo "<===== use_bin"
}
@ -662,7 +662,7 @@ compile_source() {
cargo build --release
cd ..
ln -s parity-src-v1.7.0/target/release/parity parity-v1.7.0
cat > parity.start << EOF
./parity-v1.7.0 -l discovery=trace,network=trace --config "${NODE_TOML}" --ui-no-validation >> logs/parity.out 2>> logs/parity.err
EOF
@ -690,7 +690,7 @@ EOF"
configure_logrotate() {
echo "=====> configure_logrotate"
sudo bash -c "cat > /etc/logrotate.d/oracles.conf << EOF
/home/${ADMIN_USERNAME}/logs/*.log {
rotate 10

View File

@ -222,7 +222,7 @@
"autoUpgradeMinorVersion": true,
"settings": {
"fileUris": [
"https://raw.githubusercontent.com/oraclesorg/test-templates/AlphaTestTestNet/TestTestNet/bootnode/install.sh"
"https://raw.githubusercontent.com/oraclesorg/deployment-azure/AlphaTestTestNet/TestTestNet/bootnode/install.sh"
]
},
"protectedSettings": {

View File

@ -76,7 +76,7 @@ printenv
# script parameters
#INSTALL_DOCKER_VERSION="17.03.1~ce-0~ubuntu-xenial"
#INSTALL_DOCKER_IMAGE="parity/parity:v1.6.8"
INSTALL_CONFIG_REPO="https://raw.githubusercontent.com/oraclesorg/test-templates/AlphaTestTestNet/TestTestNet/mining-node"
INSTALL_CONFIG_REPO="https://raw.githubusercontent.com/oraclesorg/deployment-azure/AlphaTestTestNet/TestTestNet/mining-node"
GENESIS_REPO_LOC="https://raw.githubusercontent.com/oraclesorg/oracles-scripts/alphadevtestnet/spec.json"
GENESIS_JSON="spec.json"
NODE_TOML="node.toml"
@ -338,7 +338,7 @@ use_deb() {
curl -LO 'http://parity-downloads-mirror.parity.io/v1.7.0/x86_64-unknown-linux-gnu/parity_1.7.0_amd64.deb'
sudo dpkg -i parity_1.7.0_amd64.deb
sudo apt-get install dtach
cat > parity.start << EOF
dtach -n parity.dtach bash -c "parity -l engine=trace,discovery=trace,network=trace --config ${NODE_TOML} >> logs/parity.out 2>> logs/parity.err"
EOF
@ -378,12 +378,12 @@ use_bin() {
curl -L -o parity-bin-v1.7.0.zip 'https://gitlab.parity.io/parity/parity/-/jobs/61863/artifacts/download'
unzip parity-bin-v1.7.0.zip -d parity-bin-v1.7.0
ln -s parity-bin-v1.7.0/target/release/parity parity-v1.7.0
cat > parity.start << EOF
dtach -n parity.dtach bash -c "./parity-v1.7.0 -l discovery=trace,network=trace --config ${NODE_TOML} >> logs/parity.out 2>> logs/parity.err"
EOF
chmod +x parity.start
./parity.start
./parity.start
echo "<===== use_bin"
}
@ -400,7 +400,7 @@ compile_source() {
cargo build --release
cd ..
ln -s parity-src-v1.7.0/target/release/parity parity-v1.7.0
cat > parity.start << EOF
./parity-v1.7.0 -l discovery=trace,network=trace --config "${NODE_TOML}" >> logs/parity.out 2>> logs/parity.err
EOF
@ -448,7 +448,7 @@ EOF"
configure_logrotate() {
echo "=====> configure_logrotate"
sudo bash -c "cat > /etc/logrotate.d/oracles.conf << EOF
/home/${ADMIN_USERNAME}/logs/*.log {
rotate 10
@ -481,7 +481,7 @@ main () {
prepare_homedir
#add_user_to_docker_group
install_ntpd
install_haveged
allocate_swap
@ -494,7 +494,7 @@ main () {
#use_deb
use_deb_via_systemd
#use_bin
#setup_autoupdate
#install_netstats

View File

@ -236,7 +236,7 @@
"autoUpgradeMinorVersion": true,
"settings": {
"fileUris": [
"https://raw.githubusercontent.com/oraclesorg/test-templates/AlphaTestTestNet/TestTestNet/mining-node/install.sh"
"https://raw.githubusercontent.com/oraclesorg/deployment-azure/AlphaTestTestNet/TestTestNet/mining-node/install.sh"
]
},
"protectedSettings": {