mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Documented manualSelector field. Documented that you do not need to provide a selector or unique labels with batch/v1 Job. Updated all Job examples to apiVersion: batch/v1 Updated all Job examples to use generated selectors.
		
			
				
	
	
		
			16 lines
		
	
	
		
			262 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			262 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: batch/v1
 | 
						|
kind: Job
 | 
						|
metadata:
 | 
						|
  name: pi
 | 
						|
spec:
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      name: pi
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: pi
 | 
						|
        image: perl
 | 
						|
        command: ["perl",  "-Mbignum=bpi", "-wle", "print bpi(2000)"]
 | 
						|
      restartPolicy: Never
 | 
						|
 |