gitextract_aau8ld8h/ ├── .dockerignore ├── .github/ │ ├── CODEOWNERS │ ├── codecov.yml │ ├── dependabot.yml │ ├── mergify.yml │ ├── settings.yml │ └── workflows/ │ ├── ci-checks.sh │ ├── ci.yaml │ └── tags.yaml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── RELEASING.md ├── Tiltfile ├── cmd/ │ └── smee/ │ ├── backend.go │ ├── flag.go │ ├── flag_test.go │ └── main.go ├── contrib/ │ └── tag-release.sh ├── docker-compose.yml ├── docs/ │ ├── Backend-File.md │ ├── Code-Structure.md │ ├── DCO.md │ ├── DESIGN.md │ ├── DESIGNPHILOSOPHY.md │ ├── DHCP.md │ ├── Design-Philosophy.md │ ├── ISO-Static-IPAM.md │ ├── images/ │ │ └── BYO_DHCP.uml │ └── manifests/ │ ├── README.md │ ├── k3d.md │ ├── kind.md │ ├── kubernetes.md │ └── tilt.md ├── go.mod ├── go.sum ├── internal/ │ ├── backend/ │ │ ├── file/ │ │ │ ├── file.go │ │ │ ├── file_test.go │ │ │ └── testdata/ │ │ │ └── example.yaml │ │ ├── kube/ │ │ │ ├── error.go │ │ │ ├── index.go │ │ │ ├── index_test.go │ │ │ ├── kube.go │ │ │ └── kube_test.go │ │ └── noop/ │ │ ├── noop.go │ │ └── noop_test.go │ ├── dhcp/ │ │ ├── data/ │ │ │ ├── data.go │ │ │ └── data_test.go │ │ ├── dhcp.go │ │ ├── dhcp_test.go │ │ ├── handler/ │ │ │ ├── handler.go │ │ │ ├── proxy/ │ │ │ │ └── proxy.go │ │ │ └── reservation/ │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── noop.go │ │ │ ├── noop_test.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ └── reservation.go │ │ ├── otel/ │ │ │ ├── otel.go │ │ │ └── otel_test.go │ │ └── server/ │ │ ├── dhcp.go │ │ └── dhcp_test.go │ ├── ipxe/ │ │ ├── http/ │ │ │ ├── http.go │ │ │ ├── middleware.go │ │ │ ├── xff.go │ │ │ └── xff_test.go │ │ └── script/ │ │ ├── auto.go │ │ ├── auto_test.go │ │ ├── custom.go │ │ ├── hook.go │ │ ├── ipxe.go │ │ ├── ipxe_test.go │ │ └── static.go │ ├── iso/ │ │ ├── internal/ │ │ │ ├── LICENSE │ │ │ ├── acsii.go │ │ │ ├── acsii_test.go │ │ │ ├── context.go │ │ │ ├── reverseproxy.go │ │ │ └── reverseproxy_test.go │ │ ├── ipam.go │ │ ├── ipam_test.go │ │ ├── iso.go │ │ ├── iso_test.go │ │ └── testdata/ │ │ └── output.iso │ ├── metric/ │ │ └── metric.go │ ├── otel/ │ │ └── otel.go │ └── syslog/ │ ├── facility_string.go │ ├── message.go │ ├── receiver.go │ └── severity_string.go ├── lint.mk ├── rules.mk └── test/ ├── Dockerfile ├── busybox-udhcpc-script.sh ├── extract-traceparent-from-opt43.sh ├── hardware.yaml ├── otel-collector.yaml ├── start-smee.sh └── test-smee.sh