Xeonr Developer Docs
API SpecificationNamespaces

CreateNamespace

POST
/containers.api.v1.NamespaceService/CreateNamespace

Authorization

BearerAuth
AuthorizationBearer <token>

A namespace-scoped API key (cpk_…) for machines, or a Xeonr Auth OIDC token for humans. The key's namespace and role are pinned server-side.

In: header

Header Parameters

Connect-Protocol-Version*number

Define the version of the Connect protocol

Value in1
Connect-Timeout-Ms?number

Define the timeout, in ms

Request Body

application/json

namespace?string
displayName?string
groups?
defaultLimits?

Resources is the compute envelope for a sandbox or job. Maps onto k8s requests==limits and the Docker resource knobs.

quotaCpuMillis?integer
quotaMemoryMb?integer
quotaMaxPods?integer
internalTargets?
imagePullSecrets?image_pull_secrets
[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://containers.xeonr.io/containers.api.v1.NamespaceService/CreateNamespace" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{}'
{
  "namespace": {
    "namespace": "string",
    "displayName": "string",
    "k8sRunnerNamespace": "string",
    "groups": [
      {
        "oidcGroup": "string",
        "role": "ROLE_UNSPECIFIED"
      }
    ],
    "defaultLimits": {
      "cpuMillis": 0,
      "memoryMb": 0,
      "ephemeralMb": 0,
      "pids": 0
    },
    "quotaCpuMillis": 0,
    "quotaMemoryMb": 0,
    "quotaMaxPods": 0,
    "internalTargets": [
      {
        "host": "string",
        "port": 0
      }
    ],
    "imagePullSecrets": [
      "string"
    ]
  }
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}