Skip to content

Instantly share code, notes, and snippets.

View relvacode's full-sized avatar

Jason Kingsbury relvacode

  • United Kingdom
View GitHub Profile
@relvacode
relvacode / create-multi-host-swarm-digitalocean.sh
Last active April 3, 2016 13:56 — forked from jmshal/create-multi-host-swarm-digitalocean.sh
Setup a Docker Swarm multi-host cluster on DigitalOcean
docker-machine create \
--driver=digitalocean \
--digitalocean-access-token=$DO_TOKEN \
--digitalocean-size=512mb \
--digitalocean-region=lon1 \
--digitalocean-private-networking=true \
swarm-consul
docker $(docker-machine config swarm-consul) run -d \
--net=host progrium/consul --server -bootstrap-expect 1
@relvacode
relvacode / setup-telegraf.md
Created July 6, 2017 23:23
Developing with telegraf

Setting up a fork of influxdata's telegraf

Checkout your clone of the repo into the correct go path

cd $GOPATH/src/github.com/relvacode
git clone https://github.com/influxdata/telegraf.git telegraf

Link the your version of telegraf into influxdata's