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