Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tjjh89017/vyos-on-k8s
https://github.com/tjjh89017/vyos-on-k8s
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tjjh89017/vyos-on-k8s
- Owner: tjjh89017
- License: apache-2.0
- Created: 2024-06-10T07:25:17.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-04T12:18:59.000Z (3 months ago)
- Last Synced: 2024-08-04T14:20:02.637Z (3 months ago)
- Language: Shell
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vyos-on-k8s
WARNING!!!
This is a PoC only.
The code is unstable.## Build VyOS KVM image
1. Clone `vyos-build` from github [vyos-build](https://github.com/vyos/vyos-build)
2. put the following yaml file with named `kvm.yaml` in `vyos-build/data/build-flavors/`
3. Run build VyOS command for kvm with the [docs](https://docs.vyos.io/en/latest/contributing/build-vyos.html)
4. You will get `build/vyos-1.5-rolling-202406050831-kvm-amd64.qcow2`, and copy that qcow2 file to the vyos-on-k8s folder.
5. Build VyOS-on-K8s image with Docker and change the image name in `vyos.yaml`
6. Deploy `vyos.yaml` for your cluster.```yaml
# VyOS image for generic KVM
# In short, a qcow2 image for KVM with serial consoleimage_format = "qcow2"
image_opts = "-c"disk_size = 4
packages = ["qemu-guest-agent"]
# GRUB console settings
[boot_settings]
console_type = "ttyS"
console_num = '0'
console_speed = "115200"
```