eoc-byok-agent)Author: Vinay Manchikatla
Version: v1.0.0
Status: Production Runtime Component (Minimal DX & Inlets Uplink Standard)
The eoc-byok-agent is a lightweight, containerized Customer-Side Agent / Controller designed to run inside customer-owned Kubernetes clusters (AWS EKS, Azure AKS, Google GKE, or On-Premises).
Installed via a minimal helm install command, it automates cluster onboarding into the RadiantOne Environment Operational Center (EOC), enabling central GitOps deployment of RadiantOne identity workloads (FID/IDDM, IDA, and Observability) into isolated customer namespaces following radiant-<tenant-slug>-<env-slug>.
eoc.controlPlaneUrl (WHERE) and agent.registrationToken (AUTHORIZATION).inlets-pro uplink client to open an outbound WebSocket tunnel to the EOC Inlets Uplink Gateway. Customer firewalls open 0 inbound ports.inlets-pro license key lives 100% inside Radiant Logic's EOC Control Plane (AWS KMS). Zero license keys are passed to customer environments.argocd-manager has no cluster-wide namespace discovery rights; workload access is granted per environment namespace by EOC Provisioner RoleBindings.radiant-<tenant-slug>-<env-slug> (lowercase), for example radiant-ans-en01.To register your Kubernetes cluster with RadiantOne EOC, copy and run the command from the EOC UI:
helm install eoc-byok-agent oci://ghcr.io/radiantlogic-v8/helm-charts/eoc-byok-agent \
--version 1.0.0 \
--namespace radiant-system \
--create-namespace \
--set eoc.controlPlaneUrl="https://eoc-us-east-01.radiantlogic.com" \
--set agent.registrationToken="YOUR_EPHEMERAL_REGISTRATION_TOKEN"
radiant-system is the recommended install namespace for consistency. Custom install namespaces are supported.
Check that the agent pod is running cleanly in your cluster:
kubectl get pods -n radiant-system
Expected Output:
NAME READY STATUS RESTARTS AGE
eoc-byok-agent-7f9b8c6d4-x2p8n 1/1 Running 0 15s
values.yaml)| Parameter | Description | Default |
|---|---|---|
agent.image.repository | Docker container image repository | radiantlogic/eoc-byok-agent |
agent.image.tag | Container image tag | v1.0.0 |
agent.registrationToken | Ephemeral registration token generated in EOC UI | "" |
eoc.controlPlaneUrl | EOC Control Plane Backend API endpoint (mandatory at install) | "" |
eoc.tunnelUrl | Inlets Uplink WSS base URL | wss://uplink-us-east-01.radiantlogic.com/tunnels/ |
eoc.insecureTLS | Skip TLS certificate verification (Dev testing) | false |
rbac.namespacePrefix | Production namespace prefix scoping rule | radiant- |
serviceAccount.name | Agent ServiceAccount name | eoc-agent-controller |
serviceAccount.argoSAName | ArgoCD ServiceAccount name in customer cluster | argocd-manager |
resources.limits.cpu | CPU resource limit for agent container | 100m |
resources.limits.memory | Memory resource limit for agent container | 128Mi |
┌─────────────────────────────────────────────────────────────────────────────┐
│ EOC AGENT EXECUTION LIFECYCLE (UPLINK) │
├─────────────────────────────────────────────────────────────────────────────┤
│ 1. User runs `helm install eoc-byok-agent ...` │
│ 2. Agent Pod starts in install namespace (recommended: `radiant-system`). │
│ 3. Agent generates local RSA/ECDSA keypair (Private key stays in K8s). │
│ 4. Agent calls EOC Handshake API -> EOC calls Uplink REST API (/v1/tunnels) │
│ 5. EOC Backend returns dedicated per-cluster TUNNEL_TOKEN. │
│ 6. Agent executes `inlets-pro uplink client` dialing outbound WSS (:443). │
│ 7. Inlets Uplink Gateway validates token & authorizes tunnel (Server-side). │
│ 8. ArgoCD deploys FID/IDA workloads down the pipe into radiant-<tenant>-<env>. │
│ 9. Background ticker pings EOC every 30s (`POST /api/v1/clusters/heartbeat`). │
└─────────────────────────────────────────────────────────────────────────────┘
Enterprise security teams retain 100% sovereignty and can revoke RadiantOne EOC access instantly without contacting Radiant Logic:
kubectl delete namespace <agent-namespace> to remove the agent pod and local credentials immediately.eoc.radiantlogic.com:443 at the corporate perimeter firewall.# Build Go binary locally
make build
# Run unit tests
make test
# Build Docker image
make docker-build
# Lint Helm chart
make helm-lint
# Package Helm chart
make helm-package
# Push Helm chart to GHCR OCI
make helm-push
# Push Docker image to Docker Hub
make docker-push
Copyright © 2026 Radiant Logic, Inc. All rights reserved.
For technical support or architecture inquiries, contact the EOC Architecture Team at [email protected].
Content type
Image
Digest
sha256:f6c35d567…
Size
20 MB
Last updated
3 days ago
docker pull radiantone/eoc-byok-agent