Repo cleanup

- Splited configs with and without unbound
- Removed unnecessary karg file
- Removed environment variable to make nano the default editor
- Removed gvisor KVM runtime
- No longer block dhcpv6-client: DHCP6 can be done securely in a Proxmox environment

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy
2025-06-02 04:18:35 -07:00
parent 44f68f326e
commit 931620b545
8 changed files with 329 additions and 55 deletions

View File

@@ -0,0 +1,24 @@
{
"default-runtime": "runsc-systrap",
"runtimes": {
"runsc-systrap": {
"path": "/usr/local/bin/runsc",
"runtimeArgs": [
"--platform=systrap",
"--network=host"
]
},
"runsc-systrap --host-uds=open": {
"path": "/usr/local/bin/runsc",
"runtimeArgs": [
"--platform=systrap",
"--network=host",
"--host-uds=open"
]
}
},
"default-address-pools": [
{ "base": "242.242.0.0/16", "size": 24 }
],
"dns" : [ "242.242.0.1" ]
}

View File

@@ -1,13 +1,6 @@
{
"default-runtime": "runsc-systrap",
"runtimes": {
"runsc-kvm": {
"path": "/usr/local/bin/runsc",
"runtimeArgs": [
"--platform=kvm",
"--network=host"
]
},
"runsc-systrap": {
"path": "/usr/local/bin/runsc",
"runtimeArgs": [
@@ -15,14 +8,6 @@
"--network=host"
]
},
"runsc-kvm --host-uds=open": {
"path": "/usr/local/bin/runsc",
"runtimeArgs": [
"--platform=kvm",
"--network=host",
"--host-uds=open"
]
},
"runsc-systrap --host-uds=open": {
"path": "/usr/local/bin/runsc",
"runtimeArgs": [
@@ -31,9 +16,5 @@
"--host-uds=open"
]
}
},
"default-address-pools": [
{ "base": "242.242.0.0/16", "size": 24 }
],
"dns" : [ "242.242.0.1" ]
}
}