blob: befd7ab04a8f578f7f4c0ea6db9ee40d4bd655f6 [file] [log] [blame]
Filip Pytloun260a9502017-03-16 12:47:22 +01001#
2# Jobs to update packages on given Salt master environment
3#
4parameters:
Filip Pytloun260a9502017-03-16 12:47:22 +01005 jenkins:
6 client:
7 job:
8 deploy-update-package:
9 type: workflow-scm
10 concurrent: true
Alexander Evseev4589d712018-08-03 12:36:15 +020011 discard:
12 build:
13 keep_num: 10
14 artifact:
15 keep_num: 10
Filip Pytloun260a9502017-03-16 12:47:22 +010016 display_name: "Deploy - update system package(s)"
17 scm:
18 type: git
19 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
Jakub Josef7938b532017-12-12 18:02:03 +010020 branch: "${_param:jenkins_pipelines_branch}"
Sergey Galkin4cf87b92019-06-19 17:53:07 +040021 credentials: ${_param:jenkins_gerrit_credentials}
Filip Pytloun260a9502017-03-16 12:47:22 +010022 script: update-package.groovy
23 param:
24 SALT_MASTER_URL:
25 type: string
26 default: "${_param:jenkins_salt_api_url}"
27 SALT_MASTER_CREDENTIALS:
28 type: string
29 default: "salt"
30 TARGET_SERVERS:
31 type: string
32 default: "*"
33 description: Salt compound target to match nodes to be updated [*, G@osfamily:debian].
Denis Egorenko062dd7b2019-08-27 13:54:40 +040034 BATCH_SIZE:
35 type: string
36 default: ''
37 description: 'Use batching for states, which targeted for large amount of nodes. Can be Integer or Percentage, e.g 20 or 20%'
Filip Pytloun260a9502017-03-16 12:47:22 +010038 TARGET_PACKAGES:
39 type: string
Sam Stoelinga20ef1402017-08-01 18:45:18 -070040 description: Space delimited list of packages to be updated, empty string means updating all packages to the latest version e.g. [package1=version package2=version] or [package1 package2].