Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```