e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
1.0 KiB
1.0 KiB
Kubernetes deployment foundation (alpha)
This package is the first opt-in Kubernetes foundation for the Go Micro lifecycle:
Service, Agent, and Flow resources. It is intentionally experimental and
additive. Nothing in the Go Micro runtime installs these resources or changes
production defaults.
What is included
- Alpha CRD manifests in
config/crd/foragents.micro.dev,services.micro.dev, andflows.micro.dev. - A small dependency-free mapper that turns a desired Go Micro resource into the
Kubernetes
Deploymentshape an operator reconciliation loop will own. - Unit tests that validate the structural CRD fragments and dry-run the Agent-to-Deployment mapping.
Local validation
go test ./deploy/kubernetes
If you have a Kubernetes cluster and kubectl available, you can also perform a
server-side dry run of the CRDs:
kubectl apply --dry-run=server -f deploy/kubernetes/config/crd/
The manifests are v1alpha1; expect the API shape to evolve before this becomes
a production operator.