diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-04-25 09:47:40 +0800 |
---|---|---|
committer | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-04-25 09:54:17 +0800 |
commit | ec63540ec6cd3e6310407826b99cf0b3327bdf02 (patch) | |
tree | 7ca96024bab63d3793df6e3a43c085af34282b55 /tests/integration | |
parent | c004fa1abd8069243b6cd4d9f9af66db2395351f (diff) |
Prompt for variables required for creating workspace
Change-Id: I9fa48ebcb8433cbc2f8101e59a285d50b0497273
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/workspace-create.yml | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/tests/integration/workspace-create.yml b/tests/integration/workspace-create.yml index ad4ff7ff..194747f3 100644 --- a/tests/integration/workspace-create.yml +++ b/tests/integration/workspace-create.yml @@ -12,6 +12,32 @@ gather_facts: no + vars_prompt: + + - name: pod_name + prompt: 'name of the pod under test:' + default: qtip-pod + private: no + + - name: scenario + prompt: 'scenario deployed in the pod:' + default: generic + private: no + + - name: installer + prompt: 'installer type of the pod (apex|fuel):' + default: fuel + private: no + + - name: installer_master_host + prompt: 'master host of the installer:' + default: master + private: no + + - name: workspace + prompt: 'workspace name:' + default: workspace + roles: - role: qtip-workspace @@ -20,8 +46,8 @@ # opnfv environment - installer: apex # <fuel|apex> - installer_master_host: apex-virtual # make sure you can login it with key authentication +# installer: apex # <fuel|apex> +# installer_master_host: apex-virtual # make sure you can login it with key authentication # set testapi_url to enable reportint to testapi |