c12s-kubespray/roles/kubernetes-apps/heapster/templates/influxdb-deploy.yml.j2
2017-04-12 13:27:27 +02:00

22 lines
505 B
Django/Jinja

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: monitoring-influxdb
namespace: "{{ heapster_namespace }}"
spec:
replicas: 1
template:
metadata:
labels:
task: monitoring
k8s-app: influxdb
spec:
containers:
- name: influxdb
image: "{{ influxdb_image_repo }}:{{ influxdb_image_tag }}"
volumeMounts:
- mountPath: /data
name: influxdb-storage
volumes:
- name: influxdb-storage
emptyDir: {}