10 lines
178 B
Bash
10 lines
178 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Generating inventory..."
|
|
./tools/generate-inventory.py cluster.test.yml
|
|
|
|
echo "Deploying full cluster..."
|
|
cd ansible
|
|
ansible-playbook playbook-full.yml
|