eg 1.1.1 related
[eliot.git] / blueprints / iotgateway / playbooks / roles / egallery-tar / 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
17 - name: Create directory to download EG-TAR
18   command: mkdir -p /tmp/eg_download/deploy
19   args:
20     chdir: "{{playbook_dir}}"
21   ignore_errors: yes
22
23 - name: Download 1.1 edgegallery x86
24 # yamllint disable rule:line-length
25   command: wget https://edgegallery.obs.cn-east-3.myhuaweicloud.com/releases/v1.1/x86/EdgeGallery-v1.1-all-x86.tar.gz
26 # yamllint disable rule:line-length
27   args:
28     chdir: /tmp/eg_download/deploy/
29   when: ansible_architecture == 'x86_64'
30
31 - name: Untar Edgegallery offline tarbal file
32   command: tar -xvf EdgeGallery-v1.1-all-x86.tar.gz
33   args:
34     chdir: /tmp/eg_download/deploy/
35   when: ansible_architecture == 'x86_64'
36
37 - name: Set inventory file for aio
38   command: cp hosts-aio /tmp/eg_download/deploy/ansible-all-x86-latest/install
39   args:
40     chdir: "{{playbook_dir}}"
41   when: ansible_architecture == 'x86_64'
42
43 - name: Set inventory file for muno
44   command: cp hosts-muno /tmp/eg_download/deploy/ansible-all-x86-latest/install
45   args:
46     chdir: "{{playbook_dir}}"
47   when: ansible_architecture == 'x86_64'
48
49 - name: Set var.yml to eg path
50   # yamllint disable rule:line-length
51   command: cp var.yml /tmp/eg_download/deploy/ansible-all-x86-latest/install
52   # yamllint disable rule:line-length
53   args:
54     chdir: "{{playbook_dir}}"
55   when: ansible_architecture == 'x86_64'
56
57 - name: Set default-var.yml to eg path
58   # yamllint disable rule:line-length
59   command: cp default-var.yml /tmp/eg_download/deploy/ansible-all-x86-latest/install
60   # yamllint disable rule:line-length
61   args:
62     chdir: "{{playbook_dir}}"
63   when: ansible_architecture == 'x86_64'