Removed end_play condition
[ealt-edge.git] / ocd / infra / playbooks / roles / k3s / 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 k3s is already installed
17   shell:
18     cmd: which k3s
19   register: result
20   ignore_errors: yes
21   no_log: True
22
23 - debug:
24     msg: k3s is already present
25   when: result.rc == 0
26
27 - debug: var=ansible_host
28
29 - name: Disabling firewall for successfull k3s installation on CentOs
30   shell:
31     cmd: systemctl stop firewalld
32   when: ansible_facts['distribution'] == "CentOS" and result is failed
33
34 - name: install container-selinux
35   shell:
36     cmd: yum install -y container-selinux selinux-policy-base
37   when: ansible_facts['distribution'] == "CentOS" and result is failed
38   ignore_errors: true
39
40 - name: install k3s-selinux-0.1.1-rc1.el7.noarch.rpm
41   shell:
42     cmd: rpm -i https://rpm.rancher.io/k3s-selinux-0.1.1-rc1.el7.noarch.rpm
43   when: ansible_facts['distribution'] == "CentOS" and result is failed
44   ignore_errors: true
45
46 - name: get interface name
47   shell:
48     cmd: ip a |grep {{ ansible_host }} |awk '{print $NF}'
49   register: ifName
50   when: result is failed
51
52 - name: install k3s
53   shell:
54     cmd: curl -sfL https://get.k3s.io | sh -
55   when: result is failed
56
57 - name: create .kube dir
58   shell:
59     cmd: mkdir -p $HOME/.kube/
60   when: result is failed
61
62 - name: copy kubeconfig
63   shell:
64     cmd: cp /etc/rancher/k3s/k3s.yaml $HOME/.kube/config
65   when: result is failed