Overview
With the operator installed, you can:- Define resources as YAML - Create GVCs, workloads, secrets, and other resources as CRD manifests
- Enable GitOps - Store your infrastructure in Git and deploy automatically with ArgoCD
- Maintain consistency - Keep your Kubernetes and Control Plane resources in sync
Supported resources
The operator manages the following Control Plane resource types through CRDs:| Resource | Description |
|---|---|
gvc | Global Virtual Cloud - groups workloads and defines deployment locations |
workload | Application containers running on Control Plane |
identity | Grants workloads access to cloud resources and private networks |
secret | Encrypted storage for credentials and sensitive data |
policy | Grants permissions to principals on target resources |
volumeset | Persistent storage with snapshots and auto-scaling |
domain | Custom domain mapping with TLS and geo-routing |
cloudaccount | Cloud provider integrations (AWS, GCP, Azure, NGS) |
agent | Secure connectivity to private networks |
group | Membership collection of users and service accounts |
serviceaccount | Machine identity for headless API operations |
ipset | Reserved public IP addresses for workloads |
mk8s | Managed Kubernetes clusters across cloud providers |
auditctx | Tamper-proof audit trail for tracking actions |
Key concepts
CRD structure
CRD structure
Control Plane CRDs differ from standard Kubernetes resources. Fields like Always use the export feature to generate accurate manifests.
org, gvc, and description are at the top level, not inside spec:Secrets handling
Secrets handling
Secrets use native Kubernetes Secret objects with a special label:The
app.kubernetes.io/managed-by: cpln-operator label is required for the operator to manage the secret.Deletion protection
Deletion protection
Deleting a CRD removes the corresponding resource from Control Plane. To prevent this, add the Resources with this annotation remain in Control Plane even when deleted from Kubernetes.
cpln.io/resource-policy: keep annotation:Get started
Ready to set up the operator? Follow our step-by-step installation guide:Install the Kubernetes Operator
Complete guide covering cert-manager installation, Helm deployment, authentication setup, and deploying your first resources
Exporting resources as CRDs
You don’t have to write CRD manifests from scratch. Control Plane provides built-in tools to export any resource in Kubernetes CRD format.- Console UI
- CLI
Export existing resources:Select any resource and click the Export dropdown in the upper right corner, then choose K8s CRD to download the manifest.Preview before creating:When creating a new resource, configure it using the UI, then click Preview and select K8s CRD. This generates the manifest without deploying the resource—perfect for storing in Git and deploying via ArgoCD.