Argo Workflows · JSON Structure

Argo Workflows Io K8S Api Core V1 Resource Claim Structure

ResourceClaim references one entry in PodSpec.ResourceClaims.

Type: object Properties: 2 Required: 1
CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

io.k8s.api.core.v1.ResourceClaim is a JSON Structure definition published by Argo Workflows, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name request

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-structure/argo-workflows-io-k8s-api-core-v1-resource-claim-structure.json",
  "name": "io.k8s.api.core.v1.ResourceClaim",
  "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.",
      "type": "string"
    },
    "request": {
      "description": "Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ]
}