Skip to main content

Posts

Showing posts from July, 2023

Jenkins Pipeline - Running inside Docker Image

 pipeline{ agent { label 'aws' }         parameters{             choice(                 description:'Choose ACCOUNT_ID',                 name:'ACCOUNT_ID',                 choices: ['122']             )             choice(                 description:'Choose EKS_CLUSTER',                 name:'EKS_CLUSTER',                 choices: [                     'nonprod-ap-east-1'                 ]             )             choice(                 description:'Choose Helm Chart',                 name:'HELM',                 choices: [                     'spark-pi-ns-rbac'                 ]             )             choice(                 description:'Choose Action',                 name:'ACTION',                 choices: [                     'deploy',                     'delete'                 ]             )             choice(                 description:'Choose Namespa