Skip to content

Instantly share code, notes, and snippets.

@saiyam1814
Created April 28, 2020 14:49
Show Gist options
  • Save saiyam1814/5f2e5e6dcf0be93e7689f1ad38997fe8 to your computer and use it in GitHub Desktop.
Save saiyam1814/5f2e5e6dcf0be93e7689f1ad38997fe8 to your computer and use it in GitHub Desktop.
Influx Virtual Meetup
DEMO 1:
https://www.katacoda.com/courses/kubernetes/playground
git clone https://github.com/saiyam1814/influxdb-examples.git
cd influxdb-examples/kubernetes/
make
kubectl get svc --all-namespaces | grep influx
kubectl run nginx --image=nginx --replicas=10
DEMO 2:
https://www.katacoda.com/courses/kubernetes/playground
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
source /etc/lsb-release
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
sudo apt-get update && sudo apt-get install telegraf
sudo service telegraf start
docker run --name influxdb -p 9999:9999 quay.io/influxdb/influxdb:2.0.0-beta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment