kubernetes-cluster
Kubernetes is an open source system for managing containerized applications across multiple hosts; providing basic mechanisms for deployment, maintenance, and scaling of applications.
Requires Docker; recommended role for Docker installation:Kubernets-Docker-Install.yml
Available variables are listed below, along with default values (see defaults/main.yml):
pod_net_cidr:10.244.0.0/16
set ansible inventory like this
[master]
10.0.12.1
[node]
10.0.12.2
hosts: master,node
remote_user: root
roles:
hosts: master
remote_user: root
vars_files:
hosts: node
remote_user: root
tasks:
BSD
Khushal Bisht