kedge/k8s/configmap-underlay.yaml
Tyler King 6058e62348 Initial commit: Kedge network automation platform
Go-based network automation with YANG models, gRPC, Ansible,
Terraform, and Kubernetes integration.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 12:09:30 -05:00

33 lines
790 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: kedge-underlay
namespace: kedge
data:
device-inventory.json: |
{
"devices": [
{
"name": "fortigate.transit.local",
"type": "fortios",
"address": "172.16.0.2",
"sdk": "fortiosapi",
"managed_zones": ["transit", "tyler-lab", "dmz"]
},
{
"name": "vyos.transit.local",
"type": "vyos",
"address": "172.16.0.3",
"sdk": "ncclient",
"managed_zones": ["transit"]
},
{
"name": "udr7.local",
"type": "unifi",
"address": "192.168.1.1",
"sdk": "unifi-api",
"managed_zones": ["roommate", "shared"]
}
]
}
yang-site-config: "homelab"