Cloudeka Tenant
kubectl get tenant -n <your-namespace>
kubectl get tenant -n <your-namespace> -o yamlField
Where
Meaning
Last updated

Your tenant/billing account record — organization, project, billing model, and your current balance. This is the single object to check first for "where do I stand."
kubectl get tenant -n <your-namespace>
kubectl get tenant -n <your-namespace> -o yamlspec.organization
spec
Your organization identifier
spec.project
spec
Your project identifier
spec.billingType
spec
prepaid or postpaid
spec.chargeType
spec
hourly or monthly/fixed
status.balance
status
Your current balance (credit if prepaid, debt if postpaid)
status.updatedAt
status
When the balance was last recalculated
See Quota & Limits for what billing/charge type combinations mean for how you're checked, and Billing & Balance for how the balance moves.
Don't hand-edit spec.billingType/spec.chargeType — changing your billing model is a platform-team action, since it also changes how admission checks treat your workloads.
Last updated