mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# This file should be kept in sync with cluster/gce/coreos/kube-manifests/addons/dashboard/dashboard-controller.yaml
 | 
						|
apiVersion: extensions/v1beta1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: kubernetes-dashboard
 | 
						|
  namespace: kube-system
 | 
						|
  labels:
 | 
						|
    k8s-app: kubernetes-dashboard
 | 
						|
    kubernetes.io/cluster-service: "true"
 | 
						|
spec:
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      k8s-app: kubernetes-dashboard
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        k8s-app: kubernetes-dashboard
 | 
						|
      annotations:
 | 
						|
        scheduler.alpha.kubernetes.io/critical-pod: ''
 | 
						|
        scheduler.alpha.kubernetes.io/tolerations: '[{"key":"CriticalAddonsOnly", "operator":"Exists"}]'
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: kubernetes-dashboard
 | 
						|
        image: gcr.io/google_containers/kubernetes-dashboard-amd64:v1.5.0
 | 
						|
        resources:
 | 
						|
          # keep request = limit to keep this container in guaranteed class
 | 
						|
          limits:
 | 
						|
            cpu: 100m
 | 
						|
            memory: 50Mi
 | 
						|
          requests:
 | 
						|
            cpu: 100m
 | 
						|
            memory: 50Mi
 | 
						|
        ports:
 | 
						|
        - containerPort: 9090
 | 
						|
        livenessProbe:
 | 
						|
          httpGet:
 | 
						|
            path: /
 | 
						|
            port: 9090
 | 
						|
          initialDelaySeconds: 30
 | 
						|
          timeoutSeconds: 30
 |