Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c9s/vagrant-kubeadm
Vagrant for kubeadm
https://github.com/c9s/vagrant-kubeadm
kubeadm kubernetes vagrant
Last synced: 4 months ago
JSON representation
Vagrant for kubeadm
- Host: GitHub
- URL: https://github.com/c9s/vagrant-kubeadm
- Owner: c9s
- Created: 2018-01-07T10:59:40.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-08T04:23:13.000Z (about 7 years ago)
- Last Synced: 2024-04-14T03:02:31.823Z (10 months ago)
- Topics: kubeadm, kubernetes, vagrant
- Language: Shell
- Size: 14.6 KB
- Stars: 7
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kubeadm-ready Vagrant
## Setting up
```
vagrant plugin install vagrant-hostmanger
```### Vagrant Up
```
vagrant up
```### Vagrant Up Nodes separately
```
vagrant up master
vagrant up node-1
vagrant up node-1
```### Connecting to the nodes
```
vagrant ssh master
vagrant ssh node-1
```## Trouble Shooting
1. For people encounterred the follow issue:
```
The machine with the name 'default' was not found configured for this Vagrant
environment.
```Run the following command to prune the status:
```
vagrant global-status --prune
```