🌐
Kubernetes
kubernetes.io › blog › 2019 › 03 › 15 › kubernetes-setup-using-ansible-and-vagrant
Kubernetes Setup Using Ansible and Vagrant | Kubernetes
January 3, 2026 - Installation binaries can be found here. Oracle VirtualBox can be used as a Vagrant provider or make use of similar providers as described in Vagrant's official documentation. Ansible should be installed in your machine.
🌐
GitHub
github.com › torgeirl › kubernetes-playbooks
GitHub - torgeirl/kubernetes-playbooks: Ansible playbooks for setting up a Kubernetes cluster · GitHub
Ansible playbooks that creates a Kubernetes 1.29 cluster of Openstack instances running Ubuntu 22.04 LTS. Ansible and Python3 installed on the local machine (# yum install ansible).
Starred by 107 users
Forked by 66 users
Languages   HCL
🌐
HOSTAFRICA
hostafrica.com › home › automate kubernetes cluster deployment with ansible on centos stream 8
Automate Kubernetes with Ansible - HOSTAFRICA
January 21, 2026 - It’s automation software that allows users to provision hosts, configure environments, install packages, deploy applications, and perform many other administrative and management tasks. In this article, we use Ansible playbooks to set up a Kubernetes cluster on CentOS Stream 8, with one master ...
🌐
Kubeclusters
kubeclusters.com › docs › How-to-Deploy-a-Single-Master-Kubernetes-Cluster-with-Ansible
How to Deploy a single master Kubernetes cluster with Ansible | Kube Clusters Documentation
$ apt-get install git python-pip -y $ pip install pip --upgrade $ pip install --no-cache-dir ansible ... 5.Modify the Ansible inventory file/etc/ansible/hosts to fit your environment. Usually you need to replace server’s IP addresses and its interface name.
🌐
TauCeti
tauceti.blog › posts › kubernetes-the-not-so-hard-way-with-ansible-the-basics
Kubernetes the not so hard way with Ansible - The basics - (K8s v1.28) - TauCeti blog
January 1, 2024 - But in general you should be able to use the Ansible roles mentioned here with minor or no modifications for other ISP e.g. Scaleway or Digital Ocean. I’ll only test this with Ubuntu 20.04 and 22.04. But with no/minimal modifications it should work with all systemd based Linux operating systems. I used Kelsey Hightower’s wonderful guide Kubernetes the hard way as starting point. My goal is to install a Kubernetes cluster with Ansible which could be used in production and is maintainable.
🌐
Spacelift
spacelift.io › blog › ansible-kubernetes
How to Manage Kubernetes with Ansible [Tutorial]
October 10, 2025 - To have Ansible run against a Kubernetes cluster, you will need the following setup before we continue. ... Please note that I will be using the Debian OS family (apt) for my examples. However, the same should work for any other Linux distribution. On your Ansible Control node, run the following to install Kubernetes Collection (this includes the module and plugins):
Find elsewhere
🌐
YouTube
youtube.com › watch
Kubernetes Cluster Installation using Ansible - YouTube
Learn how to use Ansible to install Kubernetes cluster. Installing kubernetes cluster using automation is how the real setup are done. Basic understanding of...
Published   May 1, 2020
🌐
GitHub
github.com › kairen › kubeadm-ansible
GitHub - kairen/kubeadm-ansible: Build a Kubernetes cluster using kubeadm via Ansible.
Build a Kubernetes cluster using Ansible with kubeadm. The goal is easily install a Kubernetes cluster on machines running:
Starred by 741 users
Forked by 381 users
Languages   Jinja 99.4% | Shell 0.6% | Jinja 99.4% | Shell 0.6%
🌐
OneUptime
oneuptime.com › home › blog › how to use ansible to install kubernetes packages
How to Use Ansible to Install Kubernetes Packages
February 21, 2026 - Step-by-step guide to installing kubeadm, kubelet, and kubectl on Ubuntu and RHEL systems using Ansible, including prerequisite configuration and cluster bootstrapping.
🌐
GitHub
gist.github.com › allanger › 84db2647578316f8e721f7219052788f
Deploy Kubernetes with Ansible · GitHub
- name: Install kubectl. package: name: kubectl state: present when: node_type == 'master' Create a file, for example hosts.yaml (you should read about ansible inventory files for better understanding)
🌐
Lorenzo Garuti
garutilorenzo.github.io › ansible-role-kubernetes-cluster
Install and configure a high available Kubernetes cluster with Ansible
August 17, 2022 - This ansible role will install and configure a high available Kubernetes cluster. This repo automate the installation process of Kubernetes using kubeadm.
🌐
GitHub
github.com › geerlingguy › ansible-role-kubernetes
GitHub - geerlingguy/ansible-role-kubernetes: Ansible Role - Kubernetes · GitHub
An Ansible Role that installs Kubernetes on Linux.
Starred by 621 users
Forked by 284 users
Languages   Jinja
🌐
Medium
medium.com › @venkataramarao.n › kubernetes-setup-using-ansible-script-8dd6607745f6
Kubernetes setup using Ansible script | by Venkata RamaRao Nibhanupudi | Medium
May 2, 2024 - 1. Create an Ansible playbook: Create an Ansible playbook (e.g., kubernetes-cluster.yml) that defines the tasks to set up your Kubernetes cluster. Here's a basic playbook: --- - hosts: master become: yes tasks: - name: Install Docker apt: name: ...
🌐
Medium
medium.com › @martin.hodges › installing-kubernetes-from-the-new-k8s-io-repository-using-ansible-8e7319fa97fd
Installing Kubernetes from the new k8s.io repository using Ansible | by Martin Hodges | Medium
March 10, 2024 - Using ansible, the public key can be installed with: - name: Get Kubernetes package key shell: curl -fsSL {{ k8s_url_apt_key }} | gpg --dearmor -o {{ k8s_gpgpath }} args: creates: "{{ k8s_gpgpath }}"
🌐
Infotechys
infotechys.com › home › install kubernetes using ansible on ubuntu 24.04
Install Kubernetes Using Ansible on Ubuntu 24.04 - Infotechys.com
April 27, 2025 - Learn how to install Kubernetes using Ansible on Ubuntu 24.04. This comprehensive guide covers prerequisites, setup, and configuration, ...