Update stor4nfv install scripts according to opensds aruba release
[stor4nfv.git] / ci / ansible / roles / nbp-installer / tasks / main.yml
1 # Copyright (c) 2018 Huawei Technologies Co., Ltd. All Rights Reserved.\r
2 #\r
3 # Licensed under the Apache License, Version 2.0 (the "License");\r
4 # you may not use this file except in compliance with the License.\r
5 # You may obtain a copy of the License at\r
6 #\r
7 #     http://www.apache.org/licenses/LICENSE-2.0\r
8 #\r
9 # Unless required by applicable law or agreed to in writing, software\r
10 # distributed under the License is distributed on an "AS IS" BASIS,\r
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 # See the License for the specific language governing permissions and\r
13 # limitations under the License.\r
14 \r
15 ---\r
16 - name: install open-iscsi external packages\r
17   apt:\r
18     name: "{{ item }}"\r
19     state: present\r
20   with_items:\r
21     - open-iscsi\r
22 \r
23 - name: create nbp work directory if it doesn't exist\r
24   file:\r
25     path: "{{ item }}"\r
26     state: directory\r
27     mode: 0755\r
28   with_items:\r
29     - "{{ nbp_work_dir }}"\r
30 \r
31 - name: include scenarios/repository.yml when installing from repository\r
32   include: scenarios/repository.yml\r
33   when: install_from == "repository"\r
34 \r
35 - name: include scenarios/release.yml when installing from release\r
36   include: scenarios/release.yml\r
37   when: install_from == "release"\r
38 \r
39 - name: include scenarios/flexvolume.yml when nbp plugin type is flexvolume\r
40   include: scenarios/flexvolume.yml\r
41   when: nbp_plugin_type == "flexvolume"\r
42 \r
43 - name: include scenarios/csi.yml when nbp plugin type is csi\r
44   include: scenarios/csi.yml\r
45   when: nbp_plugin_type == "csi"\r