From 754b4e7e1793c8a5b97597969ab56b61206c9493 Mon Sep 17 00:00:00 2001 From: Andrea V <1577639+karimodm@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:14:11 +0100 Subject: [PATCH] More fixes --- deploy/ansible/hosts/feature.yml | 10 +++++----- deploy/ansible/run.sh | 2 -- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/deploy/ansible/hosts/feature.yml b/deploy/ansible/hosts/feature.yml index 0dd0ade47..66e7b10ee 100644 --- a/deploy/ansible/hosts/feature.yml +++ b/deploy/ansible/hosts/feature.yml @@ -9,17 +9,17 @@ cores: node-01.feature.shimmer.iota.cafe: validatorAccountAddress: "{{ NODE_01_VALIDATOR_ACCOUNTADDRESS }}" validatorPrvKey: "{{ NODE_01_VALIDATOR_PRIVKEY }}" - p2pIdentityPrvKey: "{{ NODE_01_P2PIDENTITYPRIVATEKEY }}" + p2pIdentityPrvKey: "{{ NODE_01_P2PIDENTITY_PRIVKEY }}" node-02.feature.shimmer.iota.cafe: validatorAccountAddress: "{{ NODE_02_VALIDATOR_ACCOUNTADDRESS }}" validatorPrvKey: "{{ NODE_02_VALIDATOR_PRIVKEY }}" - p2pIdentityPrvKey: "{{ NODE_02_P2PIDENTITYPRIVATEKEY }}" + p2pIdentityPrvKey: "{{ NODE_02_P2PIDENTITY_PRIVKEY }}" node-03.feature.shimmer.iota.cafe: validatorAccountAddress: "{{ NODE_03_VALIDATOR_ACCOUNTADDRESS }}" validatorPrvKey: "{{ NODE_03_VALIDATOR_PRIVKEY }}" - p2pIdentityPrvKey: "{{ NODE_03_P2PIDENTITYPRIVATEKEY }}" + p2pIdentityPrvKey: "{{ NODE_03_P2PIDENTITY_PRIVKEY }}" node-04.feature.shimmer.iota.cafe: - p2pIdentityPrvKey: "{{ NODE_04_P2PIDENTITYPRIVATEKEY }}" + p2pIdentityPrvKey: "{{ NODE_04_P2PIDENTITY_PRIVKEY }}" node-05.feature.shimmer.iota.cafe: - p2pIdentityPrvKey: "{{ NODE_05_P2PIDENTITYPRIVATEKEY }}" + p2pIdentityPrvKey: "{{ NODE_05_P2PIDENTITY_PRIVKEY }}" vars: diff --git a/deploy/ansible/run.sh b/deploy/ansible/run.sh index f2bbf73b0..62ee4840f 100755 --- a/deploy/ansible/run.sh +++ b/deploy/ansible/run.sh @@ -4,8 +4,6 @@ export ANSIBLE_STRATEGY=free export ANSIBLE_PIPELINING=true export ANSIBLE_PERSISTENT_CONTROL_PATH_DIR="/tmp/" -set -x - ARGS=("$@") ansible-playbook -u root -i deploy/ansible/hosts/"${1:-feature.yml}" \ --forks 20 --ssh-common-args "-o ControlMaster=auto -o ControlPersist=5m" \