Skip to content

Ansible collection for configuring the Kubernetes cluster

License

Notifications You must be signed in to change notification settings

cankush625/kubernetescluster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ansible Collection - cankush625.kubernetescluster

This collection contains the roles for configuring the Kubernetes master and slave nodes. Currently, it supports Amazon Linux 2, Redhat Enterprise Linux and Ubuntu.

Roles

kube_master

This is the role for configuring Kubernetes master node. You can find more information about it in the roles/kube_master/README.md file.

kube_slave

This is the role for configuring Kubernetes slave node. You can find more information about it in the roles/kube_slave/README.md file.

Installation and Usage

Download and install this collection using following command

ansible-galaxy collection install cankush625.kubernetescluster

Example playbook for using kube_master role from this collection

- hosts: kube_master
  collections:
    - cankush625.kubernetescluster

  roles:
    - role: kube_master
      pod_network_cidr: 10.240.0.0/16
      owner: ec2-user
      group: ec2-user

Example playbook for using kube_slave role from this collection

- hosts: kube_slave
  collections:
    - cankush625.kubernetescluster

  roles:
    - role: kube_slave
      kube_join_command: "kubeadm join <YOUR_KUBE_MASTER_NODE_PRIVATE_IP>:6443 --token <YOUR_TOKEN>     --discovery-token-ca-cert-hash <YOUR_DISCOVERY_TOKEN_CERT_HASH> "

Tested on

This role is tested on following OS distributions:

  • Amazon Linux 2
  • RedHat Enterprise Linux v8
  • Ubuntu Server 20.04 LTS

Contribution

If you find any bug or want to do improvement in this collection, then find the source code for this collection here. Create an issue or open up a pull request and I will consider merging it, if it does what this collection is intended for.

License

MIT

Author

Ankush Chavan