-
Notifications
You must be signed in to change notification settings - Fork 1
Advanced Operations
This page covers WorkerBee features that are useful once the basic local loop is working.
WorkerBee supports:
-
auto: select an available runtime. -
podman: use Podman. -
docker: use Docker. -
containerd: advanced direct-containerd mode.
Examples:
workerbee --runtime podman mcp restart
workerbee --runtime docker mcp restart
workerbee --runtime containerd profile listPersist defaults for the local user:
workerbee config set --runtime podman
workerbee config show
workerbee config clearWorkerBee MCP binds to loopback by default. Non-loopback MCP binds are refused unless explicitly allowed:
workerbee mcp serve --host 0.0.0.0 --allow-remote-mcpUse this only for controlled local-network transport testing. WorkerBee does not yet implement standards-compliant remote MCP authorization.
LAN ingress is separate from remote MCP. You can expose app ingress to the LAN while keeping MCP on loopback:
workerbee mcp restart --ingress-exposure lanDirect containerd workflows may need elevated access to the containerd socket and CNI resources. Inspect current state:
workerbee --runtime containerd containerd-privilege statusStart commands with an explicit strategy:
workerbee --runtime containerd --containerd-privilege sudo-helper profile list
workerbee --runtime containerd --containerd-privilege unprivileged profile listStop the helper when it is no longer needed:
workerbee --runtime containerd containerd-privilege stop-helperRevoke deprecated ACL leases:
workerbee --runtime containerd containerd-privilege revoke-acl-leasesWorkerBee can deploy staged manifests to a remote k1s server:
workerbee manifest deploy-k1s \
--stage app \
--server https://k1s.example.internal:6443 \
--token "$K1S_TOKEN" \
--namespace demoRemote deploy fails closed for native k1s secretRef values by default because
the referenced secret paths resolve on the remote controller. Opt in only when
the remote environment is prepared:
workerbee manifest deploy-k1s \
--stage app \
--server https://k1s.example.internal:6443 \
--token "$K1S_TOKEN" \
--allow-remote-secretrefsExport native k1s:
workerbee bundle export --stage app --format k1sExport practical Kubernetes YAML:
workerbee bundle export --stage app --format k8sExport a Helm skeleton:
workerbee bundle export --stage app --format helmExports preserve Secret references but not Secret values. Create environment-specific Secret objects before applying exported Kubernetes or Helm artifacts.
Assess staged manifests, generated exports, and optional runtime ingress:
workerbee security assess --stage appReview a deployed project:
workerbee security review-project --stage appSecurity checks are advisory and should feed code review, not replace it.
Capture status:
workerbee mcp status --json
workerbee ingress status --json
workerbee projects --jsonProbe ingress through WorkerBee MCP when possible. Agents should use
workerbee_v1_ingress_probe because it knows the WorkerBee CA, host routing,
and project scope.
Use workerbee_v1_ingress_status to discover active CA commands, DNS details,
base domain, and readiness before asking a user to configure another device.