Filip Pytloun | 260a950 | 2017-03-16 12:47:22 +0100 | [diff] [blame] | 1 | # |
| 2 | # Jobs to update packages on given Salt master environment |
| 3 | # |
| 4 | parameters: |
Filip Pytloun | 260a950 | 2017-03-16 12:47:22 +0100 | [diff] [blame] | 5 | jenkins: |
| 6 | client: |
| 7 | job: |
| 8 | deploy-update-package: |
| 9 | type: workflow-scm |
| 10 | concurrent: true |
Alexander Evseev | 4589d71 | 2018-08-03 12:36:15 +0200 | [diff] [blame] | 11 | discard: |
| 12 | build: |
| 13 | keep_num: 10 |
| 14 | artifact: |
| 15 | keep_num: 10 |
Filip Pytloun | 260a950 | 2017-03-16 12:47:22 +0100 | [diff] [blame] | 16 | display_name: "Deploy - update system package(s)" |
| 17 | scm: |
| 18 | type: git |
| 19 | url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines" |
Jakub Josef | 7938b53 | 2017-12-12 18:02:03 +0100 | [diff] [blame] | 20 | branch: "${_param:jenkins_pipelines_branch}" |
Filip Pytloun | 260a950 | 2017-03-16 12:47:22 +0100 | [diff] [blame] | 21 | credentials: "gerrit" |
| 22 | 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]. |
| 34 | TARGET_PACKAGES: |
| 35 | type: string |
Sam Stoelinga | 20ef140 | 2017-08-01 18:45:18 -0700 | [diff] [blame] | 36 | 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]. |
Filip Pytloun | 260a950 | 2017-03-16 12:47:22 +0100 | [diff] [blame] | 37 | TARGET_SUBSET_TEST: |
| 38 | type: string |
| 39 | description: Number of nodes to list package updates, empty string means all targetted nodes. |
| 40 | TARGET_SUBSET_LIVE: |
| 41 | type: string |
| 42 | default: '1' |
Jiri Broulik | 132578e | 2017-06-02 12:26:25 +0200 | [diff] [blame] | 43 | description: Number of selected nodes to live apply selected package update. |
Filip Pytloun | 260a950 | 2017-03-16 12:47:22 +0100 | [diff] [blame] | 44 | TARGET_BATCH_LIVE: |
| 45 | type: string |
| 46 | description: Batch size for the complete live package update on all nodes, empty string means apply to all targetted nodes. |