c12s-kubespray/roles/kubernetes-apps/heapster/templates/influxdb-deployment.yaml
Vincent Schwarzer fad083eae2 Added role for Heapster Deploymnet (with InfluxDB and Grafana)
Added a new role which deploys Heapster, InfluxDB and Grafana
when a new Kargo Kubernetes Cluster is created.
2017-04-12 13:26:01 +02:00

22 lines
493 B
YAML

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: monitoring-influxdb
namespace: kube-system
spec:
replicas: 1
template:
metadata:
labels:
task: monitoring
k8s-app: influxdb
spec:
containers:
- name: influxdb
image: gcr.io/google_containers/heapster-influxdb-amd64:v1.1.1
volumeMounts:
- mountPath: /data
name: influxdb-storage
volumes:
- name: influxdb-storage
emptyDir: {}