Last active
August 29, 2015 14:21
-
-
Save ahgittin/8e9c5b4f638fdbcca585 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brooklyn.catalog: | |
version: 0.1 | |
description: Sample VM with a demo script | |
name: Alex-AWS-VM-1 | |
location: | |
jclouds:aws-ec2: | |
region: eu-west-1 | |
osFamily: ubuntu | |
minRam: 8gb | |
services: | |
- type: brooklyn.entity.basic.VanillaSoftwareProcess | |
name: my-simple-vm | |
launch.command: | | |
wget https://gist.githubusercontent.com/ahgittin/8e9c5b4f638fdbcca585/raw/0d79a02cf90b7f55414088b521258dcb5af5865a/netcat-loop.sh | |
chmod +x netcat-loop.sh | |
nohup ./netcat-loop.sh & | |
sleep 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while ( true ) ; do | |
echo hello | nc -l 4321 & | |
echo $! > ${PID_FILE:-netcat.pid} | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cf update-service-broker brooklyn user `cat /tmp/passwd` http://brooklyn-service-broker.apps.tai-dev3.cfdev.canopy-cloud.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment