Permalink
| kind: Deployment | |
| apiVersion: extensions/v1beta1 | |
| metadata: | |
| name: monitoring-influxdb-grafana-v4 | |
| namespace: kube-system | |
| labels: | |
| k8s-app: influxGrafana | |
| version: v4 | |
| kubernetes.io/cluster-service: "true" | |
| addonmanager.kubernetes.io/mode: Reconcile | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| k8s-app: influxGrafana | |
| version: v4 | |
| template: | |
| metadata: | |
| labels: | |
| k8s-app: influxGrafana | |
| version: v4 | |
| annotations: | |
| scheduler.alpha.kubernetes.io/critical-pod: '' | |
| spec: | |
| tolerations: | |
| - key: node-role.kubernetes.io/master | |
| effect: NoSchedule | |
| - key: "CriticalAddonsOnly" | |
| operator: "Exists" | |
| containers: | |
| - name: influxdb | |
| image: gcr.io/google_containers/heapster-influxdb-amd64:v1.3.3 | |
| resources: | |
| limits: | |
| cpu: 100m | |
| memory: 500Mi | |
| requests: | |
| cpu: 100m | |
| memory: 500Mi | |
| ports: | |
| - name: http | |
| containerPort: 8083 | |
| - name: api | |
| containerPort: 8086 | |
| volumeMounts: | |
| - name: influxdb-persistent-storage | |
| mountPath: /data | |
| - name: grafana | |
| image: gcr.io/google_containers/heapster-grafana-amd64:v4.4.3 | |
| env: | |
| resources: | |
| # keep request = limit to keep this container in guaranteed class | |
| limits: | |
| cpu: 100m | |
| memory: 100Mi | |
| requests: | |
| cpu: 100m | |
| memory: 100Mi | |
| env: | |
| # This variable is required to setup templates in Grafana. | |
| - name: INFLUXDB_SERVICE_URL | |
| value: http://monitoring-influxdb:8086 | |
| # The following env variables are required to make Grafana accessible via | |
| # the kubernetes api-server proxy. On production clusters, we recommend | |
| # removing these env variables, setup auth for grafana, and expose the grafana | |
| # service using a LoadBalancer or a public IP. | |
| - name: GF_AUTH_BASIC_ENABLED | |
| value: "false" | |
| - name: GF_AUTH_ANONYMOUS_ENABLED | |
| value: "true" | |
| - name: GF_AUTH_ANONYMOUS_ORG_ROLE | |
| value: Admin | |
| - name: GF_SERVER_ROOT_URL | |
| value: /api/v1/proxy/namespaces/kube-system/services/monitoring-grafana/ | |
| ports: | |
| - name: ui | |
| containerPort: 3000 | |
| volumeMounts: | |
| - name: grafana-persistent-storage | |
| mountPath: /var | |
| volumes: | |
| - name: influxdb-persistent-storage | |
| emptyDir: {} | |
| - name: grafana-persistent-storage | |
| emptyDir: {} |