mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			360 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			360 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: extensions/v1beta1 
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: nginx-deployment
 | 
						|
  labels:
 | 
						|
    name: nginx-deployment
 | 
						|
spec:
 | 
						|
  replicas: 3
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      name: nginx
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        name: nginx
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: nginx
 | 
						|
        image: nginx
 | 
						|
        ports:
 | 
						|
        - containerPort: 80
 |