File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -1363,14 +1363,12 @@ ansible_aggregator_create_env: ## Create empty variables files for the Aggregato
13631363 @echo " Please complete the values and run make ansible_aggregator_deploy"
13641364
13651365ansible_aggregator_deploy : # # Deploy the Operator. Parameters: INVENTORY
1366- @if [ -z " $( INVENTORY) " ] || [ -z " $( ECDSA_KEYSTORE ) " ] || [ -z " $( BLS_KEYSTORE ) " ] ; then \
1367- echo " Error: INVENTORY, ECDSA_KEYSTORE, BLS_KEYSTORE must be set." ; \
1366+ @if [ -z " $( INVENTORY) " ]; then \
1367+ echo " Error: INVENTORY must be set." ; \
13681368 exit 1; \
13691369 fi
13701370 @ansible-playbook infra/ansible/playbooks/aggregator.yaml \
1371- -i $(INVENTORY ) \
1372- -e " ecdsa_keystore_path=$( ECDSA_KEYSTORE) " \
1373- -e " bls_keystore_path=$( BLS_KEYSTORE) "
1371+ -i $(INVENTORY )
13741372
13751373ansible_operator_create_env : # # Create empty variables files for the Operator deploy
13761374 @cp -n infra/ansible/playbooks/ini/config-operator.ini.example infra/ansible/playbooks/ini/config-operator.ini
Original file line number Diff line number Diff line change @@ -160,10 +160,8 @@ The `config-aggregator.ini` contains the variables to run the Operator in Aligne
160160Deploy the Aggregator:
161161
162162``` shell
163- make ansible_aggregator_deploy INVENTORY=< /path/to/inventory> ECDSA_KEYSTORE= < path/to/keystore > BLS_KEYSTORE= < /path/to/bls/keystore >
163+ make ansible_aggregator_deploy INVENTORY=< /path/to/inventory>
164164```
165- > [ !Note]
166- > ECDSA_KEYSTORE and BLS_KEYSTORE are the paths of the keystores in your machine.
167165
168166## Telemetry
169167To deploy the Telemetry Services you need to set some variables and then run the Telemetry playbook
You can’t perform that action at this time.
0 commit comments