Fix. Remove unused parameters from the new Jenkinsfile 25/15725/1
authorcaviedesj <juancamilo.caviedesvalencia.ext@telefonica.com>
Thu, 12 Feb 2026 09:44:53 +0000 (10:44 +0100)
committercaviedesj <juancamilo.caviedesvalencia.ext@telefonica.com>
Thu, 12 Feb 2026 09:44:53 +0000 (10:44 +0100)
Change-Id: I3acbbb97420727b7a95765cfdee33e5da7dd9011
Signed-off-by: caviedesj <juancamilo.caviedesvalencia.ext@telefonica.com>
Jenkinsfile.new

index 856945a..0131a86 100644 (file)
@@ -13,8 +13,6 @@
   limitations under the License.
 */
 
-def DEFAULT_MODULE_NAME = 'devops'
-
 pipeline {
   agent { label 'pool' }
   // options { disableConcurrentBuilds() }
@@ -33,13 +31,9 @@ pipeline {
 
     // Pipeline control flags
     booleanParam(name: 'DO_INSTALL', defaultValue: true, description: '')
-    booleanParam(name: 'DO_DOCKERPUSH', defaultValue: true, description: '')
     booleanParam(name: 'DO_ROBOT', defaultValue: true, description: '')
     booleanParam(name: 'SAVE_CONTAINER_ON_FAIL', defaultValue: false, description: '')
     booleanParam(name: 'SAVE_CONTAINER_ON_PASS', defaultValue: false, description: '')
-
-    // Docker image configuration
-    string(name: 'IMAGENAME', defaultValue: 'opensourcemano/devops', description: 'Image name for publish (reserved)')
   }
   environment {
     MDG = "${params.GERRIT_PROJECT?.contains('/') ? params.GERRIT_PROJECT.split('/')[1] : params.GERRIT_PROJECT}"
@@ -139,4 +133,3 @@ pipeline {
     }
   }
 }
-