blob: 107b93236af8ae95ab8750d59075850d3f400aa5 [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}"
Tomáš Kukrálf416c492017-03-21 18:05:30 +010017 credentials: "gerrit"
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."
Tomáš Kukrále97a47a2017-03-21 19:14:05 +010028 # salt master
29 SALT_MASTER_CREDENTIALS:
30 type: string
31 default: "salt"
32 SALT_MASTER_URL:
33 type: string
Alexander Noskov43cfe612017-12-06 11:17:55 +040034 default: "${_param:jenkins_salt_api_url}"
Jakub Josef89d22cb2017-03-23 16:05:30 +010035 ASK_ON_ERROR:
36 type: boolean
37 default: 'false'
Jiri Broulik52b73152017-12-19 15:37:50 +010038 STATIC_MGMT_NETWORK:
39 type: boolean
40 default: 'false'
41 description: "Check if model contains static IP address definitions for all nodes"
Jakub Pavlik6162d452017-06-13 09:59:04 +020042 deploy-openstack-compute:
43 type: workflow-scm
44 concurrent: true
Oleh Hryhorovc9179452019-03-12 15:30:15 +020045 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 +020046 discard:
47 build:
48 keep_num: 50
Jakub Pavlik6162d452017-06-13 09:59:04 +020049 display_name: "Deploy - OpenStack Compute node"
50 scm:
51 type: git
52 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
Jakub Josef7938b532017-12-12 18:02:03 +010053 branch: "${_param:jenkins_pipelines_branch}"
Jakub Pavlik6162d452017-06-13 09:59:04 +020054 credentials: "gerrit"
55 script: openstack-compute-install.groovy
56 param:
57 SALT_MASTER_URL:
58 type: string
59 default: "${_param:jenkins_salt_api_url}"
60 SALT_MASTER_CREDENTIALS:
61 type: string
62 default: "salt"
63 TARGET_SERVERS:
64 type: string
65 default: ""
Tomáš Kukrále0870442017-07-27 18:28:11 +020066 description: "Salt compound target to match nodes to be updated [*, G@osfamily:debian]."