pipeline { agent none stages{ stage("Hello"){ agent('nomad') { script { sh "echo 'Hello World!'" } } } } }