OpenAPI references
Plugin API spec
Please find the sidecar OpenAPI JSON spec can be found here.
interLink sidecar (v0.0.0)
Download OpenAPI specification:Download
openapi spec for interLink apis <-> provider sidecar communication
Create Pod
Request Body schema: application/jsonrequired
Array
required | object (PodRequest) |
required | Array of objects (Container) |
Responses
Request samples
- Payload
Content type
application/json
[- {
- "pod": {
- "metadata": {
- "name": "string",
- "namespace": "string",
- "uid": "string",
- "annotations": { },
- "labels": { },
- "generate_name": "string"
}, - "spec": {
- "containers": [
- {
- "name": "string",
- "image": "string",
- "tag": "latest",
- "command": [
- "string"
], - "args": [ ],
- "resources": { },
- "volume_mounts": [ ],
- "env": [
- {
- "name": "string",
- "value": "string",
- "value_from": {
- "config_map_key_ref": {
- "key": null,
- "name": null,
- "optional": null
}, - "secret_key_ref": {
- "key": null,
- "name": null,
- "optional": null
}
}
}
], - "security_context": {
- "allow_privilege_escalation": true,
- "privileged": true,
- "proc_mount": "string",
- "read_only_file_system": true,
- "run_as_group": 0,
- "run_as_non_root": true,
- "run_as_user": 0
}
}
], - "init_containers": [
- {
- "name": "string",
- "image": "string",
- "tag": "latest",
- "command": [
- "string"
], - "args": [ ],
- "resources": { },
- "volume_mounts": [ ],
- "env": [
- {
- "name": "string",
- "value": "string",
- "value_from": {
- "config_map_key_ref": {
- "key": null,
- "name": null,
- "optional": null
}, - "secret_key_ref": {
- "key": null,
- "name": null,
- "optional": null
}
}
}
], - "security_context": {
- "allow_privilege_escalation": true,
- "privileged": true,
- "proc_mount": "string",
- "read_only_file_system": true,
- "run_as_group": 0,
- "run_as_non_root": true,
- "run_as_user": 0
}
}
], - "volumes": [
- {
- "name": "string",
- "empty_dir": { },
- "secret": {
- "secret_name": "string",
- "items": [ ],
- "optional": true,
- "default_mode": 0
}, - "config_map": {
- "name": "string",
- "items": [ ],
- "optional": true,
- "default_mode": 0
}
}
], - "preemption_policy": "string",
- "priority_class_name": "string",
- "priority": 0,
- "restart_policy": "string",
- "termination_grace_period_seconds": 0
}
}, - "container": [
- {
- "name": "string",
- "config_maps": [
- {
- "metadata": {
- "name": "string",
- "namespace": "string",
- "uid": "string",
- "annotations": { },
- "labels": { },
- "generate_name": "string"
}, - "data": { },
- "binary_data": { },
- "type": "string",
- "immutable": true
}
], - "secrets": [
- {
- "metadata": {
- "name": "string",
- "namespace": "string",
- "uid": "string",
- "annotations": { },
- "labels": { },
- "generate_name": "string"
}, - "data": { },
- "string_data": { },
- "type": "string",
- "immutable": true
}
], - "empty_dirs": [
- "string"
]
}
]
}
]
Response samples
- 200
- 422
Content type
application/json
{- "pod_uid": "string",
- "pod_jid": "string"
}
Delete Pod
Request Body schema: application/jsonrequired
required | object (Metadata) |
required | object (PodSpec) |
Responses
Request samples
- Payload
Content type
application/json
{- "metadata": {
- "name": "string",
- "namespace": "string",
- "uid": "string",
- "annotations": { },
- "labels": { },
- "generate_name": "string"
}, - "spec": {
- "containers": [
- {
- "name": "string",
- "image": "string",
- "tag": "latest",
- "command": [
- "string"
], - "args": [ ],
- "resources": { },
- "volume_mounts": [ ],
- "env": [
- {
- "name": "string",
- "value": "string",
- "value_from": {
- "config_map_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "secret_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "security_context": {
- "allow_privilege_escalation": true,
- "privileged": true,
- "proc_mount": "string",
- "read_only_file_system": true,
- "run_as_group": 0,
- "run_as_non_root": true,
- "run_as_user": 0
}
}
], - "init_containers": [
- {
- "name": "string",
- "image": "string",
- "tag": "latest",
- "command": [
- "string"
], - "args": [ ],
- "resources": { },
- "volume_mounts": [ ],
- "env": [
- {
- "name": "string",
- "value": "string",
- "value_from": {
- "config_map_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "secret_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "security_context": {
- "allow_privilege_escalation": true,
- "privileged": true,
- "proc_mount": "string",
- "read_only_file_system": true,
- "run_as_group": 0,
- "run_as_non_root": true,
- "run_as_user": 0
}
}
], - "volumes": [
- {
- "name": "string",
- "empty_dir": { },
- "secret": {
- "secret_name": "string",
- "items": [ ],
- "optional": true,
- "default_mode": 0
}, - "config_map": {
- "name": "string",
- "items": [ ],
- "optional": true,
- "default_mode": 0
}
}
], - "preemption_policy": "string",
- "priority_class_name": "string",
- "priority": 0,
- "restart_policy": "string",
- "termination_grace_period_seconds": 0
}
}
Response samples
- 200
- 422
Content type
application/json
"string"
Status Pod
Request Body schema: application/jsonrequired
Array
required | object (Metadata) |
required | object (PodSpec) |
Responses
Request samples
- Payload
Content type
application/json
[- {
- "metadata": {
- "name": "string",
- "namespace": "string",
- "uid": "string",
- "annotations": { },
- "labels": { },
- "generate_name": "string"
}, - "spec": {
- "containers": [
- {
- "name": "string",
- "image": "string",
- "tag": "latest",
- "command": [
- "string"
], - "args": [ ],
- "resources": { },
- "volume_mounts": [ ],
- "env": [
- {
- "name": "string",
- "value": "string",
- "value_from": {
- "config_map_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "secret_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "security_context": {
- "allow_privilege_escalation": true,
- "privileged": true,
- "proc_mount": "string",
- "read_only_file_system": true,
- "run_as_group": 0,
- "run_as_non_root": true,
- "run_as_user": 0
}
}
], - "init_containers": [
- {
- "name": "string",
- "image": "string",
- "tag": "latest",
- "command": [
- "string"
], - "args": [ ],
- "resources": { },
- "volume_mounts": [ ],
- "env": [
- {
- "name": "string",
- "value": "string",
- "value_from": {
- "config_map_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "secret_key_ref": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "security_context": {
- "allow_privilege_escalation": true,
- "privileged": true,
- "proc_mount": "string",
- "read_only_file_system": true,
- "run_as_group": 0,
- "run_as_non_root": true,
- "run_as_user": 0
}
}
], - "volumes": [
- {
- "name": "string",
- "empty_dir": { },
- "secret": {
- "secret_name": "string",
- "items": [ ],
- "optional": true,
- "default_mode": 0
}, - "config_map": {
- "name": "string",
- "items": [ ],
- "optional": true,
- "default_mode": 0
}
}
], - "preemption_policy": "string",
- "priority_class_name": "string",
- "priority": 0,
- "restart_policy": "string",
- "termination_grace_period_seconds": 0
}
}
]
Response samples
- 200
- 422
Content type
application/json
[- {
- "name": "string",
- "uid": "string",
- "namespace": "string",
- "containers": [
- {
- "name": "string",
- "state": {
- "terminated": {
- "exit_code": 0,
- "reason": "string"
}, - "running": {
- "started_at": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
]
}
]
Get Logs
Request Body schema: application/jsonrequired
namespace required | string (Namespace) |
pod_uid required | string (Pod Uid) |
pod_name required | string (Pod Name) |
container_name required | string (Container Name) |
required | object (LogOpts) |
Responses
Request samples
- Payload
Content type
application/json
{- "namespace": "string",
- "pod_uid": "string",
- "pod_name": "string",
- "container_name": "string",
- "opts": {
- "tail": 0,
- "limit_bytes": 0,
- "timestamps": true,
- "previous": true,
- "since_seconds": 0,
- "since_time": "2019-08-24T14:15:22Z"
}
}
Response samples
- 422
Content type
application/json
{- "detail": [
- {
- "loc": [
- "string"
], - "msg": "string",
- "type": "string"
}
]
}
interLink API spec
Please find the interLink OpenAPI JSON spec can be found here.
interLink server API (0.4.0)
Download OpenAPI specification:Download
This is the API spec for the Virtual Kubelet to interLink API server communication
/create
Request Body schema: application/json
Array of objects or null (V1ConfigMap) | |
object (V1Pod) | |
Array of objects or null (V1ConfigMap) | |
Array of objects or null (V1Secret) |
Responses
Request samples
- Payload
Content type
application/json
{- "configmaps": [
- {
- "apiVersion": "string",
- "binaryData": {
- "property1": "string",
- "property2": "string"
}, - "data": {
- "property1": "string",
- "property2": "string"
}, - "immutable": true,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}
}
], - "pod": {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "activeDeadlineSeconds": 0,
- "affinity": {
- "nodeAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "preference": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchFields": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
]
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": {
- "nodeSelectorTerms": [
- {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchFields": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
]
}
]
}
}, - "podAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}, - "podAntiAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}
}, - "automountServiceAccountToken": true,
- "containers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "dnsConfig": {
- "nameservers": [
- "string"
], - "options": [
- {
- "name": "string",
- "value": "string"
}
], - "searches": [
- "string"
]
}, - "dnsPolicy": "string",
- "enableServiceLinks": true,
- "ephemeralContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "targetContainerName": "string",
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "hostAliases": [
- {
- "hostnames": [
- "string"
], - "ip": "string"
}
], - "hostIPC": true,
- "hostNetwork": true,
- "hostPID": true,
- "hostUsers": true,
- "hostname": "string",
- "imagePullSecrets": [
- {
- "name": "string"
}
], - "initContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "nodeName": "string",
- "nodeSelector": {
- "property1": "string",
- "property2": "string"
}, - "os": {
- "name": "string"
}, - "overhead": {
- "property1": { },
- "property2": { }
}, - "preemptionPolicy": "string",
- "priority": 0,
- "priorityClassName": "string",
- "readinessGates": [
- {
- "conditionType": "string"
}
], - "resourceClaims": [
- {
- "name": "string",
- "source": {
- "resourceClaimName": "string",
- "resourceClaimTemplateName": "string"
}
}
], - "restartPolicy": "string",
- "runtimeClassName": "string",
- "schedulerName": "string",
- "schedulingGates": [
- {
- "name": "string"
}
], - "securityContext": {
- "fsGroup": 0,
- "fsGroupChangePolicy": "string",
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "supplementalGroups": [
- 0
], - "sysctls": [
- {
- "name": "string",
- "value": "string"
}
], - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "serviceAccount": "string",
- "serviceAccountName": "string",
- "setHostnameAsFQDN": true,
- "shareProcessNamespace": true,
- "subdomain": "string",
- "terminationGracePeriodSeconds": 0,
- "tolerations": [
- {
- "effect": "string",
- "key": "string",
- "operator": "string",
- "tolerationSeconds": 0,
- "value": "string"
}
], - "topologySpreadConstraints": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- "string"
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "maxSkew": 0,
- "minDomains": 0,
- "nodeAffinityPolicy": "string",
- "nodeTaintsPolicy": "string",
- "topologyKey": "string",
- "whenUnsatisfiable": "string"
}
], - "volumes": [
- {
- "awsElasticBlockStore": {
- "fsType": "string",
- "partition": 0,
- "readOnly": true,
- "volumeID": "string"
}, - "azureDisk": {
- "cachingMode": "string",
- "diskName": "string",
- "diskURI": "string",
- "fsType": "string",
- "kind": "string",
- "readOnly": true
}, - "azureFile": {
- "readOnly": true,
- "secretName": "string",
- "shareName": "string"
}, - "cephfs": {
- "monitors": [
- "string"
], - "path": "string",
- "readOnly": true,
- "secretFile": "string",
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "cinder": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeID": "string"
}, - "configMap": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "name": "string",
- "optional": true
}, - "csi": {
- "driver": "string",
- "fsType": "string",
- "nodePublishSecretRef": {
- "name": "string"
}, - "readOnly": true,
- "volumeAttributes": {
- "property1": "string",
- "property2": "string"
}
}, - "downwardAPI": {
- "defaultMode": 0,
- "items": [
- {
- "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "mode": 0,
- "path": "string",
- "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}
}
]
}, - "emptyDir": {
- "medium": "string",
- "sizeLimit": { }
}, - "ephemeral": {
- "volumeClaimTemplate": {
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": null,
- "fieldsType": null,
- "fieldsV1": null,
- "manager": null,
- "operation": null,
- "subresource": null,
- "time": null
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": null,
- "blockOwnerDeletion": null,
- "controller": null,
- "kind": null,
- "name": null,
- "uid": null
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "accessModes": [
- "string"
], - "dataSource": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string"
}, - "dataSourceRef": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "resources": {
- "limits": {
- "property1": null,
- "property2": null
}, - "requests": {
- "property1": null,
- "property2": null
}
}, - "selector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "storageClassName": "string",
- "volumeAttributesClassName": "string",
- "volumeMode": "string",
- "volumeName": "string"
}
}
}, - "fc": {
- "fsType": "string",
- "lun": 0,
- "readOnly": true,
- "targetWWNs": [
- "string"
], - "wwids": [
- "string"
]
}, - "flexVolume": {
- "driver": "string",
- "fsType": "string",
- "options": {
- "property1": "string",
- "property2": "string"
}, - "readOnly": true,
- "secretRef": {
- "name": "string"
}
}, - "flocker": {
- "datasetName": "string",
- "datasetUUID": "string"
}, - "gcePersistentDisk": {
- "fsType": "string",
- "partition": 0,
- "pdName": "string",
- "readOnly": true
}, - "gitRepo": {
- "directory": "string",
- "repository": "string",
- "revision": "string"
}, - "glusterfs": {
- "endpoints": "string",
- "path": "string",
- "readOnly": true
}, - "hostPath": {
- "path": "string",
- "type": "string"
}, - "iscsi": {
- "chapAuthDiscovery": true,
- "chapAuthSession": true,
- "fsType": "string",
- "initiatorName": "string",
- "iqn": "string",
- "iscsiInterface": "string",
- "lun": 0,
- "portals": [
- "string"
], - "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "targetPortal": "string"
}, - "name": "string",
- "nfs": {
- "path": "string",
- "readOnly": true,
- "server": "string"
}, - "persistentVolumeClaim": {
- "claimName": "string",
- "readOnly": true
}, - "photonPersistentDisk": {
- "fsType": "string",
- "pdID": "string"
}, - "portworxVolume": {
- "fsType": "string",
- "readOnly": true,
- "volumeID": "string"
}, - "projected": {
- "defaultMode": 0,
- "sources": [
- {
- "clusterTrustBundle": {
- "labelSelector": {
- "matchExpressions": [ ],
- "matchLabels": { }
}, - "name": "string",
- "optional": true,
- "path": "string",
- "signerName": "string"
}, - "configMap": {
- "items": [
- null
], - "name": "string",
- "optional": true
}, - "downwardAPI": {
- "items": [
- null
]
}, - "secret": {
- "items": [
- null
], - "name": "string",
- "optional": true
}, - "serviceAccountToken": {
- "audience": "string",
- "expirationSeconds": 0,
- "path": "string"
}
}
]
}, - "quobyte": {
- "group": "string",
- "readOnly": true,
- "registry": "string",
- "tenant": "string",
- "user": "string",
- "volume": "string"
}, - "rbd": {
- "fsType": "string",
- "image": "string",
- "keyring": "string",
- "monitors": [
- "string"
], - "pool": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "scaleIO": {
- "fsType": "string",
- "gateway": "string",
- "protectionDomain": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "sslEnabled": true,
- "storageMode": "string",
- "storagePool": "string",
- "system": "string",
- "volumeName": "string"
}, - "secret": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "optional": true,
- "secretName": "string"
}, - "storageos": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeName": "string",
- "volumeNamespace": "string"
}, - "vsphereVolume": {
- "fsType": "string",
- "storagePolicyID": "string",
- "storagePolicyName": "string",
- "volumePath": "string"
}
}
]
}, - "status": {
- "conditions": [
- {
- "lastProbeTime": "string",
- "lastTransitionTime": "string",
- "message": "string",
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "containerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "ephemeralContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "hostIP": "string",
- "hostIPs": [
- {
- "ip": "string"
}
], - "initContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "message": "string",
- "nominatedNodeName": "string",
- "phase": "string",
- "podIP": "string",
- "podIPs": [
- {
- "ip": "string"
}
], - "qosClass": "string",
- "reason": "string",
- "resize": "string",
- "resourceClaimStatuses": [
- {
- "name": "string",
- "resourceClaimName": "string"
}
], - "startTime": "string"
}
}, - "projectedvolumesmaps": [
- {
- "apiVersion": "string",
- "binaryData": {
- "property1": "string",
- "property2": "string"
}, - "data": {
- "property1": "string",
- "property2": "string"
}, - "immutable": true,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}
}
], - "secrets": [
- {
- "apiVersion": "string",
- "data": {
- "property1": "string",
- "property2": "string"
}, - "immutable": true,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "stringData": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}
]
}
Response samples
- 200
Content type
application/json
{- "container": [
- {
- "configMaps": [
- {
- "apiVersion": "string",
- "binaryData": {
- "property1": "string",
- "property2": "string"
}, - "data": {
- "property1": "string",
- "property2": "string"
}, - "immutable": true,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}
}
], - "emptyDirs": [
- "string"
], - "name": "string",
- "projectedvolumemaps": [
- {
- "apiVersion": "string",
- "binaryData": {
- "property1": "string",
- "property2": "string"
}, - "data": {
- "property1": "string",
- "property2": "string"
}, - "immutable": true,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}
}
], - "secrets": [
- {
- "apiVersion": "string",
- "data": {
- "property1": "string",
- "property2": "string"
}, - "immutable": true,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "stringData": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}
]
}
], - "pod": {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "activeDeadlineSeconds": 0,
- "affinity": {
- "nodeAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "preference": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchFields": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
]
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": {
- "nodeSelectorTerms": [
- {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchFields": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
]
}
]
}
}, - "podAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}, - "podAntiAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}
}, - "automountServiceAccountToken": true,
- "containers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "dnsConfig": {
- "nameservers": [
- "string"
], - "options": [
- {
- "name": "string",
- "value": "string"
}
], - "searches": [
- "string"
]
}, - "dnsPolicy": "string",
- "enableServiceLinks": true,
- "ephemeralContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "targetContainerName": "string",
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "hostAliases": [
- {
- "hostnames": [
- "string"
], - "ip": "string"
}
], - "hostIPC": true,
- "hostNetwork": true,
- "hostPID": true,
- "hostUsers": true,
- "hostname": "string",
- "imagePullSecrets": [
- {
- "name": "string"
}
], - "initContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "nodeName": "string",
- "nodeSelector": {
- "property1": "string",
- "property2": "string"
}, - "os": {
- "name": "string"
}, - "overhead": {
- "property1": { },
- "property2": { }
}, - "preemptionPolicy": "string",
- "priority": 0,
- "priorityClassName": "string",
- "readinessGates": [
- {
- "conditionType": "string"
}
], - "resourceClaims": [
- {
- "name": "string",
- "source": {
- "resourceClaimName": "string",
- "resourceClaimTemplateName": "string"
}
}
], - "restartPolicy": "string",
- "runtimeClassName": "string",
- "schedulerName": "string",
- "schedulingGates": [
- {
- "name": "string"
}
], - "securityContext": {
- "fsGroup": 0,
- "fsGroupChangePolicy": "string",
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "supplementalGroups": [
- 0
], - "sysctls": [
- {
- "name": "string",
- "value": "string"
}
], - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "serviceAccount": "string",
- "serviceAccountName": "string",
- "setHostnameAsFQDN": true,
- "shareProcessNamespace": true,
- "subdomain": "string",
- "terminationGracePeriodSeconds": 0,
- "tolerations": [
- {
- "effect": "string",
- "key": "string",
- "operator": "string",
- "tolerationSeconds": 0,
- "value": "string"
}
], - "topologySpreadConstraints": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- "string"
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "maxSkew": 0,
- "minDomains": 0,
- "nodeAffinityPolicy": "string",
- "nodeTaintsPolicy": "string",
- "topologyKey": "string",
- "whenUnsatisfiable": "string"
}
], - "volumes": [
- {
- "awsElasticBlockStore": {
- "fsType": "string",
- "partition": 0,
- "readOnly": true,
- "volumeID": "string"
}, - "azureDisk": {
- "cachingMode": "string",
- "diskName": "string",
- "diskURI": "string",
- "fsType": "string",
- "kind": "string",
- "readOnly": true
}, - "azureFile": {
- "readOnly": true,
- "secretName": "string",
- "shareName": "string"
}, - "cephfs": {
- "monitors": [
- "string"
], - "path": "string",
- "readOnly": true,
- "secretFile": "string",
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "cinder": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeID": "string"
}, - "configMap": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "name": "string",
- "optional": true
}, - "csi": {
- "driver": "string",
- "fsType": "string",
- "nodePublishSecretRef": {
- "name": "string"
}, - "readOnly": true,
- "volumeAttributes": {
- "property1": "string",
- "property2": "string"
}
}, - "downwardAPI": {
- "defaultMode": 0,
- "items": [
- {
- "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "mode": 0,
- "path": "string",
- "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}
}
]
}, - "emptyDir": {
- "medium": "string",
- "sizeLimit": { }
}, - "ephemeral": {
- "volumeClaimTemplate": {
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": null,
- "fieldsType": null,
- "fieldsV1": null,
- "manager": null,
- "operation": null,
- "subresource": null,
- "time": null
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": null,
- "blockOwnerDeletion": null,
- "controller": null,
- "kind": null,
- "name": null,
- "uid": null
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "accessModes": [
- "string"
], - "dataSource": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string"
}, - "dataSourceRef": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "resources": {
- "limits": {
- "property1": null,
- "property2": null
}, - "requests": {
- "property1": null,
- "property2": null
}
}, - "selector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "storageClassName": "string",
- "volumeAttributesClassName": "string",
- "volumeMode": "string",
- "volumeName": "string"
}
}
}, - "fc": {
- "fsType": "string",
- "lun": 0,
- "readOnly": true,
- "targetWWNs": [
- "string"
], - "wwids": [
- "string"
]
}, - "flexVolume": {
- "driver": "string",
- "fsType": "string",
- "options": {
- "property1": "string",
- "property2": "string"
}, - "readOnly": true,
- "secretRef": {
- "name": "string"
}
}, - "flocker": {
- "datasetName": "string",
- "datasetUUID": "string"
}, - "gcePersistentDisk": {
- "fsType": "string",
- "partition": 0,
- "pdName": "string",
- "readOnly": true
}, - "gitRepo": {
- "directory": "string",
- "repository": "string",
- "revision": "string"
}, - "glusterfs": {
- "endpoints": "string",
- "path": "string",
- "readOnly": true
}, - "hostPath": {
- "path": "string",
- "type": "string"
}, - "iscsi": {
- "chapAuthDiscovery": true,
- "chapAuthSession": true,
- "fsType": "string",
- "initiatorName": "string",
- "iqn": "string",
- "iscsiInterface": "string",
- "lun": 0,
- "portals": [
- "string"
], - "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "targetPortal": "string"
}, - "name": "string",
- "nfs": {
- "path": "string",
- "readOnly": true,
- "server": "string"
}, - "persistentVolumeClaim": {
- "claimName": "string",
- "readOnly": true
}, - "photonPersistentDisk": {
- "fsType": "string",
- "pdID": "string"
}, - "portworxVolume": {
- "fsType": "string",
- "readOnly": true,
- "volumeID": "string"
}, - "projected": {
- "defaultMode": 0,
- "sources": [
- {
- "clusterTrustBundle": {
- "labelSelector": {
- "matchExpressions": [ ],
- "matchLabels": { }
}, - "name": "string",
- "optional": true,
- "path": "string",
- "signerName": "string"
}, - "configMap": {
- "items": [
- null
], - "name": "string",
- "optional": true
}, - "downwardAPI": {
- "items": [
- null
]
}, - "secret": {
- "items": [
- null
], - "name": "string",
- "optional": true
}, - "serviceAccountToken": {
- "audience": "string",
- "expirationSeconds": 0,
- "path": "string"
}
}
]
}, - "quobyte": {
- "group": "string",
- "readOnly": true,
- "registry": "string",
- "tenant": "string",
- "user": "string",
- "volume": "string"
}, - "rbd": {
- "fsType": "string",
- "image": "string",
- "keyring": "string",
- "monitors": [
- "string"
], - "pool": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "scaleIO": {
- "fsType": "string",
- "gateway": "string",
- "protectionDomain": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "sslEnabled": true,
- "storageMode": "string",
- "storagePool": "string",
- "system": "string",
- "volumeName": "string"
}, - "secret": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "optional": true,
- "secretName": "string"
}, - "storageos": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeName": "string",
- "volumeNamespace": "string"
}, - "vsphereVolume": {
- "fsType": "string",
- "storagePolicyID": "string",
- "storagePolicyName": "string",
- "volumePath": "string"
}
}
]
}, - "status": {
- "conditions": [
- {
- "lastProbeTime": "string",
- "lastTransitionTime": "string",
- "message": "string",
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "containerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "ephemeralContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "hostIP": "string",
- "hostIPs": [
- {
- "ip": "string"
}
], - "initContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "message": "string",
- "nominatedNodeName": "string",
- "phase": "string",
- "podIP": "string",
- "podIPs": [
- {
- "ip": "string"
}
], - "qosClass": "string",
- "reason": "string",
- "resize": "string",
- "resourceClaimStatuses": [
- {
- "name": "string",
- "resourceClaimName": "string"
}
], - "startTime": "string"
}
}
}
/delete
Request Body schema: application/json
apiVersion | string |
kind | string |
object (V1ObjectMeta) | |
object (V1PodSpec) | |
object (V1PodStatus) |
Responses
Request samples
- Payload
Content type
application/json
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "activeDeadlineSeconds": 0,
- "affinity": {
- "nodeAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "preference": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
], - "matchFields": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
]
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": {
- "nodeSelectorTerms": [
- {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
], - "matchFields": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
]
}
]
}
}, - "podAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}, - "podAntiAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- null
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}
}, - "automountServiceAccountToken": true,
- "containers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "dnsConfig": {
- "nameservers": [
- "string"
], - "options": [
- {
- "name": "string",
- "value": "string"
}
], - "searches": [
- "string"
]
}, - "dnsPolicy": "string",
- "enableServiceLinks": true,
- "ephemeralContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "targetContainerName": "string",
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "hostAliases": [
- {
- "hostnames": [
- "string"
], - "ip": "string"
}
], - "hostIPC": true,
- "hostNetwork": true,
- "hostPID": true,
- "hostUsers": true,
- "hostname": "string",
- "imagePullSecrets": [
- {
- "name": "string"
}
], - "initContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "nodeName": "string",
- "nodeSelector": {
- "property1": "string",
- "property2": "string"
}, - "os": {
- "name": "string"
}, - "overhead": {
- "property1": { },
- "property2": { }
}, - "preemptionPolicy": "string",
- "priority": 0,
- "priorityClassName": "string",
- "readinessGates": [
- {
- "conditionType": "string"
}
], - "resourceClaims": [
- {
- "name": "string",
- "source": {
- "resourceClaimName": "string",
- "resourceClaimTemplateName": "string"
}
}
], - "restartPolicy": "string",
- "runtimeClassName": "string",
- "schedulerName": "string",
- "schedulingGates": [
- {
- "name": "string"
}
], - "securityContext": {
- "fsGroup": 0,
- "fsGroupChangePolicy": "string",
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "supplementalGroups": [
- 0
], - "sysctls": [
- {
- "name": "string",
- "value": "string"
}
], - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "serviceAccount": "string",
- "serviceAccountName": "string",
- "setHostnameAsFQDN": true,
- "shareProcessNamespace": true,
- "subdomain": "string",
- "terminationGracePeriodSeconds": 0,
- "tolerations": [
- {
- "effect": "string",
- "key": "string",
- "operator": "string",
- "tolerationSeconds": 0,
- "value": "string"
}
], - "topologySpreadConstraints": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- "string"
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "maxSkew": 0,
- "minDomains": 0,
- "nodeAffinityPolicy": "string",
- "nodeTaintsPolicy": "string",
- "topologyKey": "string",
- "whenUnsatisfiable": "string"
}
], - "volumes": [
- {
- "awsElasticBlockStore": {
- "fsType": "string",
- "partition": 0,
- "readOnly": true,
- "volumeID": "string"
}, - "azureDisk": {
- "cachingMode": "string",
- "diskName": "string",
- "diskURI": "string",
- "fsType": "string",
- "kind": "string",
- "readOnly": true
}, - "azureFile": {
- "readOnly": true,
- "secretName": "string",
- "shareName": "string"
}, - "cephfs": {
- "monitors": [
- "string"
], - "path": "string",
- "readOnly": true,
- "secretFile": "string",
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "cinder": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeID": "string"
}, - "configMap": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "name": "string",
- "optional": true
}, - "csi": {
- "driver": "string",
- "fsType": "string",
- "nodePublishSecretRef": {
- "name": "string"
}, - "readOnly": true,
- "volumeAttributes": {
- "property1": "string",
- "property2": "string"
}
}, - "downwardAPI": {
- "defaultMode": 0,
- "items": [
- {
- "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "mode": 0,
- "path": "string",
- "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}
}
]
}, - "emptyDir": {
- "medium": "string",
- "sizeLimit": { }
}, - "ephemeral": {
- "volumeClaimTemplate": {
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "accessModes": [
- "string"
], - "dataSource": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string"
}, - "dataSourceRef": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "resources": {
- "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "selector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "storageClassName": "string",
- "volumeAttributesClassName": "string",
- "volumeMode": "string",
- "volumeName": "string"
}
}
}, - "fc": {
- "fsType": "string",
- "lun": 0,
- "readOnly": true,
- "targetWWNs": [
- "string"
], - "wwids": [
- "string"
]
}, - "flexVolume": {
- "driver": "string",
- "fsType": "string",
- "options": {
- "property1": "string",
- "property2": "string"
}, - "readOnly": true,
- "secretRef": {
- "name": "string"
}
}, - "flocker": {
- "datasetName": "string",
- "datasetUUID": "string"
}, - "gcePersistentDisk": {
- "fsType": "string",
- "partition": 0,
- "pdName": "string",
- "readOnly": true
}, - "gitRepo": {
- "directory": "string",
- "repository": "string",
- "revision": "string"
}, - "glusterfs": {
- "endpoints": "string",
- "path": "string",
- "readOnly": true
}, - "hostPath": {
- "path": "string",
- "type": "string"
}, - "iscsi": {
- "chapAuthDiscovery": true,
- "chapAuthSession": true,
- "fsType": "string",
- "initiatorName": "string",
- "iqn": "string",
- "iscsiInterface": "string",
- "lun": 0,
- "portals": [
- "string"
], - "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "targetPortal": "string"
}, - "name": "string",
- "nfs": {
- "path": "string",
- "readOnly": true,
- "server": "string"
}, - "persistentVolumeClaim": {
- "claimName": "string",
- "readOnly": true
}, - "photonPersistentDisk": {
- "fsType": "string",
- "pdID": "string"
}, - "portworxVolume": {
- "fsType": "string",
- "readOnly": true,
- "volumeID": "string"
}, - "projected": {
- "defaultMode": 0,
- "sources": [
- {
- "clusterTrustBundle": {
- "labelSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "name": "string",
- "optional": true,
- "path": "string",
- "signerName": "string"
}, - "configMap": {
- "items": [
- {
- "key": null,
- "mode": null,
- "path": null
}
], - "name": "string",
- "optional": true
}, - "downwardAPI": {
- "items": [
- {
- "fieldRef": null,
- "mode": null,
- "path": null,
- "resourceFieldRef": null
}
]
}, - "secret": {
- "items": [
- {
- "key": null,
- "mode": null,
- "path": null
}
], - "name": "string",
- "optional": true
}, - "serviceAccountToken": {
- "audience": "string",
- "expirationSeconds": 0,
- "path": "string"
}
}
]
}, - "quobyte": {
- "group": "string",
- "readOnly": true,
- "registry": "string",
- "tenant": "string",
- "user": "string",
- "volume": "string"
}, - "rbd": {
- "fsType": "string",
- "image": "string",
- "keyring": "string",
- "monitors": [
- "string"
], - "pool": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "scaleIO": {
- "fsType": "string",
- "gateway": "string",
- "protectionDomain": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "sslEnabled": true,
- "storageMode": "string",
- "storagePool": "string",
- "system": "string",
- "volumeName": "string"
}, - "secret": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "optional": true,
- "secretName": "string"
}, - "storageos": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeName": "string",
- "volumeNamespace": "string"
}, - "vsphereVolume": {
- "fsType": "string",
- "storagePolicyID": "string",
- "storagePolicyName": "string",
- "volumePath": "string"
}
}
]
}, - "status": {
- "conditions": [
- {
- "lastProbeTime": "string",
- "lastTransitionTime": "string",
- "message": "string",
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "containerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "ephemeralContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "hostIP": "string",
- "hostIPs": [
- {
- "ip": "string"
}
], - "initContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "message": "string",
- "nominatedNodeName": "string",
- "phase": "string",
- "podIP": "string",
- "podIPs": [
- {
- "ip": "string"
}
], - "qosClass": "string",
- "reason": "string",
- "resize": "string",
- "resourceClaimStatuses": [
- {
- "name": "string",
- "resourceClaimName": "string"
}
], - "startTime": "string"
}
}
/getLogs
Request Body schema: application/json
ContainerName | string |
Namespace | string |
object (InterlinkContainerLogOpts) | |
PodName | string |
PodUID | string |
Responses
Request samples
- Payload
Content type
application/json
{- "ContainerName": "string",
- "Namespace": "string",
- "Opts": {
- "Bytes": 0,
- "Follow": true,
- "Previous": true,
- "SinceSeconds": 0,
- "SinceTime": "2019-08-24T14:15:22Z",
- "Tail": 0,
- "Timestamps": true
}, - "PodName": "string",
- "PodUID": "string"
}
Response samples
- 200
Content type
application/json
"string"
/status
Request Body schema: application/json
Array
apiVersion | string |
kind | string |
object (V1ObjectMeta) | |
object (V1PodSpec) | |
object (V1PodStatus) |
Responses
Request samples
- Payload
Content type
application/json
[- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "string"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "activeDeadlineSeconds": 0,
- "affinity": {
- "nodeAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "preference": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchFields": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
]
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": {
- "nodeSelectorTerms": [
- {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchFields": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
]
}
]
}
}, - "podAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}, - "podAntiAffinity": {
- "preferredDuringSchedulingIgnoredDuringExecution": [
- {
- "podAffinityTerm": {
- "labelSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}, - "weight": 0
}
], - "requiredDuringSchedulingIgnoredDuringExecution": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "mismatchLabelKeys": [
- "string"
], - "namespaceSelector": {
- "matchExpressions": [
- {
- "key": null,
- "operator": null,
- "values": [ ]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "namespaces": [
- "string"
], - "topologyKey": "string"
}
]
}
}, - "automountServiceAccountToken": true,
- "containers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "dnsConfig": {
- "nameservers": [
- "string"
], - "options": [
- {
- "name": "string",
- "value": "string"
}
], - "searches": [
- "string"
]
}, - "dnsPolicy": "string",
- "enableServiceLinks": true,
- "ephemeralContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "targetContainerName": "string",
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "hostAliases": [
- {
- "hostnames": [
- "string"
], - "ip": "string"
}
], - "hostIPC": true,
- "hostNetwork": true,
- "hostPID": true,
- "hostUsers": true,
- "hostname": "string",
- "imagePullSecrets": [
- {
- "name": "string"
}
], - "initContainers": [
- {
- "args": [
- "string"
], - "command": [
- "string"
], - "env": [
- {
- "name": "string",
- "value": "string",
- "valueFrom": {
- "configMapKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}, - "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}, - "secretKeyRef": {
- "key": "string",
- "name": "string",
- "optional": true
}
}
}
], - "envFrom": [
- {
- "configMapRef": {
- "name": "string",
- "optional": true
}, - "prefix": "string",
- "secretRef": {
- "name": "string",
- "optional": true
}
}
], - "image": "string",
- "imagePullPolicy": "string",
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}, - "preStop": {
- "exec": {
- "command": [
- "string"
]
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": null,
- "value": null
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "sleep": {
- "seconds": 0
}, - "tcpSocket": {
- "host": "string",
- "port": { }
}
}
}, - "livenessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "name": "string",
- "ports": [
- {
- "containerPort": 0,
- "hostIP": "string",
- "hostPort": 0,
- "name": "string",
- "protocol": "string"
}
], - "readinessProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "resizePolicy": [
- {
- "resourceName": "string",
- "restartPolicy": "string"
}
], - "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartPolicy": "string",
- "securityContext": {
- "allowPrivilegeEscalation": true,
- "capabilities": {
- "add": [
- "string"
], - "drop": [
- "string"
]
}, - "privileged": true,
- "procMount": "string",
- "readOnlyRootFilesystem": true,
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "startupProbe": {
- "exec": {
- "command": [
- "string"
]
}, - "failureThreshold": 0,
- "grpc": {
- "port": 0,
- "service": "string"
}, - "httpGet": {
- "host": "string",
- "httpHeaders": [
- {
- "name": "string",
- "value": "string"
}
], - "path": "string",
- "port": { },
- "scheme": "string"
}, - "initialDelaySeconds": 0,
- "periodSeconds": 0,
- "successThreshold": 0,
- "tcpSocket": {
- "host": "string",
- "port": { }
}, - "terminationGracePeriodSeconds": 0,
- "timeoutSeconds": 0
}, - "stdin": true,
- "stdinOnce": true,
- "terminationMessagePath": "string",
- "terminationMessagePolicy": "string",
- "tty": true,
- "volumeDevices": [
- {
- "devicePath": "string",
- "name": "string"
}
], - "volumeMounts": [
- {
- "mountPath": "string",
- "mountPropagation": "string",
- "name": "string",
- "readOnly": true,
- "subPath": "string",
- "subPathExpr": "string"
}
], - "workingDir": "string"
}
], - "nodeName": "string",
- "nodeSelector": {
- "property1": "string",
- "property2": "string"
}, - "os": {
- "name": "string"
}, - "overhead": {
- "property1": { },
- "property2": { }
}, - "preemptionPolicy": "string",
- "priority": 0,
- "priorityClassName": "string",
- "readinessGates": [
- {
- "conditionType": "string"
}
], - "resourceClaims": [
- {
- "name": "string",
- "source": {
- "resourceClaimName": "string",
- "resourceClaimTemplateName": "string"
}
}
], - "restartPolicy": "string",
- "runtimeClassName": "string",
- "schedulerName": "string",
- "schedulingGates": [
- {
- "name": "string"
}
], - "securityContext": {
- "fsGroup": 0,
- "fsGroupChangePolicy": "string",
- "runAsGroup": 0,
- "runAsNonRoot": true,
- "runAsUser": 0,
- "seLinuxOptions": {
- "level": "string",
- "role": "string",
- "type": "string",
- "user": "string"
}, - "seccompProfile": {
- "localhostProfile": "string",
- "type": "string"
}, - "supplementalGroups": [
- 0
], - "sysctls": [
- {
- "name": "string",
- "value": "string"
}
], - "windowsOptions": {
- "gmsaCredentialSpec": "string",
- "gmsaCredentialSpecName": "string",
- "hostProcess": true,
- "runAsUserName": "string"
}
}, - "serviceAccount": "string",
- "serviceAccountName": "string",
- "setHostnameAsFQDN": true,
- "shareProcessNamespace": true,
- "subdomain": "string",
- "terminationGracePeriodSeconds": 0,
- "tolerations": [
- {
- "effect": "string",
- "key": "string",
- "operator": "string",
- "tolerationSeconds": 0,
- "value": "string"
}
], - "topologySpreadConstraints": [
- {
- "labelSelector": {
- "matchExpressions": [
- {
- "key": "string",
- "operator": "string",
- "values": [
- "string"
]
}
], - "matchLabels": {
- "property1": "string",
- "property2": "string"
}
}, - "matchLabelKeys": [
- "string"
], - "maxSkew": 0,
- "minDomains": 0,
- "nodeAffinityPolicy": "string",
- "nodeTaintsPolicy": "string",
- "topologyKey": "string",
- "whenUnsatisfiable": "string"
}
], - "volumes": [
- {
- "awsElasticBlockStore": {
- "fsType": "string",
- "partition": 0,
- "readOnly": true,
- "volumeID": "string"
}, - "azureDisk": {
- "cachingMode": "string",
- "diskName": "string",
- "diskURI": "string",
- "fsType": "string",
- "kind": "string",
- "readOnly": true
}, - "azureFile": {
- "readOnly": true,
- "secretName": "string",
- "shareName": "string"
}, - "cephfs": {
- "monitors": [
- "string"
], - "path": "string",
- "readOnly": true,
- "secretFile": "string",
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "cinder": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeID": "string"
}, - "configMap": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "name": "string",
- "optional": true
}, - "csi": {
- "driver": "string",
- "fsType": "string",
- "nodePublishSecretRef": {
- "name": "string"
}, - "readOnly": true,
- "volumeAttributes": {
- "property1": "string",
- "property2": "string"
}
}, - "downwardAPI": {
- "defaultMode": 0,
- "items": [
- {
- "fieldRef": {
- "apiVersion": "string",
- "fieldPath": "string"
}, - "mode": 0,
- "path": "string",
- "resourceFieldRef": {
- "containerName": "string",
- "divisor": { },
- "resource": "string"
}
}
]
}, - "emptyDir": {
- "medium": "string",
- "sizeLimit": { }
}, - "ephemeral": {
- "volumeClaimTemplate": {
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "string",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "string",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": null,
- "fieldsType": null,
- "fieldsV1": null,
- "manager": null,
- "operation": null,
- "subresource": null,
- "time": null
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": null,
- "blockOwnerDeletion": null,
- "controller": null,
- "kind": null,
- "name": null,
- "uid": null
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "accessModes": [
- "string"
], - "dataSource": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string"
}, - "dataSourceRef": {
- "apiGroup": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "resources": {
- "limits": {
- "property1": null,
- "property2": null
}, - "requests": {
- "property1": null,
- "property2": null
}
}, - "selector": {
- "matchExpressions": [
- null
], - "matchLabels": {
- "property1": null,
- "property2": null
}
}, - "storageClassName": "string",
- "volumeAttributesClassName": "string",
- "volumeMode": "string",
- "volumeName": "string"
}
}
}, - "fc": {
- "fsType": "string",
- "lun": 0,
- "readOnly": true,
- "targetWWNs": [
- "string"
], - "wwids": [
- "string"
]
}, - "flexVolume": {
- "driver": "string",
- "fsType": "string",
- "options": {
- "property1": "string",
- "property2": "string"
}, - "readOnly": true,
- "secretRef": {
- "name": "string"
}
}, - "flocker": {
- "datasetName": "string",
- "datasetUUID": "string"
}, - "gcePersistentDisk": {
- "fsType": "string",
- "partition": 0,
- "pdName": "string",
- "readOnly": true
}, - "gitRepo": {
- "directory": "string",
- "repository": "string",
- "revision": "string"
}, - "glusterfs": {
- "endpoints": "string",
- "path": "string",
- "readOnly": true
}, - "hostPath": {
- "path": "string",
- "type": "string"
}, - "iscsi": {
- "chapAuthDiscovery": true,
- "chapAuthSession": true,
- "fsType": "string",
- "initiatorName": "string",
- "iqn": "string",
- "iscsiInterface": "string",
- "lun": 0,
- "portals": [
- "string"
], - "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "targetPortal": "string"
}, - "name": "string",
- "nfs": {
- "path": "string",
- "readOnly": true,
- "server": "string"
}, - "persistentVolumeClaim": {
- "claimName": "string",
- "readOnly": true
}, - "photonPersistentDisk": {
- "fsType": "string",
- "pdID": "string"
}, - "portworxVolume": {
- "fsType": "string",
- "readOnly": true,
- "volumeID": "string"
}, - "projected": {
- "defaultMode": 0,
- "sources": [
- {
- "clusterTrustBundle": {
- "labelSelector": {
- "matchExpressions": [ ],
- "matchLabels": { }
}, - "name": "string",
- "optional": true,
- "path": "string",
- "signerName": "string"
}, - "configMap": {
- "items": [
- null
], - "name": "string",
- "optional": true
}, - "downwardAPI": {
- "items": [
- null
]
}, - "secret": {
- "items": [
- null
], - "name": "string",
- "optional": true
}, - "serviceAccountToken": {
- "audience": "string",
- "expirationSeconds": 0,
- "path": "string"
}
}
]
}, - "quobyte": {
- "group": "string",
- "readOnly": true,
- "registry": "string",
- "tenant": "string",
- "user": "string",
- "volume": "string"
}, - "rbd": {
- "fsType": "string",
- "image": "string",
- "keyring": "string",
- "monitors": [
- "string"
], - "pool": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "user": "string"
}, - "scaleIO": {
- "fsType": "string",
- "gateway": "string",
- "protectionDomain": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "sslEnabled": true,
- "storageMode": "string",
- "storagePool": "string",
- "system": "string",
- "volumeName": "string"
}, - "secret": {
- "defaultMode": 0,
- "items": [
- {
- "key": "string",
- "mode": 0,
- "path": "string"
}
], - "optional": true,
- "secretName": "string"
}, - "storageos": {
- "fsType": "string",
- "readOnly": true,
- "secretRef": {
- "name": "string"
}, - "volumeName": "string",
- "volumeNamespace": "string"
}, - "vsphereVolume": {
- "fsType": "string",
- "storagePolicyID": "string",
- "storagePolicyName": "string",
- "volumePath": "string"
}
}
]
}, - "status": {
- "conditions": [
- {
- "lastProbeTime": "string",
- "lastTransitionTime": "string",
- "message": "string",
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "containerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "ephemeralContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "hostIP": "string",
- "hostIPs": [
- {
- "ip": "string"
}
], - "initContainerStatuses": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "message": "string",
- "nominatedNodeName": "string",
- "phase": "string",
- "podIP": "string",
- "podIPs": [
- {
- "ip": "string"
}
], - "qosClass": "string",
- "reason": "string",
- "resize": "string",
- "resourceClaimStatuses": [
- {
- "name": "string",
- "resourceClaimName": "string"
}
], - "startTime": "string"
}
}
]
Response samples
- 200
Content type
application/json
[- {
- "JID": "string",
- "UID": "string",
- "containers": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "initContainers": [
- {
- "allocatedResources": {
- "property1": { },
- "property2": { }
}, - "containerID": "string",
- "image": "string",
- "imageID": "string",
- "lastState": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}, - "name": "string",
- "ready": true,
- "resources": {
- "claims": [
- {
- "name": "string"
}
], - "limits": {
- "property1": { },
- "property2": { }
}, - "requests": {
- "property1": { },
- "property2": { }
}
}, - "restartCount": 0,
- "started": true,
- "state": {
- "running": {
- "startedAt": "string"
}, - "terminated": {
- "containerID": "string",
- "exitCode": 0,
- "finishedAt": "string",
- "message": "string",
- "reason": "string",
- "signal": 0,
- "startedAt": "string"
}, - "waiting": {
- "message": "string",
- "reason": "string"
}
}
}
], - "name": "string",
- "namespace": "string"
}
]