blob: b4628fafea830d9f471844fde9f87b51e2ccd6c5 [file] [log] [blame]
Jiri Broulik132578e2017-06-02 12:26:25 +02001#
2# Jobs to update packages on given Salt master environment
3#
4parameters:
5 _param:
6 jenkins_salt_api_url: "http://${_param:salt_master_host}:6969"
7 jenkins:
8 client:
9 job:
Jiri Broulik0c2b8432017-06-16 12:04:32 +020010 deploy-upgrade-compute:
Jiri Broulik132578e2017-06-02 12:26:25 +020011 type: workflow-scm
12 concurrent: true
Alexander Evseev4589d712018-08-03 12:36:15 +020013 discard:
14 build:
15 keep_num: 10
16 artifact:
17 keep_num: 10
Jiri Broulik132578e2017-06-02 12:26:25 +020018 display_name: "Deploy - upgrade computes"
19 scm:
20 type: git
21 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
Jakub Josef7938b532017-12-12 18:02:03 +010022 branch: "${_param:jenkins_pipelines_branch}"
Jiri Broulik132578e2017-06-02 12:26:25 +020023 credentials: "gerrit"
Vasyl Saienkoc7800552018-08-28 12:27:06 +030024 script: openstack-data-upgrade.groovy
Jiri Broulik132578e2017-06-02 12:26:25 +020025 param:
26 SALT_MASTER_URL:
27 type: string
28 default: "${_param:jenkins_salt_api_url}"
29 SALT_MASTER_CREDENTIALS:
30 type: string
31 default: "salt"
Vasyl Saienkoc7800552018-08-28 12:27:06 +030032 OS_DIST_UPGRADE:
33 type: boolean
34 default: 'false'
35 description: "Upgrade system packages including kernel (apt-get dist-upgrade)"
36 OS_UPGRADE:
37 type: boolean
38 default: 'false'
39 description: "Upgrade all installed applications (apt-get upgrade)"
Vasyl Saienkofd1fbee2018-06-22 15:16:29 +030040 INTERACTIVE:
41 type: boolean
42 default: 'true'
43 description: "Ask interactive questions during pipeline run (bool)"
Vasyl Saienkoc7800552018-08-28 12:27:06 +030044 TARGET_SERVERS:
45 type: string
46 default: 'cmp*'
47 description: "Salt compound expression to get control servers to upgrade."