25 lines
		
	
	
		
			559 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			559 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: batch/v1
 | |
| kind: CronJob
 | |
| metadata:
 | |
|   name: renovate
 | |
| spec:
 | |
|   schedule: '0 */2 * * *'
 | |
|   concurrencyPolicy: Forbid
 | |
|   jobTemplate:
 | |
|     spec:
 | |
|       template:
 | |
|         spec:
 | |
|           containers:
 | |
|             - name: renovate
 | |
|               image: renovate/renovate
 | |
|               args:
 | |
|                 - user/repo
 | |
|               # Environment Variables
 | |
|               env:
 | |
|                 - name: LOG_LEVEL
 | |
|                   value: debug
 | |
|               envFrom:
 | |
|                 - secretRef:
 | |
|                     name: renovate-env
 | |
|           restartPolicy: Never
 |