Docker roles added
[ealt-edge.git] / ocd / infra / playbooks / roles / docker / tasks / install.yml
1 # Copyright 2020 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 - name: Check whether docker is already installed
17   command: which docker
18   register: result
19   failed_when: false
20   no_log: True
21
22 - debug:
23     msg: Docker is already present
24   when: result.rc == 0
25
26 - meta: end_play
27   when: result.rc == 0
28
29 - name: "Installing docker update"
30   command: apt-get update -y
31   ignore_errors: yes
32   failed_when: false
33   no_log: True
34
35 - name: "Installing docker upgrade"
36 # yamllint disable rule:line-length
37   command: apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common
38 # yamllint disable rule:line-length
39   ignore_errors: yes
40
41 - name: Add repository
42   shell: curl -sL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
43
44 - name: "CA-Certificates"
45 # yamllint disable rule:line-length
46   shell: sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu  $(lsb_release -cs)  stable"
47 # yamllint disable rule:line-length
48   ignore_errors: yes
49   failed_when: false
50   no_log: True
51
52 - name: "Update....."
53   command: apt-get update -y
54   ignore_errors: yes
55   failed_when: false
56   no_log: True
57
58 - name: "Installed docker"
59   command: apt-get install -y docker-ce docker-ce-cli containerd.io
60   ignore_errors: yes