https://medium.com/containerum/4-tools-to-monitor-your-kubernetes-cluster-efficiently-ceaf62818eea
- Heapster
- Uses influxDB, gafana and cAdvisor?
- Helm: https://github.com/kubernetes/charts/tree/master/stable/heapster
- Prometheus:
- ELK
- Stackdriver
#!/bin/bash | |
yum update -y | |
yum install -y httpd jq | |
service httpd start | |
chkconfig httpd on | |
echo "<html><head><title>Test page</title></head><body><h1>From $(curl http://169.254.169.254/latest/dynamic/instance-identity/document 2> /dev/null | jq '.region' | sed 's/"//g' ): Hello world</h1></body></html>" > /var/www/html/index.html |
AWSTemplateFormatVersion: 2010-09-09 | |
Resources: | |
Bucket: | |
Type: 'AWS::S3::Bucket' | |
Properties: | |
AccessControl: PublicRead | |
WebsiteConfiguration: | |
IndexDocument: index.html | |
ErrorDocument: error.html | |
Distro: |
https://medium.com/containerum/4-tools-to-monitor-your-kubernetes-cluster-efficiently-ceaf62818eea
--- | |
driver: | |
name: dokken | |
privileged: true | |
chef_version: latest | |
transport: | |
name: dokken | |
verifier: |
--- | |
kind: Pod | |
apiVersion: v1 | |
metadata: | |
name: hello-world | |
labels: | |
app: hello-world | |
spec: | |
containers: | |
- name: echo |