0dad5b49494f20a4c57f268c54a57f01d4e314dc
[eliot.git] / blueprints / iotgateway / playbooks / roles / egallery-munomode-edge / tasks / install.yml
1 # Copyright 2021 Huawei Technologies Co., Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 ---
16 ### MUNO edge installation ###
17
18 - name: Check edgegallery tar ball present
19   stat:
20     path: /tmp/eg_download/deploy/EdgeGallery-v1.3.2-edge-x86.tar.gz
21   register: edge_tar_var
22
23 - name: Download 1.1 edgegallery x86 edge
24 # yamllint disable rule:line-length
25   command: wget https://edgegallery.obs.cn-east-3.myhuaweicloud.com/releases/v1.3.2/x86/EdgeGallery-v1.3.2-edge-x86.tar.gz
26 # yamllint disable rule:line-length
27   args:
28     chdir: /tmp/eg_download/deploy/
29   when: not edge_tar_var.stat.exists
30
31 - name: Untar Edgegallery offline edge tar file
32   command: tar -xvf EdgeGallery-v1.3.2-edge-x86
33   args:
34     chdir: /tmp/eg_download/deploy/
35   when: not edge_tar_var.stat.exists
36
37 - name: Set inventory file for muno edge
38 # yamllint disable rule:line-length
39   command: scp root@{{ OCD_IP }}:"{{playbook_dir}}"/muno-config/edge/hosts-muno-edge .
40 # yamllint disable rule:line-length
41   args:
42     chdir: "{{playbook_dir}}"
43
44 - name: Set var.yml file for muno edge
45 # yamllint disable rule:line-length
46   command: scp root@{{ OCD_IP }}:"{{playbook_dir}}"/muno-config/edge/var.yml .
47 # yamllint disable rule:line-length
48   args:
49     chdir: "{{playbook_dir}}"
50
51 - name: Install edgegallery edge
52   shell:
53     # yamllint disable rule:line-length
54     cmd: ansible-playbook --inventory hosts-muno-edge -e "ansible_user=root" eg_edge_aio_install.yml >> muno_edge_log
55     # yamllint disable rule:line-length
56     chdir: /tmp/eg_download/deploy/EdgeGallery-v1.3.2-edge-x86/install
57   when: ansible_architecture == 'x86_64'