blob: 706863dc599332c08b255f1f4933529c1c2aa1ef [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"
24 script: openstack-compute-upgrade.groovy
25 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"
32 TARGET_SERVERS:
33 type: string
Jiri Broulikb3394512017-07-13 12:27:48 +020034 default: "cmp*"
Jiri Broulik132578e2017-06-02 12:26:25 +020035 description: Salt compound target to match nodes to be updated [*, G@osfamily:debian].
Jiri Broulik132578e2017-06-02 12:26:25 +020036 TARGET_SUBSET_TEST:
37 type: string
38 description: Number of nodes to list package updates, empty string means all targetted nodes.
39 TARGET_SUBSET_LIVE:
40 type: string
41 default: '1'
Jiri Broulikb3394512017-07-13 12:27:48 +020042 description: Number of selected nodes to live apply upgrade.
Vasyl Saienkofd1fbee2018-06-22 15:16:29 +030043 INTERACTIVE:
44 type: boolean
45 default: 'true'
46 description: "Ask interactive questions during pipeline run (bool)"