blob: 1d57f5dac4e7befa5b026b6b4e82ed033deae29f [file] [log] [blame]
Filip Pytloun7af94b32017-03-14 18:38:52 +01001parameters:
Filip Pytloun260a9502017-03-16 12:47:22 +01002 _param:
3 jenkins_deploy_lab_mk_jobs: []
Filip Pytloun7af94b32017-03-14 18:38:52 +01004 jenkins:
5 client:
6 job_template:
Filip Pytloun260a9502017-03-16 12:47:22 +01007 deploy_heat_template:
8 name: deploy-{{stack_type}}-{{lab}}
9 jobs: ${_param:jenkins_deploy_lab_mk_jobs}
Filip Pytloun7af94b32017-03-14 18:38:52 +010010 template:
11 type: workflow-scm
Filip Pytloun260a9502017-03-16 12:47:22 +010012 discard:
13 build:
14 keep_num: 20
Filip Pytloun7af94b32017-03-14 18:38:52 +010015 concurrent: true
Filip Pytloun260a9502017-03-16 12:47:22 +010016 display_name: "Deploy - {{lab}} {{stack_type}} lab"
Filip Pytloun7af94b32017-03-14 18:38:52 +010017 scm:
18 type: git
19 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
20 credentials: "gerrit"
Filip Pytloun260a9502017-03-16 12:47:22 +010021 script: lab-pipeline.groovy
Tomáš Kukrál903a7f62017-04-13 13:21:30 +020022 trigger:
23 timer:
24 spec: "{{timer}}"
Filip Pytloun7af94b32017-03-14 18:38:52 +010025 param:
Filip Pytloun260a9502017-03-16 12:47:22 +010026 # deployments and test settings
27 STACK_TYPE:
28 type: string
29 default: "{{stack_type}}"
30 INSTALL:
31 type: string
32 default: "{{install}}"
33 TEST:
34 type: string
Victor Ryzhenkin6670f052017-03-22 14:59:18 +040035 default: "{{test}}"
Filip Pytloun260a9502017-03-16 12:47:22 +010036
Jakub Josef43f34432017-05-23 19:16:49 +020037 STACK_TEMPLATE_URL:
Filip Pytloun7af94b32017-03-14 18:38:52 +010038 type: string
Tomáš Kukrálcf72c8d2017-04-19 21:50:05 +020039 default: "${_param:jenkins_gerrit_url}/mk/heat-templates"
Jakub Josef43f34432017-05-23 19:16:49 +020040 STACK_TEMPLATE_CREDENTIALS:
Filip Pytloun7af94b32017-03-14 18:38:52 +010041 type: string
42 default: "gerrit"
Jakub Josef43f34432017-05-23 19:16:49 +020043 STACK_TEMPLATE_BRANCH:
Filip Pytloun7af94b32017-03-14 18:38:52 +010044 type: string
Tomáš Kukrál394cdbf2017-03-29 16:35:37 +020045 default: "master"
Jakub Josef43f34432017-05-23 19:16:49 +020046 STACK_NAME:
Filip Pytloun7af94b32017-03-14 18:38:52 +010047 type: string
48 description: Heat stack name. Will be generated if missing.
Jakub Josef43f34432017-05-23 19:16:49 +020049 STACK_TEMPLATE:
Filip Pytloun7af94b32017-03-14 18:38:52 +010050 type: string
51 default: "{{lab}}"
Jakub Josef43f34432017-05-23 19:16:49 +020052 STACK_DELETE:
53 type: boolean
54 default: 'true'
55 description: "Don't enable it if you need to use the lab after"
56 STACK_REUSE:
57 type: boolean
58 default: 'false'
59
60 # heat
Filip Pytloun7af94b32017-03-14 18:38:52 +010061 HEAT_STACK_ENVIRONMENT:
62 type: string
63 default: "tcpisek"
64 HEAT_STACK_ZONE:
65 type: string
66 default: "mirantis-zone-qa"
67 HEAT_STACK_PUBLIC_NET:
68 type: string
69 default: "mirantis-private"
Filip Pytloun7af94b32017-03-14 18:38:52 +010070
71 # salt master
72 SALT_MASTER_CREDENTIALS:
73 type: string
74 default: "salt-qa-credentials"
Filip Pytloun260a9502017-03-16 12:47:22 +010075 SALT_MASTER_URL:
Filip Pytloun7af94b32017-03-14 18:38:52 +010076 type: string
Filip Pytlounaa456012017-03-24 12:49:25 +010077 default: ""
Filip Pytloun7af94b32017-03-14 18:38:52 +010078
79 # openstack api
80 OPENSTACK_API_URL:
81 type: string
82 default: "https://vpc.tcpisek.cz:5000/v2.0"
83 OPENSTACK_API_CREDENTIALS:
84 type: string
85 default: "openstack-qa-credentials"
86 OPENSTACK_API_PROJECT:
87 type: string
88 default: "mirantis_mk20_qa"
89 OPENSTACK_API_CLIENT:
90 type: string
91 default: "liberty"
92 OPENSTACK_API_VERSION:
93 type: string
94 default: "2"
kairat_kushaev12b8d1f2017-05-18 17:49:33 +040095 OPENSTACK_API_PROJECT_DOMAIN_ID:
96 type: string
97 default: "default"
98 OPENSTACK_API_USER_DOMAIN_ID:
99 type: string
100 default: "default"
Filip Pytloun260a9502017-03-16 12:47:22 +0100101
102 # k8s setttings
103 K8S_API_SERVER:
104 type: string
105 default: "http://127.0.0.1:8080"
106 K8S_CONFORMANCE_IMAGE:
107 type: string
108 default: "docker-dev-virtual.docker.mirantis.net/mirantis/kubernetes/k8s-conformance:v1.5.1-3_1482332392819"
109
110 # Tempest settings
111 TEMPEST_IMAGE_LINK:
112 type: string
113 default: "sandbox-docker-prod-local.docker.mirantis.net/mirantis/rally_tempest:0.1"
114
Jakub Josef89d22cb2017-03-23 16:05:30 +0100115 ASK_ON_ERROR:
116 type: boolean
117 default: 'false'
118