diff options
author | 2018-12-17 14:58:02 +0800 | |
---|---|---|
committer | 2018-12-17 18:14:15 +0800 | |
commit | 488c558492201aacd359305a7afa3d5640a90b0e (patch) | |
tree | 0b2a86abbeed0b555ba7409106d2cd55a5f91bbd /jjb | |
parent | 30478e1e193485cce93164e9877002b811acf950 (diff) |
Add parameter of `DEPLOY_SCENARIO` for doctor
Need to get the os_cacert file according to the scenario for MCP installer.
You can see here: https://github.com/opnfv/releng/blob/master/utils/fetch_os_creds.sh#L116
Change-Id: I9216f2c810a93a25406a33e2f9c542c64f30e27e
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/doctor/doctor.yaml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/jjb/doctor/doctor.yaml b/jjb/doctor/doctor.yaml index deccc32a4..71c519856 100644 --- a/jjb/doctor/doctor.yaml +++ b/jjb/doctor/doctor.yaml @@ -21,8 +21,10 @@ disabled: false installer: - - 'apex' - - 'fuel' + - 'apex': + scenario: 'os-nosdn-nofeature-noha' + - 'fuel': + scenario: 'os-nosdn-nofeature-noha' arch: - 'x86_64' @@ -117,6 +119,7 @@ - 'doctor-slave-parameter' - 'doctor-parameter': inspector: '{inspector}' + scenario: '{scenario}' test_case: 'fault_management' scm: - git-scm-gerrit @@ -141,6 +144,7 @@ - 'doctor-slave-parameter' - 'doctor-parameter': inspector: '{inspector}' + scenario: '{scenario}' test_case: 'maintenance' scm: - git-scm-gerrit @@ -165,6 +169,7 @@ - 'doctor-slave-parameter' - 'doctor-parameter': inspector: '{inspector}' + scenario: '{scenario}' test_case: 'all' scm: - git-scm-gerrit @@ -188,6 +193,10 @@ name: TEST_CASE default: '{test_case}' description: 'test case: all, fault_management or maintenance' + - string: + name: DEPLOY_SCENARIO + default: '{scenario}' + description: 'Scenario to deploy and test' # ------------------------------- |