mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-04 07:49:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			419 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			419 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: extensions/v1beta1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: web
 | 
						|
  initializers:
 | 
						|
    pending:
 | 
						|
    - name: podimage.initializer.com
 | 
						|
  labels:
 | 
						|
    run: web
 | 
						|
spec:
 | 
						|
  replicas: 5
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      run: web
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        run: web
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - image: nginx:1.10
 | 
						|
        name: web
 | 
						|
        ports:
 | 
						|
        - containerPort: 80
 | 
						|
          protocol: TCP
 |