> For the complete documentation index, see [llms.txt](https://docs.cloudeka.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cloudeka.ai/guidance-for-enterprise/service-limit/crds/cloudeka-resource.md).

# Cloudeka Resource

The **live billing mirror of a running Pod**. For every Pod you run, the platform keeps one of these showing its compute footprint and current hourly charge. It's created automatically when your Pod is admitted and removed automatically when the Pod is gone — you don't manage it directly.

```bash
kubectl get container -n <your-namespace>
kubectl get container -n <your-namespace> -o yaml
```

<table><thead><tr><th width="236.16668701171875">Field</th><th>Meaning</th></tr></thead><tbody><tr><td><code>status.kind</code></td><td>Workload kind (e.g. pod/deployment)</td></tr><tr><td><code>status.cpu</code></td><td>CPU currently in use</td></tr><tr><td><code>status.ram</code></td><td>RAM currently in use</td></tr><tr><td><code>status.gpu.&#x3C;model></code></td><td>GPU count in use, per model</td></tr><tr><td><code>status.nvaie</code></td><td>Whether NVAIE pricing applies</td></tr><tr><td><code>status.chargePerHour</code></td><td>Current hourly cost of this workload</td></tr><tr><td><code>status.status</code></td><td>Mirrors the Pod's phase: <code>Running</code>, <code>Pending</code>, or other</td></tr></tbody></table>

Find your most expensive running Pods:

```bash
kubectl get container -n <ns> --sort-by=.status.chargePerHour
```

Client-side sort; not all `kubectl` versions support this flag for CRDs — otherwise use `-o yaml` and inspect manually.

Confirm a Pod's cost matches expectations before leaving it running long-term.

{% hint style="warning" %}
This object is fully system-managed — it follows the Pod it mirrors. Deleting it directly does not stop billing or delete the Pod; delete the Pod instead.
{% endhint %}
