| Still had some issues and had to revert to 1.44 version manually, I am using the Kubernetes-plugin 1.12.4 As part of groovy you can use the following script (define a jenkins-agent as a pod with dockers) String label="worker-${UUID.randomUUID().toString()}" podTemplate(label: label, containers: [ containerTemplate(name: 'jnlp', image: 'jenkinsci/jnlp-slave:3.16-1', args: '${computer.jnlpmac} ${computer.name}', workingDir: '/home/jenkins', resourceRequestCpu: '200m', resourceLimitCpu: '800m', resourceRequestMemory: '256Mi', resourceLimitMemory: '2048Mi'), containerTemplate(name: 'helm', image: 'lachlanevenson/k8s-helm:v2.7.2', command: 'cat', ttyEnabled: true) ]) { As a result when I am running I got the following excepiton [Pipeline] End of Pipeline groovy.lang.MissingPropertyException: No such property: containerTemplate for class: groovy.lang.Binding |