Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lvthillo/vagrant-ansible-kubernetes
Combination of Vagrant and Ansible to spin up a Kubernetes cluster
https://github.com/lvthillo/vagrant-ansible-kubernetes
ansible kubernetes vagrant
Last synced: 28 days ago
JSON representation
Combination of Vagrant and Ansible to spin up a Kubernetes cluster
- Host: GitHub
- URL: https://github.com/lvthillo/vagrant-ansible-kubernetes
- Owner: lvthillo
- License: apache-2.0
- Created: 2019-03-18T19:19:16.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-30T19:20:14.000Z (7 months ago)
- Last Synced: 2024-11-18T02:18:32.604Z (about 1 month ago)
- Topics: ansible, kubernetes, vagrant
- Size: 24.4 KB
- Stars: 62
- Watchers: 8
- Forks: 42
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vagrant-ansible-kubernetes
Combination of Vagrant and Ansible to spin up a Kubernetes cluster### Prerequisites
- Vagrant
- Ansible### Define amount of nodes
in Vagrantfile:
```
N = 2
```### Spin up cluster
```
$ vagrant up
```### Verify on master
```
$ vagrant ssh k8s-master
$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
k8s-master Ready control-plane,master 5m6s v1.23.0
node-1 Ready 2m59s v1.23.0
node-2 Ready 68s v1.23.0
```