mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
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: ''
 | 
						|
        seccomp.security.alpha.kubernetes.io/pod: 'docker/default'
 | 
						|
    spec:
 | 
						|
      priorityClassName: system-cluster-critical
 | 
						|
      tolerations:
 | 
						|
      - key: node-role.kubernetes.io/master
 | 
						|
        effect: NoSchedule
 | 
						|
      - key: "CriticalAddonsOnly"
 | 
						|
        operator: "Exists"
 | 
						|
      containers:
 | 
						|
        - name: influxdb
 | 
						|
          image: k8s.gcr.io/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: k8s.gcr.io/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/namespaces/kube-system/services/monitoring-grafana/proxy/
 | 
						|
          ports:
 | 
						|
          - name: ui
 | 
						|
            containerPort: 3000
 | 
						|
          volumeMounts:
 | 
						|
          - name: grafana-persistent-storage
 | 
						|
            mountPath: /var
 | 
						|
      volumes:
 | 
						|
      - name: influxdb-persistent-storage
 | 
						|
        emptyDir: {}
 | 
						|
      - name: grafana-persistent-storage
 | 
						|
        emptyDir: {}
 |