k8sworker

Ansible Role: K8s worker

Build Status

An Ansible Role that installs a Kubernetes worker node with kubeadm on Ubuntu.

Requirements

Requires Docker; recommended role for Docker installation: yanehi.docker.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

k8s_major_version: 1
k8s_minor_version: 18
k8s_patch_version: 1
k8s_version: "{{ k8s_major_version }}.{{ k8s_minor_version }}.{{ k8s_patch_version }}"

Specify the k8s version you want to use. Set major, minor and patch of the k8s version.

k8s_repo: deb http://apt.kubernetes.io/ kubernetes-xenial main
debian: apt
k8s_apt_gpg_key_url: https://packages.cloud.google.com/{{ debian }}/doc/apt-key.gpg

Add the GPG key and repository for the kubeadm installation components.

join_token: vwz98a.hdnbzyrz1j55o7pe
discovery_token: ee5b14415d44accf054facafeebbfb7bb3e46a24671c23a7c6ec4a2c148fb296

Before rollout you need a working k8s-master node based on kubeadm installation. Add the join- kubeadm token list and discovery token ~/.discovery_token from your k8s-master node.

k8s_master_port: 6443
etcd_connection_port: 2379
etcd_raft_port: 2380
k8s_master_ip: 192.168.56.160
k8s_master_hostname: k8smaster
k8s_home: /root
k8s_user: root

Change the k8s-master ip for the etc/hosts entry and kubeadm join command.

k8s_components:
    - kubeadm={{ k8s_version }}-00
    - kubelet={{ k8s_version }}-00
    - kubectl={{ k8s_version }}-00

Installs the k8s components which will be needed on every node. The version you specified in default/main.yml.

Disable swap on host

- name: Disable swap
  shell: swapoff -a

- name: Disable swap permanently
  replace:
    path: /etc/fstab
    regexp: '^(\s*)([^#\n]+\s+)(\w+\s+)swap(\s+.*)$'
    replace: '#\1\2\3swap\4'
    backup: yes

Kubernetes nodes require to disable swap.

License

MIT

Author Information

This role was created in 2020 by Yannic Nevado.

About

Role for deploying a k8s worker node with kubeadm on Ubuntu 18.04

Install
ansible-galaxy install yanehi/ansible-role-k8sworker
GitHub repository
License
mit
Downloads
23
Owner
twitter: @nevado_yannic