Explorar el Código

Added Jenkinsfile

master
devops8170 hace 4 meses
padre
commit
30226c9fef
Se han modificado 1 ficheros con 17 adiciones y 2 borrados
  1. 17
    2
      Jenkinsfile

+ 17
- 2
Jenkinsfile Ver fichero

@@ -1,9 +1,24 @@
pipeline {
agent any
stages {
stage('Test') {
stage('Init') {
steps {
echo 'Hello DevOps World!'
sh '''export PATH=$PATH:/var/jenkins_home
terraform init'''
}
}

stage('Plam') {
steps {
sh '''export PATH=$PATH:/var/jenkins_home
terraform plan'''
}
}

stage('Apply') {
steps {
sh '''export PATH=$PATH:/var/jenkins_home
terraform apply -auto-approve'''
}
}


Cargando…
Cancelar
Guardar