pipeline {
  agent {
    node {
      label 'Fedora'
    }

  }
  stages {
    stage('Deploy on Node') {
      parallel {
        stage('Deploy on Node') {
          steps {
            node(label: 'Fedora-29') {
              sh 'ifconfig'
              echo 'HELLO WORLD'
            }

          }
        }
        stage('New Node') {
          steps {
            openstackMachine(cloud: 'Openstack_TR', template: 'Fedora-29')
            echo 'HELLO WORLD'
          }
        }
      }
    }
  }
}