mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			486 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			486 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "kind": "ReplicationController",
 | 
						|
  "apiVersion": "v1",
 | 
						|
  "metadata": {
 | 
						|
     "name": "nginx-controller",
 | 
						|
     "labels": {"name": "nginx"}
 | 
						|
  },
 | 
						|
  "spec": {
 | 
						|
    "replicas": 2,
 | 
						|
    "selector": {"name": "nginx"},
 | 
						|
    "template": {
 | 
						|
       "metadata": {
 | 
						|
          "labels": {"name": "nginx"}
 | 
						|
       },
 | 
						|
       "spec": {
 | 
						|
           "containers": [{
 | 
						|
             "name": "nginx",
 | 
						|
             "image": "nginx",
 | 
						|
             "ports": [{"containerPort": 80}]
 | 
						|
           }]
 | 
						|
       }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |