blob: e0dc091341013a93abb08cb4b257f30d28086e97 [file] [log] [blame]
Jiri Broulika50d13e2017-11-03 15:41:50 +01001parameters:
2 jenkins:
3 client:
4 job:
5 ceph-backend-migration:
6 type: workflow-scm
7 concurrent: true
8 display_name: "Ceph - backend migration"
9 discard:
10 build:
11 keep_num: 50
12 scm:
13 type: git
14 url: "${_param:jenkins_gerrit_url}/mk/mk-pipelines"
15 credentials: "gerrit"
16 script: ceph-backend-migration.groovy
17 param:
18 # general parameters
19 SALT_MASTER_URL:
20 type: string
21 description: URL of Salt master
22 default: "http://${_param:salt_master_host}:6969"
23 SALT_MASTER_CREDENTIALS:
24 type: string
25 description: Credentials for login to Salt API
26 default: salt
27 TARGET:
28 type: string
29 description: OSD hosts (minion ids) to be targeted
30 default: 'osd*'
31 OSD:
32 type: string
33 description: OSD ids to be migrated (comma-separated list - 1,2,3)
34 default: '*'
35 ADMIN_HOST:
36 type: string
37 description: Host with admin keyring and access to cluster management
38 default: 'cmn01*'
39 CLUSTER_FLAGS:
40 type: string
41 description: Flags to be aplied before pipeline and after pipeline (comma-separated list)
42 WAIT_FOR_HEALTHY:
43 type: boolean
44 default: 'true'
45 description: Wait for healthy during pipeline
46 ORIGIN_BACKEND:
47 type: string
48 description: Ceph backend before migration
49 default: 'filestore'