* Remotenet command for AWS and ansible fixes for all remotenet commands * Ansible for AWS, terraform for AWS * Moved remotenet commands to networks/ folder, created ansible playbooks and example scripts to set up remote testnets in the cloud * Added application deployment infrastructure scripts * Obsoleted DigitalOcean scripts, some cleanup in AWS scripts * Changelog -> pending, disclaimer
14 lines
170 B
Bash
Executable File
14 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
# list - list the IPs of a set of nodes
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: ./list.sh <clustername>"
|
|
exit 1
|
|
fi
|
|
set -eux
|
|
|
|
export CLUSTER_NAME=$1
|
|
|
|
make list
|
|
|