Fix some bugs about ansible deployment
[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   when: nbp_plugin_type != "hotpot_only"\r
23 \r
24 - name: create nbp work directory if it doesn't exist\r
25   file:\r
26     path: "{{ item }}"\r
27     state: directory\r
28     mode: 0755\r
29   with_items:\r
30     - "{{ nbp_work_dir }}"\r
31   when: nbp_plugin_type != "hotpot_only"\r
32 \r
33 - name: include scenarios/repository.yml when installing from repository\r
34   include: scenarios/repository.yml\r
35   when: install_from == "repository" and nbp_plugin_type != "hotpot_only"\r
36 \r
37 - name: include scenarios/release.yml when installing from release\r
38   include: scenarios/release.yml\r
39   when: install_from == "release" and nbp_plugin_type != "hotpot_only"\r
40 \r
41 - name: include scenarios/flexvolume.yml when nbp plugin type is flexvolume\r
42   include: scenarios/flexvolume.yml\r
43   when: nbp_plugin_type == "flexvolume"\r
44 \r
45 - name: include scenarios/csi.yml when nbp plugin type is csi\r
46   include: scenarios/csi.yml\r
47   when: nbp_plugin_type == "csi"\r