Browse Source

use k3s

master
Julien Cabillot 2 weeks ago
parent
commit
ab43c4e90b
1 changed files with 7 additions and 1 deletions
  1. 8
      Jenkinsfile

8
Jenkinsfile

@ -5,7 +5,13 @@ pipeline {
dockerImage = 'jcabillot/mydl:arm64'
}
agent any
//agent { label 'arm64' }
agent {
kubernetes {
defaultContainer 'docker' // All `steps` instructions will be executed by this container
yamlFile 'Jenkinsfile-pod-template.yml'
}
}
triggers {
cron('@midnight')

Loading…
Cancel
Save