blob: 6bbbffa5e2a89315e71360217619a5403d215e2f [file] [log] [blame]
Tomáš Kukrálf416c492017-03-21 18:05:30 +01001parameters:
2 jenkins:
3 client:
4 job:
5 deploy_openstack:
6 type: workflow-scm
7 name: deploy-openstack
8 display_name: "Deploy - OpenStack"
9 discard:
10 build:
Jakub Josef1a828962018-01-23 12:33:34 +010011 keep_num: 50
Tomáš Kukrálf416c492017-03-21 18:05:30 +010012 concurrent: true
13 scm:
14 type: git
15 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
Jakub Josef7938b532017-12-12 18:02:03 +010016 branch: "${_param:jenkins_pipelines_branch}"
Sergey Galkinef9eabf2019-06-19 17:53:07 +040017 credentials: ${_param:jenkins_gerrit_credentials}
Tomáš Kukrále0870442017-07-27 18:28:11 +020018 script: cloud-deploy-pipeline.groovy
Tomáš Kukrále97a47a2017-03-21 19:14:05 +010019 param:
20 # deployments and test settings
21 STACK_TYPE:
22 type: string
23 default: "physical"
Richard Felkl32b7e9f2017-05-24 17:21:42 +020024 STACK_INSTALL:
Tomáš Kukrále97a47a2017-03-21 19:14:05 +010025 type: string
26 default: "core,kvm,openstack,stacklight"
Jiri Broulik512065f2018-02-27 11:34:14 +010027 description: "Components to be installed. Valid values are 'core,kvm,k8s,openstack,contrail,ovs,ceph,oss,cicd,stacklight,sl-legacy,finalize'. For all deployments it's recommended to run 'finalize' as a final step as Salt highstate on all nodes will be run."
Denis Egorenkocc9a8c72019-08-27 13:54:40 +040028 BATCH_SIZE:
29 type: string
30 default: ''
31 description: 'Use batching for states, which targeted for large amount of nodes. Can be Integer or Percentage, e.g 20 or 20%'
Ivan Berezovskiye40a6b52020-01-27 14:35:10 +040032 DIST_UPGRADE_NODES:
33 type: boolean
34 default: 'false'
35 description: 'Whether to run "apt-get dist-upgrade" on all nodes in cluster before deployment'
Tomáš Kukrále97a47a2017-03-21 19:14:05 +010036 # salt master
37 SALT_MASTER_CREDENTIALS:
38 type: string
39 default: "salt"
40 SALT_MASTER_URL:
41 type: string
Alexander Noskov43cfe612017-12-06 11:17:55 +040042 default: "${_param:jenkins_salt_api_url}"
Jakub Josef89d22cb2017-03-23 16:05:30 +010043 ASK_ON_ERROR:
44 type: boolean
45 default: 'false'
Jiri Broulik52b73152017-12-19 15:37:50 +010046 STATIC_MGMT_NETWORK:
47 type: boolean
48 default: 'false'
49 description: "Check if model contains static IP address definitions for all nodes"
Jakub Pavlik6162d452017-06-13 09:59:04 +020050 deploy-openstack-compute:
51 type: workflow-scm
52 concurrent: true
Oleh Hryhorovc9179452019-03-12 15:30:15 +020053 description: "\n This pipeline is provided as technical preview. Do not use the pipeline in production environments as the result of the pipeline is unpredictable."
Alexander Evseevbb2e6402018-08-07 11:48:52 +020054 discard:
55 build:
56 keep_num: 50
Jakub Pavlik6162d452017-06-13 09:59:04 +020057 display_name: "Deploy - OpenStack Compute node"
58 scm:
59 type: git
60 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
Jakub Josef7938b532017-12-12 18:02:03 +010061 branch: "${_param:jenkins_pipelines_branch}"
Sergey Galkinef9eabf2019-06-19 17:53:07 +040062 credentials: ${_param:jenkins_gerrit_credentials}
Jakub Pavlik6162d452017-06-13 09:59:04 +020063 script: openstack-compute-install.groovy
64 param:
65 SALT_MASTER_URL:
66 type: string
67 default: "${_param:jenkins_salt_api_url}"
68 SALT_MASTER_CREDENTIALS:
69 type: string
70 default: "salt"
71 TARGET_SERVERS:
72 type: string
73 default: ""
Tomáš Kukrále0870442017-07-27 18:28:11 +020074 description: "Salt compound target to match nodes to be updated [*, G@osfamily:debian]."
Denis Egorenkocc9a8c72019-08-27 13:54:40 +040075 BATCH_SIZE:
76 type: string
77 default: ''
78 description: 'Use batching for states, which targeted for large amount of nodes. Can be Integer or Percentage, e.g 20 or 20%'