blob: 9b99ee5812574712a490eca3c863c946919846ee [file] [log] [blame]
Ales Komarek6edbc452017-08-10 10:02:24 +02001parameters:
2 jenkins:
3 client:
4 job:
5 test_service_job:
6 name: deploy-test-service
7 type: workflow-scm
8 discard:
9 build:
10 keep_num: 20
11 concurrent: true
12 display_name: "Deploy - Test services in environment"
13 scm:
14 type: git
15 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
16 credentials: "gerrit"
17 script: test-service.groovy
18 param:
19
20 # salt
21 SALT_MASTER_CREDENTIALS:
22 type: string
23 default: "salt-qa-credentials"
24 SALT_MASTER_URL:
25 type: string
26 default: ""
27
28 # test
29 TEST_K8S_API_SERVER:
30 type: string
31 default: "http://127.0.0.1:8080"
32 TEST_K8S_CONFORMANCE_IMAGE:
33 type: string
vrovachev7e709802017-09-15 20:04:26 +040034 default: "docker-dev-virtual.docker.mirantis.net/mirantis/kubernetes/k8s-conformance:v1.7.5-2_1504192939316"
Ales Komarek6edbc452017-08-10 10:02:24 +020035
36 TEST_TEMPEST_IMAGE:
37 type: string
38 description: "Tempest docker image"
Oleksandr Kosse05a98112017-09-28 17:38:55 +030039 default: "docker-prod-local.artifactory.mirantis.com/mirantis/oscore/rally-tempest"
Ales Komarek6edbc452017-08-10 10:02:24 +020040 TEST_TEMPEST_TARGET:
41 type: string
Jakub Pavlikef17f3d2017-08-11 14:39:34 +020042 description: "Node to run tests. use FQDN for ctl01 e.g. ctl01.deploy-heat-os_ha_contrail-17.bud-mk.local"
Ales Komarek6edbc452017-08-10 10:02:24 +020043 default: ""
44 TEST_DOCKER_INSTALL:
45 type: boolean
46 description: "Install docker on the target if true"
47 default: "true"
48 TEST_TEMPEST_PATTERN:
49 type: string
Jakub Pavlikef17f3d2017-08-11 14:39:34 +020050 description: "Run tests matched to pattern only e.g. tempest.api.identity"
51 default: "false"
52 TEST_SERVICE:
53 type: string
54 description: "openstack or k8s"
55 default: "openstack"
56 TEST_JUNIT_RATIO:
57 type: string
58 description: "The amplification factor to apply to test failures when computing the test result contribution to the build health score."
59 default: "1.0"