24 lines
		
	
	
		
			542 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			542 B
		
	
	
	
		
			YAML
		
	
	
	
| apiVersion: batch/v1
 | |
| kind: Job
 | |
| metadata:
 | |
|   name: kaniko-test-{{.Name}}
 | |
| spec:
 | |
|   template:
 | |
|     spec:
 | |
|       hostNetwork: true
 | |
|       containers:
 | |
|       - name: kaniko
 | |
|         image: localhost:5000/executor:latest
 | |
|         workingDir: /workspace
 | |
|         args: [ "--context=dir:///workspace",
 | |
|                 "--destination={{.KanikoImage}}"]
 | |
|         volumeMounts:
 | |
|         - name: context
 | |
|           mountPath: /workspace
 | |
|       restartPolicy: Never
 | |
|       volumes:
 | |
|       - name: context
 | |
|         hostPath:
 | |
|           path: {{.Context}}
 | |
|   backoffLimit: 1
 |