blob: 17dca280019148cb0b4868986c88a20304f18a56 [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
Filip Pytloun7af94b32017-03-14 18:38:52 +010037 # heat
38 HEAT_TEMPLATE_URL:
39 type: string
40 default: "git@github.com:Mirantis/mk-lab-heat-templates.git"
41 HEAT_TEMPLATE_CREDENTIALS:
42 type: string
43 default: "gerrit"
44 HEAT_TEMPLATE_BRANCH:
45 type: string
Tomáš Kukrál394cdbf2017-03-29 16:35:37 +020046 default: "master"
Filip Pytloun7af94b32017-03-14 18:38:52 +010047 HEAT_STACK_NAME:
48 type: string
49 description: Heat stack name. Will be generated if missing.
50 HEAT_STACK_TEMPLATE:
51 type: string
52 default: "{{lab}}"
53 HEAT_STACK_ENVIRONMENT:
54 type: string
55 default: "tcpisek"
56 HEAT_STACK_ZONE:
57 type: string
58 default: "mirantis-zone-qa"
59 HEAT_STACK_PUBLIC_NET:
60 type: string
61 default: "mirantis-private"
62 HEAT_STACK_DELETE:
63 type: boolean
64 default: 'true'
chnyda6160e992017-04-05 14:29:18 +020065 description: "Don't enable it if you need to use the lab after"
Filip Pytloun7af94b32017-03-14 18:38:52 +010066 HEAT_STACK_REUSE:
67 type: boolean
68 default: 'false'
Filip Pytloun7af94b32017-03-14 18:38:52 +010069
70 # salt master
71 SALT_MASTER_CREDENTIALS:
72 type: string
73 default: "salt-qa-credentials"
Filip Pytloun260a9502017-03-16 12:47:22 +010074 SALT_MASTER_URL:
Filip Pytloun7af94b32017-03-14 18:38:52 +010075 type: string
Filip Pytlounaa456012017-03-24 12:49:25 +010076 default: ""
Filip Pytloun7af94b32017-03-14 18:38:52 +010077
78 # openstack api
79 OPENSTACK_API_URL:
80 type: string
81 default: "https://vpc.tcpisek.cz:5000/v2.0"
82 OPENSTACK_API_CREDENTIALS:
83 type: string
84 default: "openstack-qa-credentials"
85 OPENSTACK_API_PROJECT:
86 type: string
87 default: "mirantis_mk20_qa"
88 OPENSTACK_API_CLIENT:
89 type: string
90 default: "liberty"
91 OPENSTACK_API_VERSION:
92 type: string
93 default: "2"
Filip Pytloun260a9502017-03-16 12:47:22 +010094
95 # k8s setttings
96 K8S_API_SERVER:
97 type: string
98 default: "http://127.0.0.1:8080"
99 K8S_CONFORMANCE_IMAGE:
100 type: string
101 default: "docker-dev-virtual.docker.mirantis.net/mirantis/kubernetes/k8s-conformance:v1.5.1-3_1482332392819"
102
103 # Tempest settings
104 TEMPEST_IMAGE_LINK:
105 type: string
106 default: "sandbox-docker-prod-local.docker.mirantis.net/mirantis/rally_tempest:0.1"
107
Jakub Josef89d22cb2017-03-23 16:05:30 +0100108 ASK_ON_ERROR:
109 type: boolean
110 default: 'false'
111