diff --git a/Jenkinsfile b/Jenkinsfile index 13ac391e..21f3cdc6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,15 +2,15 @@ pipeline{ - //agent any - agent { label 'Demo' } + agent any + //agent { label 'Demo' } parameters{ choice(name: 'action', choices: 'create\ndelete', description: 'Choose create/Destroy') string(name: 'ImageName', description: "name of the docker build", defaultValue: 'javapp') string(name: 'ImageTag', description: "tag of the docker build", defaultValue: 'v1') - string(name: 'DockerHubUser', description: "name of the Application", defaultValue: 'praveensingam1994') + string(name: 'DockerHubUser', description: "name of the Application", defaultValue: 'attri') } stages{ @@ -20,7 +20,7 @@ pipeline{ steps{ gitCheckout( branch: "main", - url: "https://github.com/praveen1994dec/Java_app_3.0.git" + url: "https://github.com/attri16/Java_app_3.0.git" ) } }