| podTemplate(label: slave_label, cloud: "${cloud_name}", readFile : 'deploy.yml' ) { } i used deploy.yml and added all pod , namespace , name , image and resources etc. but pod is not creating . its not even reading the yaml file. instead its going to docker hub internet. but my image is in my own artifactory . i checked kubernetes dashboard pod is not creating due jnlp was not created. error is like pod bddrunner(my pod mentioned in yaml file) is offline please help me to fix it. yaml file: apiVersion: v1kind: Podmetadata: name: bdd-runner namespace: edison-corespec: containers: - name: 'jnlp' image: 'myartifactory/jenkins/jnlp-slave:3.10-1-alpine' command: - cat tty: true - name: 'custom-slave' image: 'myartifactory/xxx' command: - cat tty: true |