Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hi120ki/vagrant-k8s-cilium
A demo to run k8s with cilium on vagrant
https://github.com/hi120ki/vagrant-k8s-cilium
cilium kubernetes vagrant
Last synced: 26 days ago
JSON representation
A demo to run k8s with cilium on vagrant
- Host: GitHub
- URL: https://github.com/hi120ki/vagrant-k8s-cilium
- Owner: hi120ki
- License: mit
- Created: 2022-10-29T03:09:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T03:10:35.000Z (8 months ago)
- Last Synced: 2024-04-30T11:48:42.501Z (8 months ago)
- Topics: cilium, kubernetes, vagrant
- Language: Shell
- Homepage:
- Size: 57.6 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vagrant-k8s-cilium
A demo to run k8s with cilium on vagrant (with [cilium L2 Announcements](https://docs.cilium.io/en/latest/network/l2-announcements/))
## Quick start
```
vagrant up
```## Requirements
- virtualbox-7.0
- vagrant### Install requirements
- virtualbox-7.0
```
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib"
sudo apt update
sudo apt install virtualbox-7.0
```- vagrant
```
wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install vagrant
```