blob: 70be0d3ad13df068f41246b6da0321533c871110 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
---
- name: install container runtime
include_tasks: "cri_{{ kubernetes_container_runtime }}.yml"
- name: prepare storage volume for /var/lib/kubelet
when: kubelet_storage is defined
vars:
storage_volume: "{{ kubelet_storage | combine({'dest': '/var/lib/kubelet'}) }}"
include_role:
name: "storage/{{ kubelet_storage.type }}/volume"
- name: add apt repository for kubernetes packages
include_role:
name: apt-repo/kubernetes
- name: add apt repository for cri-tools
include_role:
name: apt-repo/kubic-project
- name: install kubelet and common packages
apt:
name:
- bridge-utils
- "cri-tools={{ kubernetes_cri_tools_pkg_version }}"
- "kubelet={{ kubernetes_version }}-00"
state: present
force: yes
## TODO: remove force once the following changes are available
## https://github.com/ansible/ansible/pull/73629 or https://github.com/ansible/ansible/pull/72562
## https://github.com/ansible/ansible/pull/74852
- name: disable automatic upgrades for kubelet and cri-tools
loop:
- kubelet
- cri-tools
dpkg_selections:
name: "{{ item }}"
selection: hold
- name: configure endpoints for crictl
copy:
dest: /etc/crictl.yaml
content: |
runtime-endpoint: "{{ kubernetes_cri_socket }}"
image-endpoint: "{{ kubernetes_cri_socket }}"
- name: add crictl config for shells
loop:
- zsh
- bash
blockinfile:
path: "/root/.{{ item }}rc"
create: yes
marker: "### {mark} ANSIBLE MANAGED BLOCK for crictl ###"
content: |
source <(crictl completion {{ item }})
- name: add dummy group with gid 990
group:
name: app
gid: 990
- name: add dummy user with uid 990
user:
name: app
uid: 990
group: app
password: "!"
|