cosmos-sdk/networks/add-datadog.sh
Greg Szabo 75eeaadaae Merge PR #1234: Cloud network setup scripts
* 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
2018-07-24 06:27:39 +02:00

15 lines
237 B
Bash
Executable File

#!/bin/sh
# add-datadog - add datadog agent to a set of nodes
if [ $# -ne 2 ]; then
echo "Usage: ./add-datadog.sh <testnetname> <clustername>"
exit 1
fi
set -eux
export TESTNET_NAME=$1
export CLUSTER_NAME=$2
make install-datadog