Skip to content

xrow/kubeinit

 
 

Repository files navigation

The KUBErnetes INITiator

The KUBErnetes INITiator

What is KubeInit?

KubeInit provides Ansible playbooks and roles for the deployment and configuration of multiple Kubernetes distributions.

Mission

KubeInit's mission is to have a fully automated way to deploy in a single command a curated list of prescribed architectures based on the following principles (G.I.V.E.).

Guide new and experienced users and contributors to deploy quickly and easily Kubernetes clusters based on a set of prescribed architectures.

Incentivate new users and contributors to overcoming the learning curve to successfully deploy complex Kubernetes scenarios.

Verify automatically that the defined prescribed architectures work seamlessly.

Engage with the upstream community for giving and receiving feedback, and cross-pollination to spark and amplify creativity, serendipity, and interdisciplinary friction.

Documentation

KubeInit's documentation is hosted in this same repository.

KubeInit supported scenarios

K8s distribution: OKD

Driver: Libvirt

OS: CentOS/Fedora, Debian/Ubuntu

Requirements

  • A fresh deployed server with enough RAM and disk space (120GB in RAM and 300GB in disk) and CentOS 8 (it should work also in Fedora/Debian/Ubuntu hosts).
  • We assume that the hypervisor node is called nyctea (defined in the inventory).
  • Have root passwordless access with certificates.
  • Adjust the inventory file to suit your needs i.e. the worker nodes you will need in your cluster.

How to run

There are two ways of launching Kubeinit, directly using the ansible-playbook command, or by running it inside a container.

Directly executing the deployment playbook

The following example command will deploy a multi-master OKD 4.5 cluster with 1 worker node in a single command and in approximately 30 minutes.

git clone https://github.com/Kubeinit/kubeinit.git
cd kubeinit
ansible-playbook \
    --user root \
    -v -i ./hosts/okd/inventory \
    --become \
    --become-user root \
    ./playbooks/okd.yml

After provisioning any of the scenarios, you should have your environment ready to go. To connect to the nodes from the hypervisor use the IP addresses from the inventory files.

Running the deployment command from a container

The whole process is explained in the HowTo's. The following commands build a container image with the project inside of it, and then launches the container executing the ansible-playbook command with all the standard ansible-playbook parameters.

git clone https://github.com/Kubeinit/kubeinit.git
cd kubeinit
podman build -t kubeinit/kubeinit .

podman run --rm -it \
    -v ~/.ssh/id_rsa:/root/.ssh/id_rsa:z \
    -v /etc/hosts:/etc/hosts \
    kubeinit/kubeinit \
        --user root \
        -v -i ./hosts/okd/inventory \
        --become \
        --become-user root \
        ./playbooks/okd.yml

HowTo's and presentations

About

Ansible automation to have a KUBErnetes cluster INITialized as soon as possible...

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 63.9%
  • HTML 26.7%
  • Shell 8.6%
  • Dockerfile 0.8%