Skip to content

Commit 24b6c94

Browse files
committed
fix: aggregator ansible
1 parent ee65e0d commit 24b6c94

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

Makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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

13651365
ansible_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

13751373
ansible_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

infra/ansible/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,8 @@ The `config-aggregator.ini` contains the variables to run the Operator in Aligne
160160
Deploy 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
169167
To deploy the Telemetry Services you need to set some variables and then run the Telemetry playbook

0 commit comments

Comments
 (0)