Created
April 28, 2020 14:49
-
-
Save saiyam1814/5f2e5e6dcf0be93e7689f1ad38997fe8 to your computer and use it in GitHub Desktop.
Influx Virtual Meetup
This file contains hidden or 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
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