-
Notifications
You must be signed in to change notification settings - Fork 1
/
CentOS7x_Install-Kubernetes-playbook.yml
174 lines (141 loc) · 4.49 KB
/
CentOS7x_Install-Kubernetes-playbook.yml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
---
################################################################################
# description: Installs Kubernetes on CentOS7x
# usage: ansible-playbook CentOS7x_Install-Kubernetes-playbook.yml --extra-vars 'HostOrGroup=YourServerOrGroupNameGoesHere'
# author: Ernest G. Wilson II <[email protected]> (https://github.com/ernestgwilsonii)
# license: MIT
################################################################################
# Ansible Playbook options
# REF: http://docs.ansible.com/ansible/playbooks.html
#####################################################
- name: Install Kubernetes on CentOS7x
hosts: "{{ HostOrGroup|default ('FATAL ERROR --> HostOrGroup NOT SET! You must specify either a Host or a Group name!') }}"
serial: "100%"
gather_facts: False
tasks:
# Install or configure repository used on the OS by yum
# REF: https://docs.ansible.com/ansible/yum_repository_module.html
##################################################################
# /etc/yum.repos.d/kubelet.repo
- name: Install repository kubelet
yum_repository:
name: kubelet
description: Kubernetes Repository
file: kubelet
baseurl: http://files.rm-rf.ca/rpms/kubelet/
enabled: yes
gpgcheck: no
# Install yum packages
# REF: http://docs.ansible.com/ansible/yum_module.html
######################################################
- name: Install bind-utils
yum:
name: bind-utils
state: latest
# https://github.com/docker/docker/releases
- name: Install docker-engine
yum:
name: docker-engine
state: latest
- name: Install git
yum:
name: git
state: latest
- name: Install jq
yum:
name: jq
state: latest
# https://lukemarsden.github.io/docs/getting-started-guides/kubeadm/
- name: Install kubelet
yum:
name: kubelet
state: latest
- name: Install kubeadm
yum:
name: kubeadm
state: latest
- name: Install kubectl
yum:
name: kubectl
state: latest
- name: Install kubernetes-cni
yum:
name: kubernetes-cni
state: latest
# Restart firewalld to make sure it is running OK before changing any rules
# REF: http://docs.ansible.com/ansible/service_module.html
##########################################################
- name: Ensure the firewalld service is enabled and re-started before changing any rules
service:
name: firewalld
enabled: yes
state: restarted
# Update the firewalld configuration
# REF: http://docs.ansible.com/ansible/firewalld_module.html
############################################################
- name: Update firewall to allow port UDP 53 for incoming connections
firewalld:
port: 53/udp
permanent: true
immediate: yes
state: enabled
zone: public
- name: Update firewall to allow port TCP 53 for incoming connections
firewalld:
port: 53/tcp
permanent: true
immediate: yes
state: enabled
zone: public
- name: Update firewall to allow port TCP 80 for incoming connections
firewalld:
port: 80/tcp
permanent: true
immediate: yes
state: enabled
zone: public
- name: Update firewall to allow port TCP 6443 for incoming Kubernetes API connections
firewalld:
port: 6443/tcp
permanent: true
immediate: yes
state: enabled
zone: public
- name: Update firewall to allow port TCP 9898 for incoming Kubernetes Discovery connections
firewalld:
port: 9898/tcp
permanent: true
immediate: yes
state: enabled
zone: public
- name: Update firewall to allow port TCP 10250 for incoming connections
firewalld:
port: 10250/tcp
permanent: true
immediate: yes
state: enabled
zone: public
- name: Update firewall to allow port TCP 15441 for incoming connections
firewalld:
port: 15441/tcp
permanent: true
immediate: yes
state: enabled
zone: public
- name: Update firewall to allow port TCP 31869 for incoming connections
firewalld:
port: 31869/tcp
permanent: true
immediate: yes
state: enabled
zone: public
# Enable and start kubelet
# REF: http://docs.ansible.com/ansible/service_module.html
##########################################################
- name: Enable and start (or restart) the kubelet service
service:
name: kubelet
enabled: yes
state: restarted
# Note: Verify kubelet via SSH command line:
# systemctl status kubelet