Skip to content

Instantly share code, notes, and snippets.

@victornoel
Created August 12, 2018 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victornoel/b44b5fc74f26ab045390ddf912b24870 to your computer and use it in GitHub Desktop.
Save victornoel/b44b5fc74f26ab045390ddf912b24870 to your computer and use it in GitHub Desktop.
yaml language server logs for redhat-developer/yaml-language-server#80
[Trace - 15:41:21] Sending request 'initialize - (0)'.
Params: {
"processId": 3486,
"rootPath": "/home/victor/a",
"rootUri": "file:///home/victor/a",
"capabilities": {
"workspace": {
"applyEdit": true,
"didChangeConfiguration": {
"dynamicRegistration": true
},
"didChangeWatchedFiles": {
"dynamicRegistration": true
},
"symbol": {
"dynamicRegistration": true
},
"executeCommand": {
"dynamicRegistration": true
}
},
"textDocument": {
"synchronization": {
"dynamicRegistration": true,
"willSave": true,
"willSaveWaitUntil": true,
"didSave": true
},
"completion": {
"dynamicRegistration": true,
"completionItem": {
"snippetSupport": true,
"commitCharactersSupport": true
}
},
"hover": {
"dynamicRegistration": true
},
"signatureHelp": {
"dynamicRegistration": true
},
"definition": {
"dynamicRegistration": true
},
"references": {
"dynamicRegistration": true
},
"documentHighlight": {
"dynamicRegistration": true
},
"documentSymbol": {
"dynamicRegistration": true
},
"codeAction": {
"dynamicRegistration": true
},
"codeLens": {
"dynamicRegistration": true
},
"formatting": {
"dynamicRegistration": true
},
"rangeFormatting": {
"dynamicRegistration": true
},
"onTypeFormatting": {
"dynamicRegistration": true
},
"rename": {
"dynamicRegistration": true
},
"documentLink": {
"dynamicRegistration": true
}
}
},
"trace": "verbose"
}
[Trace - 15:41:21] Received response 'initialize - (0)' in 351ms.
Result: {
"capabilities": {
"textDocumentSync": 1,
"completionProvider": {
"resolveProvider": true
},
"hoverProvider": true,
"documentSymbolProvider": true,
"documentFormattingProvider": false
}
}
[Trace - 15:41:21] Sending notification 'initialized'.
Params: {}
[Trace - 15:41:21] Sending notification 'workspace/didChangeConfiguration'.
Params: {
"settings": {
"yaml": {
"trace": {
"server": "verbose"
},
"schemas": {},
"format": {
"enable": false
},
"validate": true,
"customTags": []
},
"http": {
"proxyStrictSSL": true
}
}
}
[Trace - 15:41:21] Sending notification 'textDocument/didOpen'.
Params: {
"textDocument": {
"uri": "file:///home/victor/a/test.yaml",
"languageId": "yaml",
"version": 1,
"text": "apiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: app\nspec:\n selector:\n matchLabels:\n app: app\n replicas: 1\n template:\n metadata:\n labels:\n app: app\n spec:\n containers:\n - name: app\n image: nginx\n volumes:\n - name: config-volume\n configMap:\n name: app-config\n---\napiVersion: v1\nkind: ConfigMap\nmetadata:\n name: app-config\ndata:\n config: some config\n"
}
}
[Trace - 15:41:21] Sending notification 'json/schemaAssociations'.
Params: {
"/.condarc": [
"file:///home/victor/.vscode/extensions/ms-python.python-2018.7.1/schemas/condarc.json"
],
"/environment.yml": [
"file:///home/victor/.vscode/extensions/ms-python.python-2018.7.1/schemas/conda-environment.json"
],
"/meta.yaml": [
"file:///home/victor/.vscode/extensions/ms-python.python-2018.7.1/schemas/conda-meta.json"
]
}
[Trace - 15:41:21] Sending request 'textDocument/documentSymbol - (1)'.
Params: {
"textDocument": {
"uri": "file:///home/victor/a/test.yaml"
}
}
[Trace - 15:41:21] Received response 'textDocument/documentSymbol - (1)' in 29ms.
Result: [
{
"name": "apiVersion",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 0,
"character": 0
},
"end": {
"line": 0,
"character": 19
}
}
}
},
{
"name": "kind",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 1,
"character": 0
},
"end": {
"line": 1,
"character": 16
}
}
}
},
{
"name": "metadata",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 2,
"character": 0
},
"end": {
"line": 3,
"character": 11
}
}
}
},
{
"name": "name",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 3,
"character": 2
},
"end": {
"line": 3,
"character": 11
}
}
},
"containerName": "metadata"
},
{
"name": "spec",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 4,
"character": 0
},
"end": {
"line": 21,
"character": 0
}
}
}
},
{
"name": "selector",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 5,
"character": 2
},
"end": {
"line": 7,
"character": 14
}
}
},
"containerName": "spec"
},
{
"name": "matchLabels",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 6,
"character": 4
},
"end": {
"line": 7,
"character": 14
}
}
},
"containerName": "spec.selector"
},
{
"name": "app",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 7,
"character": 6
},
"end": {
"line": 7,
"character": 14
}
}
},
"containerName": "spec.selector.matchLabels"
},
{
"name": "replicas",
"kind": 16,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 8,
"character": 2
},
"end": {
"line": 8,
"character": 13
}
}
},
"containerName": "spec"
},
{
"name": "template",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 9,
"character": 2
},
"end": {
"line": 21,
"character": 0
}
}
},
"containerName": "spec"
},
{
"name": "metadata",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 10,
"character": 4
},
"end": {
"line": 12,
"character": 16
}
}
},
"containerName": "spec.template"
},
{
"name": "labels",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 11,
"character": 6
},
"end": {
"line": 12,
"character": 16
}
}
},
"containerName": "spec.template.metadata"
},
{
"name": "app",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 12,
"character": 8
},
"end": {
"line": 12,
"character": 16
}
}
},
"containerName": "spec.template.metadata.labels"
},
{
"name": "spec",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 13,
"character": 4
},
"end": {
"line": 21,
"character": 0
}
}
},
"containerName": "spec.template"
},
{
"name": "containers",
"kind": 18,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 14,
"character": 6
},
"end": {
"line": 17,
"character": 6
}
}
},
"containerName": "spec.template.spec"
},
{
"name": "name",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 15,
"character": 10
},
"end": {
"line": 15,
"character": 19
}
}
},
"containerName": "spec.template.spec.containers"
},
{
"name": "image",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 16,
"character": 10
},
"end": {
"line": 16,
"character": 22
}
}
},
"containerName": "spec.template.spec.containers"
},
{
"name": "volumes",
"kind": 18,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 17,
"character": 6
},
"end": {
"line": 21,
"character": 0
}
}
},
"containerName": "spec.template.spec"
},
{
"name": "name",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 18,
"character": 10
},
"end": {
"line": 18,
"character": 29
}
}
},
"containerName": "spec.template.spec.volumes"
},
{
"name": "configMap",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 19,
"character": 10
},
"end": {
"line": 20,
"character": 28
}
}
},
"containerName": "spec.template.spec.volumes"
},
{
"name": "name",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 20,
"character": 12
},
"end": {
"line": 20,
"character": 28
}
}
},
"containerName": "spec.template.spec.volumes.configMap"
},
{
"name": "apiVersion",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 22,
"character": 0
},
"end": {
"line": 22,
"character": 14
}
}
}
},
{
"name": "kind",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 23,
"character": 0
},
"end": {
"line": 23,
"character": 15
}
}
}
},
{
"name": "metadata",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 24,
"character": 0
},
"end": {
"line": 25,
"character": 18
}
}
}
},
{
"name": "name",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 25,
"character": 2
},
"end": {
"line": 25,
"character": 18
}
}
},
"containerName": "metadata"
},
{
"name": "data",
"kind": 2,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 26,
"character": 0
},
"end": {
"line": 27,
"character": 21
}
}
}
},
{
"name": "config",
"kind": 15,
"location": {
"uri": "file:///home/victor/a/test.yaml",
"range": {
"start": {
"line": 27,
"character": 2
},
"end": {
"line": 27,
"character": 21
}
}
},
"containerName": "data"
}
]
[Trace - 15:41:22] Received request 'custom/schema/request - (0)'.
Params: "file:///home/victor/a/test.yaml"
[Trace - 15:41:22] Sending response 'custom/schema/request - (0)'. Processing request took 3ms
Result: "kubernetes://schema/apps/v1@deployment+v1@configmap"
[Trace - 15:41:22] Received request 'custom/schema/content - (1)'.
Params: "kubernetes://schema/apps/v1@deployment+v1@configmap"
[Trace - 15:41:22] Sending response 'custom/schema/content - (1)'. Processing request took 2ms
Result: "{\"oneOf\":[{\"$ref\":\"kubernetes://schema/apps/v1@deployment\"},{\"$ref\":\"kubernetes://schema/v1@configmap\"}]}"
[Trace - 15:41:22] Received request 'custom/schema/content - (2)'.
Params: "kubernetes://schema/v1%40configmap"
[Trace - 15:41:22] Sending response 'custom/schema/content - (2)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMap\",\"id\":\"v1@ConfigMap\",\"apiVersion\":\"v1\",\"kind\":\"ConfigMap\",\"description\":\"ConfigMap holds configuration data for pods to consume.\",\"properties\":{\"kind\":{\"type\":\"string\",\"description\":\"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"ConfigMap: ConfigMap holds configuration data for pods to consume.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**data** (object)\\n\\nData contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**metadata** (object)\\n\\nStandard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n\"},\"data\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.\",\"markdownDescription\":\"**data** (object)\\n\\nData contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\"},\"metadata\":{\"description\":\"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta\",\"markdownDescription\":\"metadata: Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\nObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\\n\\n**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\\n\\n**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\\n\\n**creationTimestamp** (object)\\n\\nCreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\\n\\n**deletionTimestamp** (object)\\n\\nDeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\\n\\n**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\\n\\n**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\\n\\n**initializers** (object)\\n\\nAn initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\n**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\\n\\n**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\\n\\n**ownerReferences** (object[])\\n\\nList of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\n**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (3)'.
Params: "kubernetes://schema/apps/v1%40deployment"
[Trace - 15:41:22] Sending response 'custom/schema/content - (3)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.apps.v1.Deployment\",\"id\":\"apps/v1@Deployment\",\"apiVersion\":\"apps/v1\",\"kind\":\"Deployment\",\"description\":\"Deployment enables declarative updates for Pods and ReplicaSets.\",\"properties\":{\"status\":{\"description\":\"Most recently observed status of the Deployment.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentstatus\",\"markdownDescription\":\"status: Most recently observed status of the Deployment.\\n\\nDeploymentStatus is the most recently observed status of the Deployment.\\n\\n**availableReplicas** (integer)\\n\\nTotal number of available pods (ready for at least minReadySeconds) targeted by this deployment.\\n\\n**collisionCount** (integer)\\n\\nCount of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.\\n\\n**conditions** (object[])\\n\\nRepresents the latest available observations of a deployment's current state.\\n\\n**observedGeneration** (integer)\\n\\nThe generation observed by the deployment controller.\\n\\n**readyReplicas** (integer)\\n\\nTotal number of ready pods targeted by this deployment.\\n\\n**replicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment (their labels match the selector).\\n\\n**unavailableReplicas** (integer)\\n\\nTotal number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.\\n\\n**updatedReplicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment that have the desired template spec.\\n\\n\"},\"kind\":{\"type\":\"string\",\"description\":\"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"Deployment: Deployment enables declarative updates for Pods and ReplicaSets.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**metadata** (object)\\n\\nStandard object metadata.\\n\\n**spec** (object)\\n\\nSpecification of the desired behavior of the Deployment.\\n\\n**status** (object)\\n\\nMost recently observed status of the Deployment.\\n\\n\"},\"spec\":{\"description\":\"Specification of the desired behavior of the Deployment.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentspec\",\"markdownDescription\":\"spec: Specification of the desired behavior of the Deployment.\\n\\nDeploymentSpec is the specification of the desired behavior of the Deployment.\\n\\n**minReadySeconds** (integer)\\n\\nMinimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\\n\\n**paused** (boolean)\\n\\nIndicates that the deployment is paused.\\n\\n**progressDeadlineSeconds** (integer)\\n\\nThe maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\\n\\n**replicas** (integer)\\n\\nNumber of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\\n\\n**revisionHistoryLimit** (integer)\\n\\nThe number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\\n\\n**selector** (object)\\n\\nLabel selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\\n\\n**strategy** (object)\\n\\nThe deployment strategy to use to replace existing pods with new ones.\\n\\n**template** (object)\\n\\nTemplate describes the pods that will be created.\\n\\n\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\"},\"metadata\":{\"description\":\"Standard object metadata.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta\",\"markdownDescription\":\"metadata: Standard object metadata.\\n\\nObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\\n\\n**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\\n\\n**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\\n\\n**creationTimestamp** (object)\\n\\nCreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\\n\\n**deletionTimestamp** (object)\\n\\nDeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\\n\\n**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\\n\\n**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\\n\\n**initializers** (object)\\n\\nAn initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\n**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\\n\\n**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\\n\\n**ownerReferences** (object[])\\n\\nList of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\n**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (4)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta"
[Trace - 15:41:22] Sending response 'custom/schema/content - (4)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta\",\"description\":\"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\",\"properties\":{\"finalizers\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\"},\"clusterName\":{\"type\":\"string\",\"description\":\"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\",\"markdownDescription\":\"**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\"},\"deletionGracePeriodSeconds\":{\"type\":\"integer\",\"description\":\"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\",\"format\":\"int64\",\"markdownDescription\":\"**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\"},\"labels\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\"markdownDescription\":\"**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\"},\"generateName\":{\"type\":\"string\",\"description\":\"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\",\"markdownDescription\":\"**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\"},\"ownerReferences\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.ownerreference\"},\"x-kubernetes-patch-merge-key\":\"uid\",\"type\":\"array\",\"description\":\"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"ownerReferences: List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\nOwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.\\n\\n**apiVersion** (string)\\n\\nAPI version of the referent.\\n\\n**blockOwnerDeletion** (boolean)\\n\\nIf true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \\\"delete\\\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.\\n\\n**controller** (boolean)\\n\\nIf true, this reference points to the managing controller.\\n\\n**kind** (string)\\n\\nKind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**name** (string)\\n\\nName of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**uid** (string)\\n\\nUID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"},\"creationTimestamp\":{\"description\":\"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\"},\"uid\":{\"type\":\"string\",\"description\":\"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\"markdownDescription\":\"**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\"},\"name\":{\"type\":\"string\",\"description\":\"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\"markdownDescription\":\"**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\"},\"deletionTimestamp\":{\"description\":\"DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\"},\"namespace\":{\"type\":\"string\",\"description\":\"Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\",\"markdownDescription\":\"**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\"},\"generation\":{\"type\":\"integer\",\"description\":\"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\",\"format\":\"int64\",\"markdownDescription\":\"**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\"},\"initializers\":{\"description\":\"An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializers\",\"markdownDescription\":\"initializers: An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\nInitializers tracks the progress of initialization.\\n\\n**pending** (object[])\\n\\nPending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.\\n\\n**result** (object)\\n\\nIf result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.\\n\\n\"},\"resourceVersion\":{\"type\":\"string\",\"description\":\"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\",\"markdownDescription\":\"**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\"},\"annotations\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\"markdownDescription\":\"**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\"},\"selfLink\":{\"type\":\"string\",\"description\":\"SelfLink is a URL representing this object. Populated by the system. Read-only.\",\"markdownDescription\":\"**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (5)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentspec"
[Trace - 15:41:22] Sending response 'custom/schema/content - (5)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentSpec\",\"required\":[\"selector\",\"template\"],\"description\":\"DeploymentSpec is the specification of the desired behavior of the Deployment.\",\"properties\":{\"progressDeadlineSeconds\":{\"type\":\"integer\",\"description\":\"The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\",\"format\":\"int32\",\"markdownDescription\":\"**progressDeadlineSeconds** (integer)\\n\\nThe maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\"},\"replicas\":{\"type\":\"integer\",\"description\":\"Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\",\"format\":\"int32\",\"markdownDescription\":\"**replicas** (integer)\\n\\nNumber of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\"},\"selector\":{\"description\":\"Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselector\",\"markdownDescription\":\"selector: Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\\n\\nA label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nmatchExpressions is a list of label selector requirements. The requirements are ANDed.\\n\\n**matchLabels** (object)\\n\\nmatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\\n\\n\"},\"paused\":{\"type\":\"boolean\",\"description\":\"Indicates that the deployment is paused.\",\"markdownDescription\":\"**paused** (boolean)\\n\\nIndicates that the deployment is paused.\"},\"template\":{\"description\":\"Template describes the pods that will be created.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podtemplatespec\",\"markdownDescription\":\"template: Template describes the pods that will be created.\\n\\nPodTemplateSpec describes the data a pod should have when created from a template\\n\\n**metadata** (object)\\n\\nStandard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**spec** (object)\\n\\nSpecification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\n\"},\"revisionHistoryLimit\":{\"type\":\"integer\",\"description\":\"The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\",\"format\":\"int32\",\"markdownDescription\":\"**revisionHistoryLimit** (integer)\\n\\nThe number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\"},\"strategy\":{\"description\":\"The deployment strategy to use to replace existing pods with new ones.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentstrategy\",\"markdownDescription\":\"strategy: The deployment strategy to use to replace existing pods with new ones.\\n\\nDeploymentStrategy describes how to replace existing pods with new ones.\\n\\n**rollingUpdate** (object)\\n\\nRolling update config params. Present only if DeploymentStrategyType = RollingUpdate.\\n\\n**type** (string)\\n\\nType of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate.\\n\\n\"},\"minReadySeconds\":{\"type\":\"integer\",\"description\":\"Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\",\"format\":\"int32\",\"markdownDescription\":\"**minReadySeconds** (integer)\\n\\nMinimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (6)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentstatus"
[Trace - 15:41:22] Sending response 'custom/schema/content - (6)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentStatus\",\"description\":\"DeploymentStatus is the most recently observed status of the Deployment.\",\"properties\":{\"collisionCount\":{\"type\":\"integer\",\"description\":\"Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.\",\"format\":\"int32\",\"markdownDescription\":\"**collisionCount** (integer)\\n\\nCount of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.\"},\"replicas\":{\"type\":\"integer\",\"description\":\"Total number of non-terminated pods targeted by this deployment (their labels match the selector).\",\"format\":\"int32\",\"markdownDescription\":\"**replicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment (their labels match the selector).\"},\"observedGeneration\":{\"type\":\"integer\",\"description\":\"The generation observed by the deployment controller.\",\"format\":\"int64\",\"markdownDescription\":\"**observedGeneration** (integer)\\n\\nThe generation observed by the deployment controller.\"},\"updatedReplicas\":{\"type\":\"integer\",\"description\":\"Total number of non-terminated pods targeted by this deployment that have the desired template spec.\",\"format\":\"int32\",\"markdownDescription\":\"**updatedReplicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment that have the desired template spec.\"},\"availableReplicas\":{\"type\":\"integer\",\"description\":\"Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.\",\"format\":\"int32\",\"markdownDescription\":\"**availableReplicas** (integer)\\n\\nTotal number of available pods (ready for at least minReadySeconds) targeted by this deployment.\"},\"unavailableReplicas\":{\"type\":\"integer\",\"description\":\"Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.\",\"format\":\"int32\",\"markdownDescription\":\"**unavailableReplicas** (integer)\\n\\nTotal number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.\"},\"readyReplicas\":{\"type\":\"integer\",\"description\":\"Total number of ready pods targeted by this deployment.\",\"format\":\"int32\",\"markdownDescription\":\"**readyReplicas** (integer)\\n\\nTotal number of ready pods targeted by this deployment.\"},\"conditions\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentcondition\"},\"x-kubernetes-patch-merge-key\":\"type\",\"type\":\"array\",\"description\":\"Represents the latest available observations of a deployment's current state.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"conditions: Represents the latest available observations of a deployment's current state.\\n\\nDeploymentCondition describes the state of a deployment at a certain point.\\n\\n**lastTransitionTime** (object)\\n\\nLast time the condition transitioned from one status to another.\\n\\n**lastUpdateTime** (object)\\n\\nThe last time this condition was updated.\\n\\n**message** (string)\\n\\nA human readable message indicating details about the transition.\\n\\n**reason** (string)\\n\\nThe reason for the condition's last transition.\\n\\n**status** (string)\\n\\nStatus of the condition, one of True, False, Unknown.\\n\\n**type** (string)\\n\\nType of deployment condition.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (7)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializers"
[Trace - 15:41:22] Sending response 'custom/schema/content - (7)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Initializers\",\"required\":[\"pending\"],\"description\":\"Initializers tracks the progress of initialization.\",\"properties\":{\"result\":{\"description\":\"If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.status\",\"markdownDescription\":\"result: If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.\\n\\nStatus is a return value for calls that don't return other objects.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**code** (integer)\\n\\nSuggested HTTP return code for this status, 0 if not set.\\n\\n**details** (object)\\n\\nExtended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**message** (string)\\n\\nA human-readable description of the status of this operation.\\n\\n**metadata** (object)\\n\\nStandard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**reason** (string)\\n\\nA machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\\n\\n**status** (string)\\n\\nStatus of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\n\"},\"pending\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializer\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"pending: Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.\\n\\nInitializer is information about an initializer that has not yet completed.\\n\\n**name** (string)\\n\\nname of the process that is responsible for initializing this object.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (8)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time"
[Trace - 15:41:22] Sending response 'custom/schema/content - (8)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Time\",\"type\":\"string\",\"format\":\"date-time\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (9)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.ownerreference"
[Trace - 15:41:22] Sending response 'custom/schema/content - (9)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference\",\"required\":[\"apiVersion\",\"kind\",\"name\",\"uid\"],\"description\":\"OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.\",\"properties\":{\"kind\":{\"type\":\"string\",\"description\":\"Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"**kind** (string)\\n\\nKind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"},\"blockOwnerDeletion\":{\"type\":\"boolean\",\"description\":\"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \\\"delete\\\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.\",\"markdownDescription\":\"**blockOwnerDeletion** (boolean)\\n\\nIf true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \\\"delete\\\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.\"},\"uid\":{\"type\":\"string\",\"description\":\"UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\"markdownDescription\":\"**uid** (string)\\n\\nUID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\"},\"controller\":{\"type\":\"boolean\",\"description\":\"If true, this reference points to the managing controller.\",\"markdownDescription\":\"**controller** (boolean)\\n\\nIf true, this reference points to the managing controller.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"API version of the referent.\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPI version of the referent.\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (10)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentstrategy"
[Trace - 15:41:22] Sending response 'custom/schema/content - (10)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentStrategy\",\"description\":\"DeploymentStrategy describes how to replace existing pods with new ones.\",\"properties\":{\"rollingUpdate\":{\"description\":\"Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.rollingupdatedeployment\",\"markdownDescription\":\"rollingUpdate: Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.\\n\\nSpec to control the desired behavior of rolling update.\\n\\n**maxSurge** (object)\\n\\nThe maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.\\n\\n**maxUnavailable** (object)\\n\\nThe maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.\\n\\n\"},\"type\":{\"type\":\"string\",\"description\":\"Type of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate.\",\"markdownDescription\":\"**type** (string)\\n\\nType of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (11)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podtemplatespec"
[Trace - 15:41:22] Sending response 'custom/schema/content - (11)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodTemplateSpec\",\"description\":\"PodTemplateSpec describes the data a pod should have when created from a template\",\"properties\":{\"spec\":{\"description\":\"Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podspec\",\"markdownDescription\":\"spec: Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\nPodSpec is a description of a pod.\\n\\n**activeDeadlineSeconds** (integer)\\n\\nOptional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\\n\\n**affinity** (object)\\n\\nIf specified, the pod's scheduling constraints\\n\\n**automountServiceAccountToken** (boolean)\\n\\nAutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\\n\\n**containers** (object[])\\n\\nList of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\\n\\n**dnsConfig** (object)\\n\\nSpecifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. This is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\\n\\n**dnsPolicy** (string)\\n\\nSet DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Note that 'None' policy is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\\n\\n**hostAliases** (object[])\\n\\nHostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\\n\\n**hostIPC** (boolean)\\n\\nUse the host's ipc namespace. Optional: Default to false.\\n\\n**hostNetwork** (boolean)\\n\\nHost networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\\n\\n**hostPID** (boolean)\\n\\nUse the host's pid namespace. Optional: Default to false.\\n\\n**hostname** (string)\\n\\nSpecifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\\n\\n**imagePullSecrets** (object[])\\n\\nImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\\n\\n**initContainers** (object[])\\n\\nList of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\n\\n**nodeName** (string)\\n\\nNodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\\n\\n**nodeSelector** (object)\\n\\nNodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\\n\\n**priority** (integer)\\n\\nThe priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\\n\\n**priorityClassName** (string)\\n\\nIf specified, indicates the pod's priority. \\\"SYSTEM\\\" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\\n\\n**restartPolicy** (string)\\n\\nRestart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\\n\\n**schedulerName** (string)\\n\\nIf specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\\n\\n**securityContext** (object)\\n\\nSecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\\n\\n**serviceAccount** (string)\\n\\nDeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\\n\\n**serviceAccountName** (string)\\n\\nServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\\n\\n**subdomain** (string)\\n\\nIf specified, the fully qualified Pod hostname will be \\\"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\\\". If not specified, the pod will not have a domainname at all.\\n\\n**terminationGracePeriodSeconds** (integer)\\n\\nOptional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\\n\\n**tolerations** (object[])\\n\\nIf specified, the pod's tolerations.\\n\\n**volumes** (object[])\\n\\nList of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\\n\\n\"},\"metadata\":{\"description\":\"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta\",\"markdownDescription\":\"metadata: Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\nObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\\n\\n**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\\n\\n**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\\n\\n**creationTimestamp** (object)\\n\\nCreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\\n\\n**deletionTimestamp** (object)\\n\\nDeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\\n\\n**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\\n\\n**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\\n\\n**initializers** (object)\\n\\nAn initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\n**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\\n\\n**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\\n\\n**ownerReferences** (object[])\\n\\nList of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\n**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (12)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (12)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector\",\"description\":\"A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\",\"properties\":{\"matchLabels\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\"markdownDescription\":\"**matchLabels** (object)\\n\\nmatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"},\"matchExpressions\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselectorrequirement\"},\"type\":\"array\",\"description\":\"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\"markdownDescription\":\"matchExpressions: matchExpressions is a list of label selector requirements. The requirements are ANDed.\\n\\nA label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\\n\\n**key** (string)\\n\\nkey is the label key that the selector applies to.\\n\\n**operator** (string)\\n\\noperator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\\n\\n**values** (string[])\\n\\nvalues is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (13)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentcondition"
[Trace - 15:41:22] Sending response 'custom/schema/content - (13)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentCondition\",\"required\":[\"type\",\"status\"],\"description\":\"DeploymentCondition describes the state of a deployment at a certain point.\",\"properties\":{\"status\":{\"type\":\"string\",\"description\":\"Status of the condition, one of True, False, Unknown.\",\"markdownDescription\":\"**status** (string)\\n\\nStatus of the condition, one of True, False, Unknown.\"},\"reason\":{\"type\":\"string\",\"description\":\"The reason for the condition's last transition.\",\"markdownDescription\":\"**reason** (string)\\n\\nThe reason for the condition's last transition.\"},\"lastUpdateTime\":{\"description\":\"The last time this condition was updated.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"The last time this condition was updated.\"},\"type\":{\"type\":\"string\",\"description\":\"Type of deployment condition.\",\"markdownDescription\":\"**type** (string)\\n\\nType of deployment condition.\"},\"message\":{\"type\":\"string\",\"description\":\"A human readable message indicating details about the transition.\",\"markdownDescription\":\"**message** (string)\\n\\nA human readable message indicating details about the transition.\"},\"lastTransitionTime\":{\"description\":\"Last time the condition transitioned from one status to another.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"Last time the condition transitioned from one status to another.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (14)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializer"
[Trace - 15:41:22] Sending response 'custom/schema/content - (14)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Initializer\",\"required\":[\"name\"],\"description\":\"Initializer is information about an initializer that has not yet completed.\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"name of the process that is responsible for initializing this object.\",\"markdownDescription\":\"**name** (string)\\n\\nname of the process that is responsible for initializing this object.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (15)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.status"
[Trace - 15:41:22] Sending response 'custom/schema/content - (15)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Status\",\"id\":\"v1@Status\",\"apiVersion\":\"v1\",\"kind\":\"Status\",\"description\":\"Status is a return value for calls that don't return other objects.\",\"properties\":{\"status\":{\"type\":\"string\",\"description\":\"Status of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\",\"markdownDescription\":\"**status** (string)\\n\\nStatus of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\"},\"kind\":{\"type\":\"string\",\"description\":\"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"Status: Status is a return value for calls that don't return other objects.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**code** (integer)\\n\\nSuggested HTTP return code for this status, 0 if not set.\\n\\n**details** (object)\\n\\nExtended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**message** (string)\\n\\nA human-readable description of the status of this operation.\\n\\n**metadata** (object)\\n\\nStandard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**reason** (string)\\n\\nA machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\\n\\n**status** (string)\\n\\nStatus of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\n\"},\"code\":{\"type\":\"integer\",\"description\":\"Suggested HTTP return code for this status, 0 if not set.\",\"format\":\"int32\",\"markdownDescription\":\"**code** (integer)\\n\\nSuggested HTTP return code for this status, 0 if not set.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\"},\"reason\":{\"type\":\"string\",\"description\":\"A machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\",\"markdownDescription\":\"**reason** (string)\\n\\nA machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\"},\"details\":{\"description\":\"Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statusdetails\",\"markdownDescription\":\"details: Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\\n\\nStatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.\\n\\n**causes** (object[])\\n\\nThe Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.\\n\\n**group** (string)\\n\\nThe group attribute of the resource associated with the status StatusReason.\\n\\n**kind** (string)\\n\\nThe kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**name** (string)\\n\\nThe name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).\\n\\n**retryAfterSeconds** (integer)\\n\\nIf specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.\\n\\n**uid** (string)\\n\\nUID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"},\"message\":{\"type\":\"string\",\"description\":\"A human-readable description of the status of this operation.\",\"markdownDescription\":\"**message** (string)\\n\\nA human-readable description of the status of this operation.\"},\"metadata\":{\"description\":\"Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.listmeta\",\"markdownDescription\":\"metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\nListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.\\n\\n**continue** (string)\\n\\ncontinue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.\\n\\n**resourceVersion** (string)\\n\\nString that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nselfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (16)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.rollingupdatedeployment"
[Trace - 15:41:22] Sending response 'custom/schema/content - (16)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.apps.v1.RollingUpdateDeployment\",\"description\":\"Spec to control the desired behavior of rolling update.\",\"properties\":{\"maxSurge\":{\"description\":\"The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.\"},\"maxUnavailable\":{\"description\":\"The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (17)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podspec"
[Trace - 15:41:22] Sending response 'custom/schema/content - (17)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodSpec\",\"required\":[\"containers\"],\"description\":\"PodSpec is a description of a pod.\",\"properties\":{\"dnsPolicy\":{\"type\":\"string\",\"description\":\"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Note that 'None' policy is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\",\"markdownDescription\":\"**dnsPolicy** (string)\\n\\nSet DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Note that 'None' policy is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\",\"enum\":[\"ClusterFirstWithHostNet\",\"ClusterFirst\",\"Default\",\"None\"]},\"serviceAccountName\":{\"type\":\"string\",\"description\":\"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\"markdownDescription\":\"**serviceAccountName** (string)\\n\\nServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\"},\"schedulerName\":{\"type\":\"string\",\"description\":\"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\",\"markdownDescription\":\"**schedulerName** (string)\\n\\nIf specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\"},\"hostNetwork\":{\"type\":\"boolean\",\"description\":\"Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\",\"markdownDescription\":\"**hostNetwork** (boolean)\\n\\nHost networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\"},\"restartPolicy\":{\"type\":\"string\",\"description\":\"Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\"markdownDescription\":\"**restartPolicy** (string)\\n\\nRestart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\"enum\":[\"Always\",\"OnFailure\",\"Never\"]},\"hostIPC\":{\"type\":\"boolean\",\"description\":\"Use the host's ipc namespace. Optional: Default to false.\",\"markdownDescription\":\"**hostIPC** (boolean)\\n\\nUse the host's ipc namespace. Optional: Default to false.\"},\"automountServiceAccountToken\":{\"type\":\"boolean\",\"description\":\"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\"markdownDescription\":\"**automountServiceAccountToken** (boolean)\\n\\nAutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\"},\"priorityClassName\":{\"type\":\"string\",\"description\":\"If specified, indicates the pod's priority. \\\"SYSTEM\\\" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\",\"markdownDescription\":\"**priorityClassName** (string)\\n\\nIf specified, indicates the pod's priority. \\\"SYSTEM\\\" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\"},\"activeDeadlineSeconds\":{\"type\":\"integer\",\"description\":\"Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\",\"format\":\"int64\",\"markdownDescription\":\"**activeDeadlineSeconds** (integer)\\n\\nOptional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\"},\"securityContext\":{\"description\":\"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podsecuritycontext\",\"markdownDescription\":\"securityContext: SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\\n\\nPodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.\\n\\n**fsGroup** (integer)\\n\\nA special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\\n\\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\n\\n**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\\n\\n**seLinuxOptions** (object)\\n\\nThe SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\\n\\n**supplementalGroups** (integer[])\\n\\nA list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\\n\\n\"},\"nodeName\":{\"type\":\"string\",\"description\":\"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\",\"markdownDescription\":\"**nodeName** (string)\\n\\nNodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\"},\"dnsConfig\":{\"description\":\"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. This is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.poddnsconfig\",\"markdownDescription\":\"dnsConfig: Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. This is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\\n\\nPodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.\\n\\n**nameservers** (string[])\\n\\nA list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\\n\\n**options** (object[])\\n\\nA list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\\n\\n**searches** (string[])\\n\\nA list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\\n\\n\"},\"hostAliases\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.hostalias\"},\"x-kubernetes-patch-merge-key\":\"ip\",\"type\":\"array\",\"description\":\"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"hostAliases: HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\\n\\nHostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\\n\\n**hostnames** (string[])\\n\\nHostnames for the above IP address.\\n\\n**ip** (string)\\n\\nIP address of the host file entry.\\n\\n\"},\"hostname\":{\"type\":\"string\",\"description\":\"Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\",\"markdownDescription\":\"**hostname** (string)\\n\\nSpecifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\"},\"serviceAccount\":{\"type\":\"string\",\"description\":\"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\",\"markdownDescription\":\"**serviceAccount** (string)\\n\\nDeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\"},\"nodeSelector\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\"markdownDescription\":\"**nodeSelector** (object)\\n\\nNodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\"},\"priority\":{\"type\":\"integer\",\"description\":\"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\",\"format\":\"int32\",\"markdownDescription\":\"**priority** (integer)\\n\\nThe priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\"},\"terminationGracePeriodSeconds\":{\"type\":\"integer\",\"description\":\"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\",\"format\":\"int64\",\"markdownDescription\":\"**terminationGracePeriodSeconds** (integer)\\n\\nOptional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\"},\"affinity\":{\"description\":\"If specified, the pod's scheduling constraints\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.affinity\",\"markdownDescription\":\"affinity: If specified, the pod's scheduling constraints\\n\\nAffinity is a group of affinity scheduling rules.\\n\\n**nodeAffinity** (object)\\n\\nDescribes node affinity scheduling rules for the pod.\\n\\n**podAffinity** (object)\\n\\nDescribes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\\n\\n**podAntiAffinity** (object)\\n\\nDescribes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\\n\\n\"},\"containers\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.container\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"containers: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\\n\\nA single application container that you want to run within a pod.\\n\\n**args** (string[])\\n\\nArguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**command** (string[])\\n\\nEntrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**env** (object[])\\n\\nList of environment variables to set in the container. Cannot be updated.\\n\\n**envFrom** (object[])\\n\\nList of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\\n\\n**image** (string)\\n\\nDocker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\\n\\n**imagePullPolicy** (string)\\n\\nImage pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\\n\\n**lifecycle** (object)\\n\\nActions that the management system should take in response to container lifecycle events. Cannot be updated.\\n\\n**livenessProbe** (object)\\n\\nPeriodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**name** (string)\\n\\nName of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\\n\\n**ports** (object[])\\n\\nList of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\\n\\n**readinessProbe** (object)\\n\\nPeriodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**resources** (object)\\n\\nCompute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\\n\\n**securityContext** (object)\\n\\nSecurity options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\\n\\n**stdin** (boolean)\\n\\nWhether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\\n\\n**stdinOnce** (boolean)\\n\\nWhether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\\n\\n**terminationMessagePath** (string)\\n\\nOptional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\\n\\n**terminationMessagePolicy** (string)\\n\\nIndicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\\n\\n**tty** (boolean)\\n\\nWhether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\\n\\n**volumeDevices** (object[])\\n\\nvolumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\\n\\n**volumeMounts** (object[])\\n\\nPod volumes to mount into the container's filesystem. Cannot be updated.\\n\\n**workingDir** (string)\\n\\nContainer's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\\n\\n\"},\"volumes\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volume\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\",\"x-kubernetes-patch-strategy\":\"merge,retainKeys\",\"markdownDescription\":\"volumes: List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\\n\\nVolume represents a named volume in a pod that may be accessed by any container in the pod.\\n\\n**awsElasticBlockStore** (object)\\n\\nAWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n**azureDisk** (object)\\n\\nAzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\\n\\n**azureFile** (object)\\n\\nAzureFile represents an Azure File Service mount on the host and bind mount to the pod.\\n\\n**cephfs** (object)\\n\\nCephFS represents a Ceph FS mount on the host that shares a pod's lifetime\\n\\n**cinder** (object)\\n\\nCinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n**configMap** (object)\\n\\nConfigMap represents a configMap that should populate this volume\\n\\n**downwardAPI** (object)\\n\\nDownwardAPI represents downward API about the pod that should populate this volume\\n\\n**emptyDir** (object)\\n\\nEmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\\n\\n**fc** (object)\\n\\nFC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\\n\\n**flexVolume** (object)\\n\\nFlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\\n\\n**flocker** (object)\\n\\nFlocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\\n\\n**gcePersistentDisk** (object)\\n\\nGCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**gitRepo** (object)\\n\\nGitRepo represents a git repository at a particular revision.\\n\\n**glusterfs** (object)\\n\\nGlusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md\\n\\n**hostPath** (object)\\n\\nHostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\n**iscsi** (object)\\n\\nISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md\\n\\n**name** (string)\\n\\nVolume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**nfs** (object)\\n\\nNFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n**persistentVolumeClaim** (object)\\n\\nPersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\\n\\n**photonPersistentDisk** (object)\\n\\nPhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\\n\\n**portworxVolume** (object)\\n\\nPortworxVolume represents a portworx volume attached and mounted on kubelets host machine\\n\\n**projected** (object)\\n\\nItems for all in one resources secrets, configmaps, and downward API\\n\\n**quobyte** (object)\\n\\nQuobyte represents a Quobyte mount on the host that shares a pod's lifetime\\n\\n**rbd** (object)\\n\\nRBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md\\n\\n**scaleIO** (object)\\n\\nScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\\n\\n**secret** (object)\\n\\nSecret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\\n\\n**storageos** (object)\\n\\nStorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\\n\\n**vsphereVolume** (object)\\n\\nVsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\\n\\n\"},\"tolerations\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.toleration\"},\"type\":\"array\",\"description\":\"If specified, the pod's tolerations.\",\"markdownDescription\":\"tolerations: If specified, the pod's tolerations.\\n\\nThe pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.\\n\\n**effect** (string)\\n\\nEffect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\\n\\n**key** (string)\\n\\nKey is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\\n\\n**operator** (string)\\n\\nOperator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\\n\\n**tolerationSeconds** (integer)\\n\\nTolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\\n\\n**value** (string)\\n\\nValue is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\\n\\n\"},\"subdomain\":{\"type\":\"string\",\"description\":\"If specified, the fully qualified Pod hostname will be \\\"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\\\". If not specified, the pod will not have a domainname at all.\",\"markdownDescription\":\"**subdomain** (string)\\n\\nIf specified, the fully qualified Pod hostname will be \\\"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\\\". If not specified, the pod will not have a domainname at all.\"},\"initContainers\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.container\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"initContainers: List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\n\\nA single application container that you want to run within a pod.\\n\\n**args** (string[])\\n\\nArguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**command** (string[])\\n\\nEntrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**env** (object[])\\n\\nList of environment variables to set in the container. Cannot be updated.\\n\\n**envFrom** (object[])\\n\\nList of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\\n\\n**image** (string)\\n\\nDocker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\\n\\n**imagePullPolicy** (string)\\n\\nImage pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\\n\\n**lifecycle** (object)\\n\\nActions that the management system should take in response to container lifecycle events. Cannot be updated.\\n\\n**livenessProbe** (object)\\n\\nPeriodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**name** (string)\\n\\nName of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\\n\\n**ports** (object[])\\n\\nList of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\\n\\n**readinessProbe** (object)\\n\\nPeriodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**resources** (object)\\n\\nCompute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\\n\\n**securityContext** (object)\\n\\nSecurity options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\\n\\n**stdin** (boolean)\\n\\nWhether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\\n\\n**stdinOnce** (boolean)\\n\\nWhether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\\n\\n**terminationMessagePath** (string)\\n\\nOptional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\\n\\n**terminationMessagePolicy** (string)\\n\\nIndicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\\n\\n**tty** (boolean)\\n\\nWhether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\\n\\n**volumeDevices** (object[])\\n\\nvolumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\\n\\n**volumeMounts** (object[])\\n\\nPod volumes to mount into the container's filesystem. Cannot be updated.\\n\\n**workingDir** (string)\\n\\nContainer's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\\n\\n\"},\"imagePullSecrets\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"imagePullSecrets: ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"hostPID\":{\"type\":\"boolean\",\"description\":\"Use the host's pid namespace. Optional: Default to false.\",\"markdownDescription\":\"**hostPID** (boolean)\\n\\nUse the host's pid namespace. Optional: Default to false.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (18)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselectorrequirement"
[Trace - 15:41:22] Sending response 'custom/schema/content - (18)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement\",\"required\":[\"key\",\"operator\"],\"description\":\"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\"properties\":{\"operator\":{\"type\":\"string\",\"description\":\"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\"markdownDescription\":\"**operator** (string)\\n\\noperator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"},\"values\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\"markdownDescription\":\"**values** (string[])\\n\\nvalues is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"},\"key\":{\"x-kubernetes-patch-merge-key\":\"key\",\"type\":\"string\",\"description\":\"key is the label key that the selector applies to.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"**key** (string)\\n\\nkey is the label key that the selector applies to.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (19)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.listmeta"
[Trace - 15:41:22] Sending response 'custom/schema/content - (19)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta\",\"description\":\"ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.\",\"properties\":{\"continue\":{\"type\":\"string\",\"description\":\"continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.\",\"markdownDescription\":\"**continue** (string)\\n\\ncontinue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.\"},\"selfLink\":{\"type\":\"string\",\"description\":\"selfLink is a URL representing this object. Populated by the system. Read-only.\",\"markdownDescription\":\"**selfLink** (string)\\n\\nselfLink is a URL representing this object. Populated by the system. Read-only.\"},\"resourceVersion\":{\"type\":\"string\",\"description\":\"String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\",\"markdownDescription\":\"**resourceVersion** (string)\\n\\nString that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (20)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statusdetails"
[Trace - 15:41:22] Sending response 'custom/schema/content - (20)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails\",\"description\":\"StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.\",\"properties\":{\"kind\":{\"type\":\"string\",\"description\":\"The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"**kind** (string)\\n\\nThe kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"},\"group\":{\"type\":\"string\",\"description\":\"The group attribute of the resource associated with the status StatusReason.\",\"markdownDescription\":\"**group** (string)\\n\\nThe group attribute of the resource associated with the status StatusReason.\"},\"name\":{\"type\":\"string\",\"description\":\"The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).\",\"markdownDescription\":\"**name** (string)\\n\\nThe name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).\"},\"retryAfterSeconds\":{\"type\":\"integer\",\"description\":\"If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.\",\"format\":\"int32\",\"markdownDescription\":\"**retryAfterSeconds** (integer)\\n\\nIf specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.\"},\"causes\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statuscause\"},\"type\":\"array\",\"description\":\"The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.\",\"markdownDescription\":\"causes: The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.\\n\\nStatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.\\n\\n**field** (string)\\n\\nThe field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\\n\\nExamples:\\n \\\"name\\\" - the field \\\"name\\\" on the current resource\\n \\\"items[0].name\\\" - the field \\\"name\\\" on the first array entry in \\\"items\\\"\\n\\n**message** (string)\\n\\nA human-readable description of the cause of the error. This field may be presented as-is to a reader.\\n\\n**reason** (string)\\n\\nA machine-readable description of the cause of the error. If this value is empty there is no information available.\\n\\n\"},\"uid\":{\"type\":\"string\",\"description\":\"UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\"markdownDescription\":\"**uid** (string)\\n\\nUID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (21)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring"
[Trace - 15:41:22] Sending response 'custom/schema/content - (21)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.util.intstr.IntOrString\",\"oneOf\":[{\"type\":\"string\"},{\"type\":\"integer\"}]}"
[Trace - 15:41:22] Received request 'custom/schema/content - (22)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.localobjectreference"
[Trace - 15:41:22] Sending response 'custom/schema/content - (22)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.LocalObjectReference\",\"description\":\"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (23)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.container"
[Trace - 15:41:22] Sending response 'custom/schema/content - (23)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Container\",\"required\":[\"name\"],\"description\":\"A single application container that you want to run within a pod.\",\"properties\":{\"livenessProbe\":{\"description\":\"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.probe\",\"markdownDescription\":\"livenessProbe: Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\nProbe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**failureThreshold** (integer)\\n\\nMinimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**initialDelaySeconds** (integer)\\n\\nNumber of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**periodSeconds** (integer)\\n\\nHow often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\\n\\n**successThreshold** (integer)\\n\\nMinimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n**timeoutSeconds** (integer)\\n\\nNumber of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n\"},\"terminationMessagePath\":{\"type\":\"string\",\"description\":\"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\"markdownDescription\":\"**terminationMessagePath** (string)\\n\\nOptional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\"},\"workingDir\":{\"type\":\"string\",\"description\":\"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\"markdownDescription\":\"**workingDir** (string)\\n\\nContainer's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\"},\"image\":{\"type\":\"string\",\"description\":\"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\"markdownDescription\":\"**image** (string)\\n\\nDocker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\"},\"args\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\"markdownDescription\":\"**args** (string[])\\n\\nArguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"},\"volumeMounts\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volumemount\"},\"x-kubernetes-patch-merge-key\":\"mountPath\",\"type\":\"array\",\"description\":\"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"volumeMounts: Pod volumes to mount into the container's filesystem. Cannot be updated.\\n\\nVolumeMount describes a mounting of a Volume within a container.\\n\\n**mountPath** (string)\\n\\nPath within the container at which the volume should be mounted. Must not contain ':'.\\n\\n**mountPropagation** (string)\\n\\nmountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.\\n\\n**name** (string)\\n\\nThis must match the Name of a Volume.\\n\\n**readOnly** (boolean)\\n\\nMounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\\n\\n**subPath** (string)\\n\\nPath within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\\n\\n\"},\"tty\":{\"type\":\"boolean\",\"description\":\"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\"markdownDescription\":\"**tty** (boolean)\\n\\nWhether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\"},\"lifecycle\":{\"description\":\"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.lifecycle\",\"markdownDescription\":\"lifecycle: Actions that the management system should take in response to container lifecycle events. Cannot be updated.\\n\\nLifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.\\n\\n**postStart** (object)\\n\\nPostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\n**preStop** (object)\\n\\nPreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\n\"},\"securityContext\":{\"description\":\"Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.securitycontext\",\"markdownDescription\":\"securityContext: Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\\n\\nSecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.\\n\\n**allowPrivilegeEscalation** (boolean)\\n\\nAllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\\n\\n**capabilities** (object)\\n\\nThe capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\\n\\n**privileged** (boolean)\\n\\nRun container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\\n\\n**readOnlyRootFilesystem** (boolean)\\n\\nWhether this container has a read-only root filesystem. Default is false.\\n\\n**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n**seLinuxOptions** (object)\\n\\nThe SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\"markdownDescription\":\"**name** (string)\\n\\nName of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\"},\"envFrom\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.envfromsource\"},\"type\":\"array\",\"description\":\"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\"markdownDescription\":\"envFrom: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\\n\\nEnvFromSource represents the source of a set of ConfigMaps\\n\\n**configMapRef** (object)\\n\\nThe ConfigMap to select from\\n\\n**prefix** (string)\\n\\nAn optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\\n\\n**secretRef** (object)\\n\\nThe Secret to select from\\n\\n\"},\"volumeDevices\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volumedevice\"},\"x-kubernetes-patch-merge-key\":\"devicePath\",\"type\":\"array\",\"description\":\"volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"volumeDevices: volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\\n\\nvolumeDevice describes a mapping of a raw block device within a container.\\n\\n**devicePath** (string)\\n\\ndevicePath is the path inside of the container that the device will be mapped to.\\n\\n**name** (string)\\n\\nname must match the name of a persistentVolumeClaim in the pod\\n\\n\"},\"stdin\":{\"type\":\"boolean\",\"description\":\"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\"markdownDescription\":\"**stdin** (boolean)\\n\\nWhether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\"},\"stdinOnce\":{\"type\":\"boolean\",\"description\":\"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\"markdownDescription\":\"**stdinOnce** (boolean)\\n\\nWhether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\"},\"terminationMessagePolicy\":{\"type\":\"string\",\"description\":\"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\"markdownDescription\":\"**terminationMessagePolicy** (string)\\n\\nIndicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\"enum\":[\"File\",\"FallbackToLogsOnError\"]},\"command\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\"markdownDescription\":\"**command** (string[])\\n\\nEntrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"},\"env\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.envvar\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of environment variables to set in the container. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"env: List of environment variables to set in the container. Cannot be updated.\\n\\nEnvVar represents an environment variable present in a Container.\\n\\n**name** (string)\\n\\nName of the environment variable. Must be a C_IDENTIFIER.\\n\\n**value** (string)\\n\\nVariable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\\n\\n**valueFrom** (object)\\n\\nSource for the environment variable's value. Cannot be used if value is not empty.\\n\\n\"},\"imagePullPolicy\":{\"type\":\"string\",\"description\":\"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\"markdownDescription\":\"**imagePullPolicy** (string)\\n\\nImage pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\"enum\":[\"Always\",\"Never\",\"IfNotPresent\"]},\"readinessProbe\":{\"description\":\"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.probe\",\"markdownDescription\":\"readinessProbe: Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\nProbe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**failureThreshold** (integer)\\n\\nMinimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**initialDelaySeconds** (integer)\\n\\nNumber of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**periodSeconds** (integer)\\n\\nHow often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\\n\\n**successThreshold** (integer)\\n\\nMinimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n**timeoutSeconds** (integer)\\n\\nNumber of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n\"},\"ports\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.containerport\"},\"x-kubernetes-patch-merge-key\":\"containerPort\",\"type\":\"array\",\"description\":\"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"ports: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\\n\\nContainerPort represents a network port in a single container.\\n\\n**containerPort** (integer)\\n\\nNumber of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\\n\\n**hostIP** (string)\\n\\nWhat host IP to bind the external port to.\\n\\n**hostPort** (integer)\\n\\nNumber of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\\n\\n**name** (string)\\n\\nIf specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\\n\\n**protocol** (string)\\n\\nProtocol for port. Must be UDP or TCP. Defaults to \\\"TCP\\\".\\n\\n\"},\"resources\":{\"description\":\"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.resourcerequirements\",\"markdownDescription\":\"resources: Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\\n\\nResourceRequirements describes the compute resource requirements.\\n\\n**limits** (object)\\n\\nLimits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\\n\\n**requests** (object)\\n\\nRequests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (24)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.toleration"
[Trace - 15:41:22] Sending response 'custom/schema/content - (24)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Toleration\",\"description\":\"The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.\",\"properties\":{\"operator\":{\"type\":\"string\",\"description\":\"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\"markdownDescription\":\"**operator** (string)\\n\\nOperator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\"},\"key\":{\"type\":\"string\",\"description\":\"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\"markdownDescription\":\"**key** (string)\\n\\nKey is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\"},\"tolerationSeconds\":{\"type\":\"integer\",\"description\":\"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\"format\":\"int64\",\"markdownDescription\":\"**tolerationSeconds** (integer)\\n\\nTolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\"},\"effect\":{\"type\":\"string\",\"description\":\"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\"markdownDescription\":\"**effect** (string)\\n\\nEffect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\"enum\":[\"NoSchedule\",\"PreferNoSchedule\",\"NoExecute\"]},\"value\":{\"type\":\"string\",\"description\":\"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\"markdownDescription\":\"**value** (string)\\n\\nValue is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (25)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volume"
[Trace - 15:41:22] Sending response 'custom/schema/content - (25)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.Volume\",\"required\":[\"name\"],\"description\":\"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\"properties\":{\"photonPersistentDisk\":{\"description\":\"PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.photonpersistentdiskvolumesource\",\"markdownDescription\":\"photonPersistentDisk: PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\\n\\nRepresents a Photon Controller persistent disk resource.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**pdID** (string)\\n\\nID that identifies Photon Controller persistent disk\\n\\n\"},\"quobyte\":{\"description\":\"Quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.quobytevolumesource\",\"markdownDescription\":\"quobyte: Quobyte represents a Quobyte mount on the host that shares a pod's lifetime\\n\\nRepresents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.\\n\\n**group** (string)\\n\\nGroup to map volume access to Default is no group\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\\n\\n**registry** (string)\\n\\nRegistry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\\n\\n**user** (string)\\n\\nUser to map volume access to Defaults to serivceaccount user\\n\\n**volume** (string)\\n\\nVolume is a string that references an already created Quobyte volume by name.\\n\\n\"},\"azureDisk\":{\"description\":\"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.azurediskvolumesource\",\"markdownDescription\":\"azureDisk: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\\n\\nAzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\\n\\n**cachingMode** (string)\\n\\nHost Caching mode: None, Read Only, Read Write.\\n\\n**diskName** (string)\\n\\nThe Name of the data disk in the blob storage\\n\\n**diskURI** (string)\\n\\nThe URI the data disk in the blob storage\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**kind** (string)\\n\\nExpected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n\"},\"portworxVolume\":{\"description\":\"PortworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.portworxvolumesource\",\"markdownDescription\":\"portworxVolume: PortworxVolume represents a portworx volume attached and mounted on kubelets host machine\\n\\nPortworxVolumeSource represents a Portworx volume resource.\\n\\n**fsType** (string)\\n\\nFSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**volumeID** (string)\\n\\nVolumeID uniquely identifies a Portworx volume\\n\\n\"},\"glusterfs\":{\"description\":\"Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.glusterfsvolumesource\",\"markdownDescription\":\"glusterfs: Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md\\n\\nRepresents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.\\n\\n**endpoints** (string)\\n\\nEndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\\n\\n**path** (string)\\n\\nPath is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\\n\\n\"},\"gitRepo\":{\"description\":\"GitRepo represents a git repository at a particular revision.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.gitrepovolumesource\",\"markdownDescription\":\"gitRepo: GitRepo represents a git repository at a particular revision.\\n\\nRepresents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\\n\\n**directory** (string)\\n\\nTarget directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\\n\\n**repository** (string)\\n\\nRepository URL\\n\\n**revision** (string)\\n\\nCommit hash for the specified revision.\\n\\n\"},\"scaleIO\":{\"description\":\"ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.scaleiovolumesource\",\"markdownDescription\":\"scaleIO: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\\n\\nScaleIOVolumeSource represents a persistent ScaleIO volume\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**gateway** (string)\\n\\nThe host address of the ScaleIO API Gateway.\\n\\n**protectionDomain** (string)\\n\\nThe name of the ScaleIO Protection Domain for the configured storage.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretRef** (object)\\n\\nSecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\\n\\n**sslEnabled** (boolean)\\n\\nFlag to enable/disable SSL communication with Gateway, default false\\n\\n**storageMode** (string)\\n\\nIndicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\n\\n**storagePool** (string)\\n\\nThe ScaleIO Storage Pool associated with the protection domain.\\n\\n**system** (string)\\n\\nThe name of the storage system as configured in ScaleIO.\\n\\n**volumeName** (string)\\n\\nThe name of a volume already created in the ScaleIO system that is associated with this volume source.\\n\\n\"},\"emptyDir\":{\"description\":\"EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.emptydirvolumesource\",\"markdownDescription\":\"emptyDir: EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\\n\\nRepresents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.\\n\\n**medium** (string)\\n\\nWhat type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\\n\\n**sizeLimit** (object)\\n\\nTotal amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\\n\\n\"},\"cinder\":{\"description\":\"Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.cindervolumesource\",\"markdownDescription\":\"cinder: Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\nRepresents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n**volumeID** (string)\\n\\nvolume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n\"},\"flocker\":{\"description\":\"Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.flockervolumesource\",\"markdownDescription\":\"flocker: Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\\n\\nRepresents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.\\n\\n**datasetName** (string)\\n\\nName of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated\\n\\n**datasetUUID** (string)\\n\\nUUID of the dataset. This is unique identifier of a Flocker dataset\\n\\n\"},\"persistentVolumeClaim\":{\"description\":\"PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.persistentvolumeclaimvolumesource\",\"markdownDescription\":\"persistentVolumeClaim: PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\\n\\nPersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).\\n\\n**claimName** (string)\\n\\nClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\\n\\n**readOnly** (boolean)\\n\\nWill force the ReadOnly setting in VolumeMounts. Default false.\\n\\n\"},\"configMap\":{\"description\":\"ConfigMap represents a configMap that should populate this volume\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapvolumesource\",\"markdownDescription\":\"configMap: ConfigMap represents a configMap that should populate this volume\\n\\nAdapts a ConfigMap into a volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.\\n\\n**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\\n\\n\"},\"cephfs\":{\"description\":\"CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.cephfsvolumesource\",\"markdownDescription\":\"cephfs: CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\\n\\nRepresents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.\\n\\n**monitors** (string[])\\n\\nRequired: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**path** (string)\\n\\nOptional: Used as the mounted root, rather than the full Ceph tree, default is /\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**secretFile** (string)\\n\\nOptional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**secretRef** (object)\\n\\nOptional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**user** (string)\\n\\nOptional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n\"},\"name\":{\"type\":\"string\",\"description\":\"Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nVolume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"},\"iscsi\":{\"description\":\"ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.iscsivolumesource\",\"markdownDescription\":\"iscsi: ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md\\n\\nRepresents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.\\n\\n**chapAuthDiscovery** (boolean)\\n\\nwhether support iSCSI Discovery CHAP authentication\\n\\n**chapAuthSession** (boolean)\\n\\nwhether support iSCSI Session CHAP authentication\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\n\\n**initiatorName** (string)\\n\\nCustom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.\\n\\n**iqn** (string)\\n\\nTarget iSCSI Qualified Name.\\n\\n**iscsiInterface** (string)\\n\\niSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\\n\\n**lun** (integer)\\n\\niSCSI Target Lun number.\\n\\n**portals** (string[])\\n\\niSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\\n\\n**secretRef** (object)\\n\\nCHAP Secret for iSCSI target and initiator authentication\\n\\n**targetPortal** (string)\\n\\niSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\\n\\n\"},\"projected\":{\"description\":\"Items for all in one resources secrets, configmaps, and downward API\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.projectedvolumesource\",\"markdownDescription\":\"projected: Items for all in one resources secrets, configmaps, and downward API\\n\\nRepresents a projected volume source\\n\\n**defaultMode** (integer)\\n\\nMode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**sources** (object[])\\n\\nlist of volume projections\\n\\n\"},\"downwardAPI\":{\"description\":\"DownwardAPI represents downward API about the pod that should populate this volume\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapivolumesource\",\"markdownDescription\":\"downwardAPI: DownwardAPI represents downward API about the pod that should populate this volume\\n\\nDownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.\\n\\n**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**items** (object[])\\n\\nItems is a list of downward API volume file\\n\\n\"},\"storageos\":{\"description\":\"StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.storageosvolumesource\",\"markdownDescription\":\"storageos: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\\n\\nRepresents a StorageOS persistent volume resource.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretRef** (object)\\n\\nSecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\\n\\n**volumeName** (string)\\n\\nVolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\\n\\n**volumeNamespace** (string)\\n\\nVolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\\n\\n\"},\"secret\":{\"description\":\"Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretvolumesource\",\"markdownDescription\":\"secret: Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\\n\\nAdapts a Secret into a volume.\\n\\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.\\n\\n**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret or it's keys must be defined\\n\\n**secretName** (string)\\n\\nName of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\\n\\n\"},\"fc\":{\"description\":\"FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.fcvolumesource\",\"markdownDescription\":\"fc: FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\\n\\nRepresents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**lun** (integer)\\n\\nOptional: FC target lun number\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**targetWWNs** (string[])\\n\\nOptional: FC target worldwide names (WWNs)\\n\\n**wwids** (string[])\\n\\nOptional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\\n\\n\"},\"nfs\":{\"description\":\"NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nfsvolumesource\",\"markdownDescription\":\"nfs: NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\nRepresents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.\\n\\n**path** (string)\\n\\nPath that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n**server** (string)\\n\\nServer is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n\"},\"gcePersistentDisk\":{\"description\":\"GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.gcepersistentdiskvolumesource\",\"markdownDescription\":\"gcePersistentDisk: GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\nRepresents a Persistent Disk resource in Google Compute Engine.\\n\\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**pdName** (string)\\n\\nUnique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n\"},\"hostPath\":{\"description\":\"HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.hostpathvolumesource\",\"markdownDescription\":\"hostPath: HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\nRepresents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.\\n\\n**path** (string)\\n\\nPath of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\n**type** (string)\\n\\nType for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\n\"},\"flexVolume\":{\"description\":\"FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.flexvolumesource\",\"markdownDescription\":\"flexVolume: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\\n\\nFlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\\n\\n**driver** (string)\\n\\nDriver is the name of the driver to use for this volume.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\\n\\n**options** (object)\\n\\nOptional: Extra command options if any.\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretRef** (object)\\n\\nOptional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\\n\\n\"},\"awsElasticBlockStore\":{\"description\":\"AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.awselasticblockstorevolumesource\",\"markdownDescription\":\"awsElasticBlockStore: AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\nRepresents a Persistent Disk resource in AWS.\\n\\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\n\\n**readOnly** (boolean)\\n\\nSpecify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n**volumeID** (string)\\n\\nUnique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n\"},\"rbd\":{\"description\":\"RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.rbdvolumesource\",\"markdownDescription\":\"rbd: RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md\\n\\nRepresents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\n\\n**image** (string)\\n\\nThe rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**keyring** (string)\\n\\nKeyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**monitors** (string[])\\n\\nA collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**pool** (string)\\n\\nThe rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**secretRef** (object)\\n\\nSecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**user** (string)\\n\\nThe rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n\"},\"azureFile\":{\"description\":\"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.azurefilevolumesource\",\"markdownDescription\":\"azureFile: AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\\n\\nAzureFile represents an Azure File Service mount on the host and bind mount to the pod.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretName** (string)\\n\\nthe name of secret that contains Azure Storage Account Name and Key\\n\\n**shareName** (string)\\n\\nShare Name\\n\\n\"},\"vsphereVolume\":{\"description\":\"VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.vspherevirtualdiskvolumesource\",\"markdownDescription\":\"vsphereVolume: VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\\n\\nRepresents a vSphere volume resource.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**storagePolicyID** (string)\\n\\nStorage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\\n\\n**storagePolicyName** (string)\\n\\nStorage Policy Based Management (SPBM) profile name.\\n\\n**volumePath** (string)\\n\\nPath that identifies vSphere volume vmdk\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (26)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.affinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (26)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Affinity\",\"description\":\"Affinity is a group of affinity scheduling rules.\",\"properties\":{\"podAffinity\":{\"description\":\"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinity\",\"markdownDescription\":\"podAffinity: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\\n\\nPod affinity is a group of inter pod affinity scheduling rules.\\n\\n**preferredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nThe scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\n**requiredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nIf the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\n\"},\"nodeAffinity\":{\"description\":\"Describes node affinity scheduling rules for the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeaffinity\",\"markdownDescription\":\"nodeAffinity: Describes node affinity scheduling rules for the pod.\\n\\nNode affinity is a group of node affinity scheduling rules.\\n\\n**preferredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nThe scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\\n\\n**requiredDuringSchedulingIgnoredDuringExecution** (object)\\n\\nIf the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\\n\\n\"},\"podAntiAffinity\":{\"description\":\"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podantiaffinity\",\"markdownDescription\":\"podAntiAffinity: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\\n\\nPod anti affinity is a group of inter pod anti affinity scheduling rules.\\n\\n**preferredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nThe scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\n**requiredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nIf the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (27)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.hostalias"
[Trace - 15:41:22] Sending response 'custom/schema/content - (27)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.HostAlias\",\"description\":\"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\",\"properties\":{\"ip\":{\"type\":\"string\",\"description\":\"IP address of the host file entry.\",\"markdownDescription\":\"**ip** (string)\\n\\nIP address of the host file entry.\"},\"hostnames\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Hostnames for the above IP address.\",\"markdownDescription\":\"**hostnames** (string[])\\n\\nHostnames for the above IP address.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (28)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.poddnsconfig"
[Trace - 15:41:22] Sending response 'custom/schema/content - (28)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodDNSConfig\",\"description\":\"PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.\",\"properties\":{\"nameservers\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\",\"markdownDescription\":\"**nameservers** (string[])\\n\\nA list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\"},\"searches\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\",\"markdownDescription\":\"**searches** (string[])\\n\\nA list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\"},\"options\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.poddnsconfigoption\"},\"type\":\"array\",\"description\":\"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\",\"markdownDescription\":\"options: A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\\n\\nPodDNSConfigOption defines DNS resolver options of a pod.\\n\\n**name** (string)\\n\\nRequired.\\n\\n**value** (string)\\n\\nundefined\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (29)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podsecuritycontext"
[Trace - 15:41:22] Sending response 'custom/schema/content - (29)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodSecurityContext\",\"description\":\"PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.\",\"properties\":{\"runAsNonRoot\":{\"type\":\"boolean\",\"description\":\"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"markdownDescription\":\"**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"},\"fsGroup\":{\"type\":\"integer\",\"description\":\"A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\\n\\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\",\"format\":\"int64\",\"markdownDescription\":\"**fsGroup** (integer)\\n\\nA special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\\n\\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\"},\"seLinuxOptions\":{\"description\":\"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.selinuxoptions\",\"markdownDescription\":\"seLinuxOptions: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\\n\\nSELinuxOptions are the labels to be applied to the container\\n\\n**level** (string)\\n\\nLevel is SELinux level label that applies to the container.\\n\\n**role** (string)\\n\\nRole is a SELinux role label that applies to the container.\\n\\n**type** (string)\\n\\nType is a SELinux type label that applies to the container.\\n\\n**user** (string)\\n\\nUser is a SELinux user label that applies to the container.\\n\\n\"},\"runAsUser\":{\"type\":\"integer\",\"description\":\"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\",\"format\":\"int64\",\"markdownDescription\":\"**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"},\"supplementalGroups\":{\"items\":{\"type\":\"integer\",\"format\":\"int64\"},\"type\":\"array\",\"description\":\"A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\",\"markdownDescription\":\"**supplementalGroups** (integer[])\\n\\nA list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (30)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statuscause"
[Trace - 15:41:22] Sending response 'custom/schema/content - (30)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause\",\"description\":\"StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.\",\"properties\":{\"field\":{\"type\":\"string\",\"description\":\"The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\\n\\nExamples:\\n \\\"name\\\" - the field \\\"name\\\" on the current resource\\n \\\"items[0].name\\\" - the field \\\"name\\\" on the first array entry in \\\"items\\\"\",\"markdownDescription\":\"**field** (string)\\n\\nThe field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\\n\\nExamples:\\n \\\"name\\\" - the field \\\"name\\\" on the current resource\\n \\\"items[0].name\\\" - the field \\\"name\\\" on the first array entry in \\\"items\\\"\"},\"message\":{\"type\":\"string\",\"description\":\"A human-readable description of the cause of the error. This field may be presented as-is to a reader.\",\"markdownDescription\":\"**message** (string)\\n\\nA human-readable description of the cause of the error. This field may be presented as-is to a reader.\"},\"reason\":{\"type\":\"string\",\"description\":\"A machine-readable description of the cause of the error. If this value is empty there is no information available.\",\"markdownDescription\":\"**reason** (string)\\n\\nA machine-readable description of the cause of the error. If this value is empty there is no information available.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (31)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.resourcerequirements"
[Trace - 15:41:22] Sending response 'custom/schema/content - (31)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ResourceRequirements\",\"description\":\"ResourceRequirements describes the compute resource requirements.\",\"properties\":{\"requests\":{\"additionalProperties\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\"},\"type\":\"object\",\"description\":\"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\",\"markdownDescription\":\"**requests** (object)\\n\\nRequests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"},\"limits\":{\"additionalProperties\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\"},\"type\":\"object\",\"description\":\"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\",\"markdownDescription\":\"**limits** (object)\\n\\nLimits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (32)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.containerport"
[Trace - 15:41:22] Sending response 'custom/schema/content - (32)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ContainerPort\",\"required\":[\"containerPort\"],\"description\":\"ContainerPort represents a network port in a single container.\",\"properties\":{\"hostIP\":{\"type\":\"string\",\"description\":\"What host IP to bind the external port to.\",\"markdownDescription\":\"**hostIP** (string)\\n\\nWhat host IP to bind the external port to.\"},\"protocol\":{\"type\":\"string\",\"description\":\"Protocol for port. Must be UDP or TCP. Defaults to \\\"TCP\\\".\",\"markdownDescription\":\"**protocol** (string)\\n\\nProtocol for port. Must be UDP or TCP. Defaults to \\\"TCP\\\".\",\"enum\":[\"TCP\",\"UDP\"]},\"containerPort\":{\"type\":\"integer\",\"description\":\"Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\",\"format\":\"int32\",\"markdownDescription\":\"**containerPort** (integer)\\n\\nNumber of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\"},\"name\":{\"type\":\"string\",\"description\":\"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\"markdownDescription\":\"**name** (string)\\n\\nIf specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\"},\"hostPort\":{\"type\":\"integer\",\"description\":\"Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\"format\":\"int32\",\"markdownDescription\":\"**hostPort** (integer)\\n\\nNumber of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (33)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.probe"
[Trace - 15:41:22] Sending response 'custom/schema/content - (33)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Probe\",\"description\":\"Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.\",\"properties\":{\"httpGet\":{\"description\":\"HTTPGet specifies the http request to perform.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.httpgetaction\",\"markdownDescription\":\"httpGet: HTTPGet specifies the http request to perform.\\n\\nHTTPGetAction describes an action based on HTTP Get requests.\\n\\n**host** (string)\\n\\nHost name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\\n\\n**httpHeaders** (object[])\\n\\nCustom headers to set in the request. HTTP allows repeated headers.\\n\\n**path** (string)\\n\\nPath to access on the HTTP server.\\n\\n**port** (object)\\n\\nName or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n**scheme** (string)\\n\\nScheme to use for connecting to the host. Defaults to HTTP.\\n\\n\"},\"timeoutSeconds\":{\"type\":\"integer\",\"description\":\"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"format\":\"int32\",\"markdownDescription\":\"**timeoutSeconds** (integer)\\n\\nNumber of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"},\"exec\":{\"description\":\"One and only one of the following should be specified. Exec specifies the action to take.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.execaction\",\"markdownDescription\":\"exec: One and only one of the following should be specified. Exec specifies the action to take.\\n\\nExecAction describes a \\\"run in container\\\" action.\\n\\n**command** (string[])\\n\\nCommand is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\\n\\n\"},\"initialDelaySeconds\":{\"type\":\"integer\",\"description\":\"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"format\":\"int32\",\"markdownDescription\":\"**initialDelaySeconds** (integer)\\n\\nNumber of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"},\"tcpSocket\":{\"description\":\"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.tcpsocketaction\",\"markdownDescription\":\"tcpSocket: TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\nTCPSocketAction describes an action based on opening a socket\\n\\n**host** (string)\\n\\nOptional: Host name to connect to, defaults to the pod IP.\\n\\n**port** (object)\\n\\nNumber or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n\"},\"periodSeconds\":{\"type\":\"integer\",\"description\":\"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\"format\":\"int32\",\"markdownDescription\":\"**periodSeconds** (integer)\\n\\nHow often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"},\"successThreshold\":{\"type\":\"integer\",\"description\":\"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\",\"format\":\"int32\",\"markdownDescription\":\"**successThreshold** (integer)\\n\\nMinimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\"},\"failureThreshold\":{\"type\":\"integer\",\"description\":\"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\"format\":\"int32\",\"markdownDescription\":\"**failureThreshold** (integer)\\n\\nMinimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (34)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.envvar"
[Trace - 15:41:22] Sending response 'custom/schema/content - (34)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.EnvVar\",\"required\":[\"name\"],\"description\":\"EnvVar represents an environment variable present in a Container.\",\"properties\":{\"valueFrom\":{\"description\":\"Source for the environment variable's value. Cannot be used if value is not empty.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.envvarsource\",\"markdownDescription\":\"valueFrom: Source for the environment variable's value. Cannot be used if value is not empty.\\n\\nEnvVarSource represents a source for the value of an EnvVar.\\n\\n**configMapKeyRef** (object)\\n\\nSelects a key of a ConfigMap.\\n\\n**fieldRef** (object)\\n\\nSelects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.\\n\\n**resourceFieldRef** (object)\\n\\nSelects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\\n\\n**secretKeyRef** (object)\\n\\nSelects a key of a secret in the pod's namespace\\n\\n\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the environment variable. Must be a C_IDENTIFIER.\",\"markdownDescription\":\"**name** (string)\\n\\nName of the environment variable. Must be a C_IDENTIFIER.\"},\"value\":{\"type\":\"string\",\"description\":\"Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\"markdownDescription\":\"**value** (string)\\n\\nVariable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (35)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volumedevice"
[Trace - 15:41:22] Sending response 'custom/schema/content - (35)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.VolumeDevice\",\"required\":[\"name\",\"devicePath\"],\"description\":\"volumeDevice describes a mapping of a raw block device within a container.\",\"properties\":{\"devicePath\":{\"type\":\"string\",\"description\":\"devicePath is the path inside of the container that the device will be mapped to.\",\"markdownDescription\":\"**devicePath** (string)\\n\\ndevicePath is the path inside of the container that the device will be mapped to.\"},\"name\":{\"type\":\"string\",\"description\":\"name must match the name of a persistentVolumeClaim in the pod\",\"markdownDescription\":\"**name** (string)\\n\\nname must match the name of a persistentVolumeClaim in the pod\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (36)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.envfromsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (36)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.EnvFromSource\",\"description\":\"EnvFromSource represents the source of a set of ConfigMaps\",\"properties\":{\"prefix\":{\"type\":\"string\",\"description\":\"An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\"markdownDescription\":\"**prefix** (string)\\n\\nAn optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\"},\"configMapRef\":{\"description\":\"The ConfigMap to select from\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapenvsource\",\"markdownDescription\":\"configMapRef: The ConfigMap to select from\\n\\nConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\\n\\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap must be defined\\n\\n\"},\"secretRef\":{\"description\":\"The Secret to select from\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretenvsource\",\"markdownDescription\":\"secretRef: The Secret to select from\\n\\nSecretEnvSource selects a Secret to populate the environment variables with.\\n\\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret must be defined\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (37)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.securitycontext"
[Trace - 15:41:22] Sending response 'custom/schema/content - (37)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecurityContext\",\"description\":\"SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.\",\"properties\":{\"runAsNonRoot\":{\"type\":\"boolean\",\"description\":\"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"markdownDescription\":\"**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"},\"readOnlyRootFilesystem\":{\"type\":\"boolean\",\"description\":\"Whether this container has a read-only root filesystem. Default is false.\",\"markdownDescription\":\"**readOnlyRootFilesystem** (boolean)\\n\\nWhether this container has a read-only root filesystem. Default is false.\"},\"seLinuxOptions\":{\"description\":\"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.selinuxoptions\",\"markdownDescription\":\"seLinuxOptions: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\nSELinuxOptions are the labels to be applied to the container\\n\\n**level** (string)\\n\\nLevel is SELinux level label that applies to the container.\\n\\n**role** (string)\\n\\nRole is a SELinux role label that applies to the container.\\n\\n**type** (string)\\n\\nType is a SELinux type label that applies to the container.\\n\\n**user** (string)\\n\\nUser is a SELinux user label that applies to the container.\\n\\n\"},\"runAsUser\":{\"type\":\"integer\",\"description\":\"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"format\":\"int64\",\"markdownDescription\":\"**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"},\"allowPrivilegeEscalation\":{\"type\":\"boolean\",\"description\":\"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\",\"markdownDescription\":\"**allowPrivilegeEscalation** (boolean)\\n\\nAllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\"},\"privileged\":{\"type\":\"boolean\",\"description\":\"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\",\"markdownDescription\":\"**privileged** (boolean)\\n\\nRun container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\"},\"capabilities\":{\"description\":\"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.capabilities\",\"markdownDescription\":\"capabilities: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\\n\\nAdds and removes POSIX capabilities from running containers.\\n\\n**add** (string[])\\n\\nAdded capabilities\\n\\n**drop** (string[])\\n\\nRemoved capabilities\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (38)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.lifecycle"
[Trace - 15:41:22] Sending response 'custom/schema/content - (38)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Lifecycle\",\"description\":\"Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.\",\"properties\":{\"preStop\":{\"description\":\"PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.handler\",\"markdownDescription\":\"preStop: PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\nHandler defines a specific action that should be taken\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n\"},\"postStart\":{\"description\":\"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.handler\",\"markdownDescription\":\"postStart: PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\nHandler defines a specific action that should be taken\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (39)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volumemount"
[Trace - 15:41:22] Sending response 'custom/schema/content - (39)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.VolumeMount\",\"required\":[\"name\",\"mountPath\"],\"description\":\"VolumeMount describes a mounting of a Volume within a container.\",\"properties\":{\"mountPropagation\":{\"type\":\"string\",\"description\":\"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.\",\"markdownDescription\":\"**mountPropagation** (string)\\n\\nmountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nMounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\"},\"mountPath\":{\"type\":\"string\",\"description\":\"Path within the container at which the volume should be mounted. Must not contain ':'.\",\"markdownDescription\":\"**mountPath** (string)\\n\\nPath within the container at which the volume should be mounted. Must not contain ':'.\"},\"subPath\":{\"type\":\"string\",\"description\":\"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\"markdownDescription\":\"**subPath** (string)\\n\\nPath within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\"},\"name\":{\"type\":\"string\",\"description\":\"This must match the Name of a Volume.\",\"markdownDescription\":\"**name** (string)\\n\\nThis must match the Name of a Volume.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (40)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.vspherevirtualdiskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (40)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource\",\"required\":[\"volumePath\"],\"description\":\"Represents a vSphere volume resource.\",\"properties\":{\"storagePolicyName\":{\"type\":\"string\",\"description\":\"Storage Policy Based Management (SPBM) profile name.\",\"markdownDescription\":\"**storagePolicyName** (string)\\n\\nStorage Policy Based Management (SPBM) profile name.\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"},\"storagePolicyID\":{\"type\":\"string\",\"description\":\"Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\"markdownDescription\":\"**storagePolicyID** (string)\\n\\nStorage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\"},\"volumePath\":{\"type\":\"string\",\"description\":\"Path that identifies vSphere volume vmdk\",\"markdownDescription\":\"**volumePath** (string)\\n\\nPath that identifies vSphere volume vmdk\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (41)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.azurefilevolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (41)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.AzureFileVolumeSource\",\"required\":[\"secretName\",\"shareName\"],\"description\":\"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\"properties\":{\"shareName\":{\"type\":\"string\",\"description\":\"Share Name\",\"markdownDescription\":\"**shareName** (string)\\n\\nShare Name\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"secretName\":{\"type\":\"string\",\"description\":\"the name of secret that contains Azure Storage Account Name and Key\",\"markdownDescription\":\"**secretName** (string)\\n\\nthe name of secret that contains Azure Storage Account Name and Key\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (42)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.rbdvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (42)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.RBDVolumeSource\",\"required\":[\"monitors\",\"image\"],\"description\":\"Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.\",\"properties\":{\"secretRef\":{\"description\":\"SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"image\":{\"type\":\"string\",\"description\":\"The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**image** (string)\\n\\nThe rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"keyring\":{\"type\":\"string\",\"description\":\"Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**keyring** (string)\\n\\nKeyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"user\":{\"type\":\"string\",\"description\":\"The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**user** (string)\\n\\nThe rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"monitors\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**monitors** (string[])\\n\\nA collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"pool\":{\"type\":\"string\",\"description\":\"The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**pool** (string)\\n\\nThe rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (43)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.awselasticblockstorevolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (43)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource\",\"required\":[\"volumeID\"],\"description\":\"Represents a Persistent Disk resource in AWS.\\n\\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Specify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nSpecify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"},\"partition\":{\"type\":\"integer\",\"description\":\"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\"format\":\"int32\",\"markdownDescription\":\"**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\"},\"volumeID\":{\"type\":\"string\",\"description\":\"Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"markdownDescription\":\"**volumeID** (string)\\n\\nUnique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (44)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.flexvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (44)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.FlexVolumeSource\",\"required\":[\"driver\"],\"description\":\"FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\"properties\":{\"secretRef\":{\"description\":\"Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\"},\"driver\":{\"type\":\"string\",\"description\":\"Driver is the name of the driver to use for this volume.\",\"markdownDescription\":\"**driver** (string)\\n\\nDriver is the name of the driver to use for this volume.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"options\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Optional: Extra command options if any.\",\"markdownDescription\":\"**options** (object)\\n\\nOptional: Extra command options if any.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (45)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.hostpathvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (45)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.HostPathVolumeSource\",\"required\":[\"path\"],\"description\":\"Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\"markdownDescription\":\"**path** (string)\\n\\nPath of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\"},\"type\":{\"type\":\"string\",\"description\":\"Type for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\"markdownDescription\":\"**type** (string)\\n\\nType for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (46)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.gcepersistentdiskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (46)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.GCEPersistentDiskVolumeSource\",\"required\":[\"pdName\"],\"description\":\"Represents a Persistent Disk resource in Google Compute Engine.\\n\\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"},\"partition\":{\"type\":\"integer\",\"description\":\"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"format\":\"int32\",\"markdownDescription\":\"**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"},\"pdName\":{\"type\":\"string\",\"description\":\"Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"markdownDescription\":\"**pdName** (string)\\n\\nUnique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (47)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nfsvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (47)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NFSVolumeSource\",\"required\":[\"server\",\"path\"],\"description\":\"Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"markdownDescription\":\"**path** (string)\\n\\nPath that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"},\"server\":{\"type\":\"string\",\"description\":\"Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"markdownDescription\":\"**server** (string)\\n\\nServer is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (48)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.fcvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (48)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.FCVolumeSource\",\"description\":\"Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.\",\"properties\":{\"targetWWNs\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Optional: FC target worldwide names (WWNs)\",\"markdownDescription\":\"**targetWWNs** (string[])\\n\\nOptional: FC target worldwide names (WWNs)\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"wwids\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\"markdownDescription\":\"**wwids** (string[])\\n\\nOptional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\"},\"lun\":{\"type\":\"integer\",\"description\":\"Optional: FC target lun number\",\"format\":\"int32\",\"markdownDescription\":\"**lun** (integer)\\n\\nOptional: FC target lun number\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (49)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (49)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretVolumeSource\",\"description\":\"Adapts a Secret into a volume.\\n\\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret or it's keys must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret or it's keys must be defined\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"secretName\":{\"type\":\"string\",\"description\":\"Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\"markdownDescription\":\"**secretName** (string)\\n\\nName of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (50)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.storageosvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (50)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.StorageOSVolumeSource\",\"description\":\"Represents a StorageOS persistent volume resource.\",\"properties\":{\"volumeName\":{\"type\":\"string\",\"description\":\"VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\",\"markdownDescription\":\"**volumeName** (string)\\n\\nVolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"volumeNamespace\":{\"type\":\"string\",\"description\":\"VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\",\"markdownDescription\":\"**volumeNamespace** (string)\\n\\nVolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\"},\"secretRef\":{\"description\":\"SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (51)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.downwardapivolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (51)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.DownwardAPIVolumeSource\",\"description\":\"DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapivolumefile\"},\"type\":\"array\",\"description\":\"Items is a list of downward API volume file\",\"markdownDescription\":\"items: Items is a list of downward API volume file\\n\\nDownwardAPIVolumeFile represents information to create the file containing the pod field\\n\\n**fieldRef** (object)\\n\\nRequired: Selects a field of the pod: only annotations, labels, name and namespace are supported.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nRequired: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\\n\\n**resourceFieldRef** (object)\\n\\nSelects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\\n\\n\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (52)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.projectedvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (52)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ProjectedVolumeSource\",\"required\":[\"sources\"],\"description\":\"Represents a projected volume source\",\"properties\":{\"sources\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volumeprojection\"},\"type\":\"array\",\"description\":\"list of volume projections\",\"markdownDescription\":\"sources: list of volume projections\\n\\nProjection that may be projected along with other supported volume types\\n\\n**configMap** (object)\\n\\ninformation about the configMap data to project\\n\\n**downwardAPI** (object)\\n\\ninformation about the downwardAPI data to project\\n\\n**secret** (object)\\n\\ninformation about the secret data to project\\n\\n\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nMode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (53)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.iscsivolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (53)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ISCSIVolumeSource\",\"required\":[\"targetPortal\",\"iqn\",\"lun\"],\"description\":\"Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.\",\"properties\":{\"targetPortal\":{\"type\":\"string\",\"description\":\"iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\"markdownDescription\":\"**targetPortal** (string)\\n\\niSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\"},\"portals\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\"markdownDescription\":\"**portals** (string[])\\n\\niSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\"},\"secretRef\":{\"description\":\"CHAP Secret for iSCSI target and initiator authentication\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: CHAP Secret for iSCSI target and initiator authentication\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\"},\"chapAuthSession\":{\"type\":\"boolean\",\"description\":\"whether support iSCSI Session CHAP authentication\",\"markdownDescription\":\"**chapAuthSession** (boolean)\\n\\nwhether support iSCSI Session CHAP authentication\"},\"initiatorName\":{\"type\":\"string\",\"description\":\"Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.\",\"markdownDescription\":\"**initiatorName** (string)\\n\\nCustom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.\"},\"iscsiInterface\":{\"type\":\"string\",\"description\":\"iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\",\"markdownDescription\":\"**iscsiInterface** (string)\\n\\niSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\"},\"iqn\":{\"type\":\"string\",\"description\":\"Target iSCSI Qualified Name.\",\"markdownDescription\":\"**iqn** (string)\\n\\nTarget iSCSI Qualified Name.\"},\"chapAuthDiscovery\":{\"type\":\"boolean\",\"description\":\"whether support iSCSI Discovery CHAP authentication\",\"markdownDescription\":\"**chapAuthDiscovery** (boolean)\\n\\nwhether support iSCSI Discovery CHAP authentication\"},\"lun\":{\"type\":\"integer\",\"description\":\"iSCSI Target Lun number.\",\"format\":\"int32\",\"markdownDescription\":\"**lun** (integer)\\n\\niSCSI Target Lun number.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (54)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.cephfsvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (54)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.CephFSVolumeSource\",\"required\":[\"monitors\"],\"description\":\"Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"secretRef\":{\"description\":\"Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"secretFile\":{\"type\":\"string\",\"description\":\"Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**secretFile** (string)\\n\\nOptional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"},\"user\":{\"type\":\"string\",\"description\":\"Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**user** (string)\\n\\nOptional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"},\"path\":{\"type\":\"string\",\"description\":\"Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\"markdownDescription\":\"**path** (string)\\n\\nOptional: Used as the mounted root, rather than the full Ceph tree, default is /\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"},\"monitors\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**monitors** (string[])\\n\\nRequired: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (55)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (55)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapVolumeSource\",\"description\":\"Adapts a ConfigMap into a volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap or it's keys must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (56)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.persistentvolumeclaimvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (56)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource\",\"required\":[\"claimName\"],\"description\":\"PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Will force the ReadOnly setting in VolumeMounts. Default false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nWill force the ReadOnly setting in VolumeMounts. Default false.\"},\"claimName\":{\"type\":\"string\",\"description\":\"ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\"markdownDescription\":\"**claimName** (string)\\n\\nClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (57)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.flockervolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (57)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.FlockerVolumeSource\",\"description\":\"Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"datasetName\":{\"type\":\"string\",\"description\":\"Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated\",\"markdownDescription\":\"**datasetName** (string)\\n\\nName of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated\"},\"datasetUUID\":{\"type\":\"string\",\"description\":\"UUID of the dataset. This is unique identifier of a Flocker dataset\",\"markdownDescription\":\"**datasetUUID** (string)\\n\\nUUID of the dataset. This is unique identifier of a Flocker dataset\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (58)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.cindervolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (58)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.CinderVolumeSource\",\"required\":[\"volumeID\"],\"description\":\"Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\"},\"volumeID\":{\"type\":\"string\",\"description\":\"volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"markdownDescription\":\"**volumeID** (string)\\n\\nvolume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (59)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.emptydirvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (59)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.EmptyDirVolumeSource\",\"description\":\"Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.\",\"properties\":{\"sizeLimit\":{\"description\":\"Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\",\"markdownDescription\":\"Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\"},\"medium\":{\"type\":\"string\",\"description\":\"What type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\"markdownDescription\":\"**medium** (string)\\n\\nWhat type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (60)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.scaleiovolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (60)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.ScaleIOVolumeSource\",\"required\":[\"gateway\",\"system\",\"secretRef\"],\"description\":\"ScaleIOVolumeSource represents a persistent ScaleIO volume\",\"properties\":{\"storageMode\":{\"type\":\"string\",\"description\":\"Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\",\"markdownDescription\":\"**storageMode** (string)\\n\\nIndicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\"},\"secretRef\":{\"description\":\"SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"protectionDomain\":{\"type\":\"string\",\"description\":\"The name of the ScaleIO Protection Domain for the configured storage.\",\"markdownDescription\":\"**protectionDomain** (string)\\n\\nThe name of the ScaleIO Protection Domain for the configured storage.\"},\"volumeName\":{\"type\":\"string\",\"description\":\"The name of a volume already created in the ScaleIO system that is associated with this volume source.\",\"markdownDescription\":\"**volumeName** (string)\\n\\nThe name of a volume already created in the ScaleIO system that is associated with this volume source.\"},\"sslEnabled\":{\"type\":\"boolean\",\"description\":\"Flag to enable/disable SSL communication with Gateway, default false\",\"markdownDescription\":\"**sslEnabled** (boolean)\\n\\nFlag to enable/disable SSL communication with Gateway, default false\"},\"system\":{\"type\":\"string\",\"description\":\"The name of the storage system as configured in ScaleIO.\",\"markdownDescription\":\"**system** (string)\\n\\nThe name of the storage system as configured in ScaleIO.\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"storagePool\":{\"type\":\"string\",\"description\":\"The ScaleIO Storage Pool associated with the protection domain.\",\"markdownDescription\":\"**storagePool** (string)\\n\\nThe ScaleIO Storage Pool associated with the protection domain.\"},\"gateway\":{\"type\":\"string\",\"description\":\"The host address of the ScaleIO API Gateway.\",\"markdownDescription\":\"**gateway** (string)\\n\\nThe host address of the ScaleIO API Gateway.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (61)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.gitrepovolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (61)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.GitRepoVolumeSource\",\"required\":[\"repository\"],\"description\":\"Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\",\"properties\":{\"directory\":{\"type\":\"string\",\"description\":\"Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\",\"markdownDescription\":\"**directory** (string)\\n\\nTarget directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\"},\"repository\":{\"type\":\"string\",\"description\":\"Repository URL\",\"markdownDescription\":\"**repository** (string)\\n\\nRepository URL\"},\"revision\":{\"type\":\"string\",\"description\":\"Commit hash for the specified revision.\",\"markdownDescription\":\"**revision** (string)\\n\\nCommit hash for the specified revision.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (62)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.glusterfsvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (62)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.GlusterfsVolumeSource\",\"required\":[\"endpoints\",\"path\"],\"description\":\"Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\",\"markdownDescription\":\"**path** (string)\\n\\nPath is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\"},\"endpoints\":{\"type\":\"string\",\"description\":\"EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\",\"markdownDescription\":\"**endpoints** (string)\\n\\nEndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (63)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.portworxvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (63)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PortworxVolumeSource\",\"required\":[\"volumeID\"],\"description\":\"PortworxVolumeSource represents a Portworx volume resource.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"volumeID\":{\"type\":\"string\",\"description\":\"VolumeID uniquely identifies a Portworx volume\",\"markdownDescription\":\"**volumeID** (string)\\n\\nVolumeID uniquely identifies a Portworx volume\"},\"fsType\":{\"type\":\"string\",\"description\":\"FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (64)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.azurediskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (64)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.AzureDiskVolumeSource\",\"required\":[\"diskName\",\"diskURI\"],\"description\":\"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\"properties\":{\"diskURI\":{\"type\":\"string\",\"description\":\"The URI the data disk in the blob storage\",\"markdownDescription\":\"**diskURI** (string)\\n\\nThe URI the data disk in the blob storage\"},\"diskName\":{\"type\":\"string\",\"description\":\"The Name of the data disk in the blob storage\",\"markdownDescription\":\"**diskName** (string)\\n\\nThe Name of the data disk in the blob storage\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"cachingMode\":{\"type\":\"string\",\"description\":\"Host Caching mode: None, Read Only, Read Write.\",\"markdownDescription\":\"**cachingMode** (string)\\n\\nHost Caching mode: None, Read Only, Read Write.\",\"enum\":[\"None\",\"ReadOnly\",\"ReadWrite\"]},\"kind\":{\"type\":\"string\",\"description\":\"Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\"markdownDescription\":\"**kind** (string)\\n\\nExpected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (65)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.quobytevolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (65)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.QuobyteVolumeSource\",\"required\":[\"registry\",\"volume\"],\"description\":\"Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"volume\":{\"type\":\"string\",\"description\":\"Volume is a string that references an already created Quobyte volume by name.\",\"markdownDescription\":\"**volume** (string)\\n\\nVolume is a string that references an already created Quobyte volume by name.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\"},\"group\":{\"type\":\"string\",\"description\":\"Group to map volume access to Default is no group\",\"markdownDescription\":\"**group** (string)\\n\\nGroup to map volume access to Default is no group\"},\"registry\":{\"type\":\"string\",\"description\":\"Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\",\"markdownDescription\":\"**registry** (string)\\n\\nRegistry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\"},\"user\":{\"type\":\"string\",\"description\":\"User to map volume access to Defaults to serivceaccount user\",\"markdownDescription\":\"**user** (string)\\n\\nUser to map volume access to Defaults to serivceaccount user\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (66)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.photonpersistentdiskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (66)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource\",\"required\":[\"pdID\"],\"description\":\"Represents a Photon Controller persistent disk resource.\",\"properties\":{\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"},\"pdID\":{\"type\":\"string\",\"description\":\"ID that identifies Photon Controller persistent disk\",\"markdownDescription\":\"**pdID** (string)\\n\\nID that identifies Photon Controller persistent disk\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (67)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podantiaffinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (67)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodAntiAffinity\",\"description\":\"Pod anti affinity is a group of inter pod anti affinity scheduling rules.\",\"properties\":{\"requiredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinityterm\"},\"type\":\"array\",\"description\":\"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\"markdownDescription\":\"requiredDuringSchedulingIgnoredDuringExecution: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\nDefines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\\n\\n**labelSelector** (object)\\n\\nA label query over a set of resources, in this case pods.\\n\\n**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\\n\\n**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\\n\\n\"},\"preferredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.weightedpodaffinityterm\"},\"type\":\"array\",\"description\":\"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\"markdownDescription\":\"preferredDuringSchedulingIgnoredDuringExecution: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\nThe weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\\n\\n**podAffinityTerm** (object)\\n\\nRequired. A pod affinity term, associated with the corresponding weight.\\n\\n**weight** (integer)\\n\\nweight associated with matching the corresponding podAffinityTerm, in the range 1-100.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (68)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeaffinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (68)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeAffinity\",\"description\":\"Node affinity is a group of node affinity scheduling rules.\",\"properties\":{\"requiredDuringSchedulingIgnoredDuringExecution\":{\"description\":\"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselector\",\"markdownDescription\":\"requiredDuringSchedulingIgnoredDuringExecution: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\\n\\nA node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.\\n\\n**nodeSelectorTerms** (object[])\\n\\nRequired. A list of node selector terms. The terms are ORed.\\n\\n\"},\"preferredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.preferredschedulingterm\"},\"type\":\"array\",\"description\":\"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\"markdownDescription\":\"preferredDuringSchedulingIgnoredDuringExecution: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\\n\\nAn empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\\n\\n**preference** (object)\\n\\nA node selector term, associated with the corresponding weight.\\n\\n**weight** (integer)\\n\\nWeight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (69)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podaffinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (69)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodAffinity\",\"description\":\"Pod affinity is a group of inter pod affinity scheduling rules.\",\"properties\":{\"requiredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinityterm\"},\"type\":\"array\",\"description\":\"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\"markdownDescription\":\"requiredDuringSchedulingIgnoredDuringExecution: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\nDefines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\\n\\n**labelSelector** (object)\\n\\nA label query over a set of resources, in this case pods.\\n\\n**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\\n\\n**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\\n\\n\"},\"preferredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.weightedpodaffinityterm\"},\"type\":\"array\",\"description\":\"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\"markdownDescription\":\"preferredDuringSchedulingIgnoredDuringExecution: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\nThe weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\\n\\n**podAffinityTerm** (object)\\n\\nRequired. A pod affinity term, associated with the corresponding weight.\\n\\n**weight** (integer)\\n\\nweight associated with matching the corresponding podAffinityTerm, in the range 1-100.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (70)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.poddnsconfigoption"
[Trace - 15:41:22] Sending response 'custom/schema/content - (70)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodDNSConfigOption\",\"description\":\"PodDNSConfigOption defines DNS resolver options of a pod.\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"Required.\",\"markdownDescription\":\"**name** (string)\\n\\nRequired.\"},\"value\":{\"type\":\"string\",\"markdownDescription\":\"**value** (string)\\n\\nundefined\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (71)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.selinuxoptions"
[Trace - 15:41:22] Sending response 'custom/schema/content - (71)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SELinuxOptions\",\"description\":\"SELinuxOptions are the labels to be applied to the container\",\"properties\":{\"role\":{\"type\":\"string\",\"description\":\"Role is a SELinux role label that applies to the container.\",\"markdownDescription\":\"**role** (string)\\n\\nRole is a SELinux role label that applies to the container.\"},\"type\":{\"type\":\"string\",\"description\":\"Type is a SELinux type label that applies to the container.\",\"markdownDescription\":\"**type** (string)\\n\\nType is a SELinux type label that applies to the container.\"},\"user\":{\"type\":\"string\",\"description\":\"User is a SELinux user label that applies to the container.\",\"markdownDescription\":\"**user** (string)\\n\\nUser is a SELinux user label that applies to the container.\"},\"level\":{\"type\":\"string\",\"description\":\"Level is SELinux level label that applies to the container.\",\"markdownDescription\":\"**level** (string)\\n\\nLevel is SELinux level label that applies to the container.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (72)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (72)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.api.resource.Quantity\",\"oneOf\":[{\"type\":\"string\"},{\"type\":\"integer\"}]}"
[Trace - 15:41:22] Received request 'custom/schema/content - (73)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.tcpsocketaction"
[Trace - 15:41:22] Sending response 'custom/schema/content - (73)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.TCPSocketAction\",\"required\":[\"port\"],\"description\":\"TCPSocketAction describes an action based on opening a socket\",\"properties\":{\"host\":{\"type\":\"string\",\"description\":\"Optional: Host name to connect to, defaults to the pod IP.\",\"markdownDescription\":\"**host** (string)\\n\\nOptional: Host name to connect to, defaults to the pod IP.\"},\"port\":{\"description\":\"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (74)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.execaction"
[Trace - 15:41:22] Sending response 'custom/schema/content - (74)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ExecAction\",\"description\":\"ExecAction describes a \\\"run in container\\\" action.\",\"properties\":{\"command\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\"markdownDescription\":\"**command** (string[])\\n\\nCommand is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (75)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.httpgetaction"
[Trace - 15:41:22] Sending response 'custom/schema/content - (75)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.HTTPGetAction\",\"required\":[\"port\"],\"description\":\"HTTPGetAction describes an action based on HTTP Get requests.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path to access on the HTTP server.\",\"markdownDescription\":\"**path** (string)\\n\\nPath to access on the HTTP server.\"},\"host\":{\"type\":\"string\",\"description\":\"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\"markdownDescription\":\"**host** (string)\\n\\nHost name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"},\"scheme\":{\"type\":\"string\",\"description\":\"Scheme to use for connecting to the host. Defaults to HTTP.\",\"markdownDescription\":\"**scheme** (string)\\n\\nScheme to use for connecting to the host. Defaults to HTTP.\"},\"httpHeaders\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.httpheader\"},\"type\":\"array\",\"description\":\"Custom headers to set in the request. HTTP allows repeated headers.\",\"markdownDescription\":\"httpHeaders: Custom headers to set in the request. HTTP allows repeated headers.\\n\\nHTTPHeader describes a custom header to be used in HTTP probes\\n\\n**name** (string)\\n\\nThe header field name\\n\\n**value** (string)\\n\\nThe header field value\\n\\n\"},\"port\":{\"description\":\"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (76)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.envvarsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (76)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.EnvVarSource\",\"description\":\"EnvVarSource represents a source for the value of an EnvVar.\",\"properties\":{\"secretKeyRef\":{\"description\":\"Selects a key of a secret in the pod's namespace\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretkeyselector\",\"markdownDescription\":\"secretKeyRef: Selects a key of a secret in the pod's namespace\\n\\nSecretKeySelector selects a key of a Secret.\\n\\n**key** (string)\\n\\nThe key of the secret to select from. Must be a valid secret key.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret or it's key must be defined\\n\\n\"},\"fieldRef\":{\"description\":\"Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.objectfieldselector\",\"markdownDescription\":\"fieldRef: Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.\\n\\nObjectFieldSelector selects an APIVersioned field of an object.\\n\\n**apiVersion** (string)\\n\\nVersion of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\\n\\n**fieldPath** (string)\\n\\nPath of the field to select in the specified API version.\\n\\n\"},\"configMapKeyRef\":{\"description\":\"Selects a key of a ConfigMap.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapkeyselector\",\"markdownDescription\":\"configMapKeyRef: Selects a key of a ConfigMap.\\n\\nSelects a key from a ConfigMap.\\n\\n**key** (string)\\n\\nThe key to select.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's key must be defined\\n\\n\"},\"resourceFieldRef\":{\"description\":\"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.resourcefieldselector\",\"markdownDescription\":\"resourceFieldRef: Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\\n\\nResourceFieldSelector represents container resources (cpu, memory) and their output format\\n\\n**containerName** (string)\\n\\nContainer name: required for volumes, optional for env vars\\n\\n**divisor** (object)\\n\\nSpecifies the output format of the exposed resources, defaults to \\\"1\\\"\\n\\n**resource** (string)\\n\\nRequired: resource to select\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (77)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretenvsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (77)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretEnvSource\",\"description\":\"SecretEnvSource selects a Secret to populate the environment variables with.\\n\\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (78)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapenvsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (78)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapEnvSource\",\"description\":\"ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\\n\\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (79)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.capabilities"
[Trace - 15:41:22] Sending response 'custom/schema/content - (79)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Capabilities\",\"description\":\"Adds and removes POSIX capabilities from running containers.\",\"properties\":{\"add\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Added capabilities\",\"markdownDescription\":\"**add** (string[])\\n\\nAdded capabilities\"},\"drop\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Removed capabilities\",\"markdownDescription\":\"**drop** (string[])\\n\\nRemoved capabilities\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (80)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.handler"
[Trace - 15:41:22] Sending response 'custom/schema/content - (80)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.Handler\",\"description\":\"Handler defines a specific action that should be taken\",\"properties\":{\"httpGet\":{\"description\":\"HTTPGet specifies the http request to perform.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.httpgetaction\",\"markdownDescription\":\"httpGet: HTTPGet specifies the http request to perform.\\n\\nHTTPGetAction describes an action based on HTTP Get requests.\\n\\n**host** (string)\\n\\nHost name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\\n\\n**httpHeaders** (object[])\\n\\nCustom headers to set in the request. HTTP allows repeated headers.\\n\\n**path** (string)\\n\\nPath to access on the HTTP server.\\n\\n**port** (object)\\n\\nName or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n**scheme** (string)\\n\\nScheme to use for connecting to the host. Defaults to HTTP.\\n\\n\"},\"tcpSocket\":{\"description\":\"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.tcpsocketaction\",\"markdownDescription\":\"tcpSocket: TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\nTCPSocketAction describes an action based on opening a socket\\n\\n**host** (string)\\n\\nOptional: Host name to connect to, defaults to the pod IP.\\n\\n**port** (object)\\n\\nNumber or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n\"},\"exec\":{\"description\":\"One and only one of the following should be specified. Exec specifies the action to take.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.execaction\",\"markdownDescription\":\"exec: One and only one of the following should be specified. Exec specifies the action to take.\\n\\nExecAction describes a \\\"run in container\\\" action.\\n\\n**command** (string[])\\n\\nCommand is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (81)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.keytopath"
[Trace - 15:41:22] Sending response 'custom/schema/content - (81)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.KeyToPath\",\"required\":[\"key\",\"path\"],\"description\":\"Maps a string key to a path within a volume.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\"markdownDescription\":\"**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\"},\"mode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"key\":{\"type\":\"string\",\"description\":\"The key to project.\",\"markdownDescription\":\"**key** (string)\\n\\nThe key to project.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (82)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.downwardapivolumefile"
[Trace - 15:41:22] Sending response 'custom/schema/content - (82)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.DownwardAPIVolumeFile\",\"required\":[\"path\"],\"description\":\"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\"markdownDescription\":\"**path** (string)\\n\\nRequired: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\"},\"fieldRef\":{\"description\":\"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.objectfieldselector\",\"markdownDescription\":\"fieldRef: Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\\n\\nObjectFieldSelector selects an APIVersioned field of an object.\\n\\n**apiVersion** (string)\\n\\nVersion of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\\n\\n**fieldPath** (string)\\n\\nPath of the field to select in the specified API version.\\n\\n\"},\"mode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"resourceFieldRef\":{\"description\":\"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.resourcefieldselector\",\"markdownDescription\":\"resourceFieldRef: Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\\n\\nResourceFieldSelector represents container resources (cpu, memory) and their output format\\n\\n**containerName** (string)\\n\\nContainer name: required for volumes, optional for env vars\\n\\n**divisor** (object)\\n\\nSpecifies the output format of the exposed resources, defaults to \\\"1\\\"\\n\\n**resource** (string)\\n\\nRequired: resource to select\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (83)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volumeprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (83)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.VolumeProjection\",\"description\":\"Projection that may be projected along with other supported volume types\",\"properties\":{\"configMap\":{\"description\":\"information about the configMap data to project\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapprojection\",\"markdownDescription\":\"configMap: information about the configMap data to project\\n\\nAdapts a ConfigMap into a projected volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\\n\\n\"},\"secret\":{\"description\":\"information about the secret data to project\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretprojection\",\"markdownDescription\":\"secret: information about the secret data to project\\n\\nAdapts a secret into a projected volume.\\n\\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret or its key must be defined\\n\\n\"},\"downwardAPI\":{\"description\":\"information about the downwardAPI data to project\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapiprojection\",\"markdownDescription\":\"downwardAPI: information about the downwardAPI data to project\\n\\nRepresents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.\\n\\n**items** (object[])\\n\\nItems is a list of DownwardAPIVolume file\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (84)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.weightedpodaffinityterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (84)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.WeightedPodAffinityTerm\",\"required\":[\"weight\",\"podAffinityTerm\"],\"description\":\"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\"properties\":{\"podAffinityTerm\":{\"description\":\"Required. A pod affinity term, associated with the corresponding weight.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinityterm\",\"markdownDescription\":\"podAffinityTerm: Required. A pod affinity term, associated with the corresponding weight.\\n\\nDefines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\\n\\n**labelSelector** (object)\\n\\nA label query over a set of resources, in this case pods.\\n\\n**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\\n\\n**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\\n\\n\"},\"weight\":{\"type\":\"integer\",\"description\":\"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\"format\":\"int32\",\"markdownDescription\":\"**weight** (integer)\\n\\nweight associated with matching the corresponding podAffinityTerm, in the range 1-100.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (85)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podaffinityterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (85)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodAffinityTerm\",\"required\":[\"topologyKey\"],\"description\":\"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\",\"properties\":{\"labelSelector\":{\"description\":\"A label query over a set of resources, in this case pods.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselector\",\"markdownDescription\":\"labelSelector: A label query over a set of resources, in this case pods.\\n\\nA label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nmatchExpressions is a list of label selector requirements. The requirements are ANDed.\\n\\n**matchLabels** (object)\\n\\nmatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\\n\\n\"},\"namespaces\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\",\"markdownDescription\":\"**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\"},\"topologyKey\":{\"type\":\"string\",\"description\":\"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\"markdownDescription\":\"**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (86)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.preferredschedulingterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (86)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PreferredSchedulingTerm\",\"required\":[\"weight\",\"preference\"],\"description\":\"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\"properties\":{\"preference\":{\"description\":\"A node selector term, associated with the corresponding weight.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselectorterm\",\"markdownDescription\":\"preference: A node selector term, associated with the corresponding weight.\\n\\nA null or empty node selector term matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nRequired. A list of node selector requirements. The requirements are ANDed.\\n\\n\"},\"weight\":{\"type\":\"integer\",\"description\":\"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\"format\":\"int32\",\"markdownDescription\":\"**weight** (integer)\\n\\nWeight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (87)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (87)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeSelector\",\"required\":[\"nodeSelectorTerms\"],\"description\":\"A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.\",\"properties\":{\"nodeSelectorTerms\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselectorterm\"},\"type\":\"array\",\"description\":\"Required. A list of node selector terms. The terms are ORed.\",\"markdownDescription\":\"nodeSelectorTerms: Required. A list of node selector terms. The terms are ORed.\\n\\nA null or empty node selector term matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nRequired. A list of node selector requirements. The requirements are ANDed.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (88)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.httpheader"
[Trace - 15:41:22] Sending response 'custom/schema/content - (88)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.HTTPHeader\",\"required\":[\"name\",\"value\"],\"description\":\"HTTPHeader describes a custom header to be used in HTTP probes\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"The header field name\",\"markdownDescription\":\"**name** (string)\\n\\nThe header field name\"},\"value\":{\"type\":\"string\",\"description\":\"The header field value\",\"markdownDescription\":\"**value** (string)\\n\\nThe header field value\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (89)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.resourcefieldselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (89)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ResourceFieldSelector\",\"required\":[\"resource\"],\"description\":\"ResourceFieldSelector represents container resources (cpu, memory) and their output format\",\"properties\":{\"containerName\":{\"type\":\"string\",\"description\":\"Container name: required for volumes, optional for env vars\",\"markdownDescription\":\"**containerName** (string)\\n\\nContainer name: required for volumes, optional for env vars\"},\"resource\":{\"type\":\"string\",\"description\":\"Required: resource to select\",\"markdownDescription\":\"**resource** (string)\\n\\nRequired: resource to select\"},\"divisor\":{\"description\":\"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\",\"markdownDescription\":\"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (90)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapkeyselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (90)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapKeySelector\",\"required\":[\"key\"],\"description\":\"Selects a key from a ConfigMap.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap or it's key must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's key must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"},\"key\":{\"type\":\"string\",\"description\":\"The key to select.\",\"markdownDescription\":\"**key** (string)\\n\\nThe key to select.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (91)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.objectfieldselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (91)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ObjectFieldSelector\",\"required\":[\"fieldPath\"],\"description\":\"ObjectFieldSelector selects an APIVersioned field of an object.\",\"properties\":{\"fieldPath\":{\"type\":\"string\",\"description\":\"Path of the field to select in the specified API version.\",\"markdownDescription\":\"**fieldPath** (string)\\n\\nPath of the field to select in the specified API version.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nVersion of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (92)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretkeyselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (92)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretKeySelector\",\"required\":[\"key\"],\"description\":\"SecretKeySelector selects a key of a Secret.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret or it's key must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret or it's key must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"},\"key\":{\"type\":\"string\",\"description\":\"The key of the secret to select from. Must be a valid secret key.\",\"markdownDescription\":\"**key** (string)\\n\\nThe key of the secret to select from. Must be a valid secret key.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (93)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.downwardapiprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (93)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.DownwardAPIProjection\",\"description\":\"Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapivolumefile\"},\"type\":\"array\",\"description\":\"Items is a list of DownwardAPIVolume file\",\"markdownDescription\":\"items: Items is a list of DownwardAPIVolume file\\n\\nDownwardAPIVolumeFile represents information to create the file containing the pod field\\n\\n**fieldRef** (object)\\n\\nRequired: Selects a field of the pod: only annotations, labels, name and namespace are supported.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nRequired: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\\n\\n**resourceFieldRef** (object)\\n\\nSelects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (94)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (94)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretProjection\",\"description\":\"Adapts a secret into a projected volume.\\n\\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret or its key must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret or its key must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (95)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (95)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapProjection\",\"description\":\"Adapts a ConfigMap into a projected volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap or it's keys must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (96)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeselectorterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (96)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeSelectorTerm\",\"required\":[\"matchExpressions\"],\"description\":\"A null or empty node selector term matches no objects.\",\"properties\":{\"matchExpressions\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselectorrequirement\"},\"type\":\"array\",\"description\":\"Required. A list of node selector requirements. The requirements are ANDed.\",\"markdownDescription\":\"matchExpressions: Required. A list of node selector requirements. The requirements are ANDed.\\n\\nA node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\\n\\n**key** (string)\\n\\nThe label key that the selector applies to.\\n\\n**operator** (string)\\n\\nRepresents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\\n\\n**values** (string[])\\n\\nAn array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (97)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeselectorrequirement"
[Trace - 15:41:22] Sending response 'custom/schema/content - (97)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeSelectorRequirement\",\"required\":[\"key\",\"operator\"],\"description\":\"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\"properties\":{\"operator\":{\"type\":\"string\",\"description\":\"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\"markdownDescription\":\"**operator** (string)\\n\\nRepresents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"},\"values\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\"markdownDescription\":\"**values** (string[])\\n\\nAn array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"},\"key\":{\"type\":\"string\",\"description\":\"The label key that the selector applies to.\",\"markdownDescription\":\"**key** (string)\\n\\nThe label key that the selector applies to.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received notification 'textDocument/publishDiagnostics'.
Params: {
"uri": "file:///home/victor/a/test.yaml",
"diagnostics": [
{
"severity": 1,
"range": {
"start": {
"line": 0,
"character": 0
},
"end": {
"line": 0,
"character": 1
}
},
"message": "Matches multiple schemas when only one must validate."
},
{
"severity": 1,
"range": {
"start": {
"line": 22,
"character": 0
},
"end": {
"line": 22,
"character": 1
}
},
"message": "Matches multiple schemas when only one must validate."
}
]
}
[Trace - 15:41:22] Received request 'custom/schema/request - (98)'.
Params: "file:///home/victor/a/test.yaml"
[Trace - 15:41:22] Sending response 'custom/schema/request - (98)'. Processing request took 0ms
Result: "kubernetes://schema/apps/v1@deployment+v1@configmap"
[Trace - 15:41:22] Received request 'custom/schema/content - (99)'.
Params: "kubernetes://schema/apps/v1@deployment+v1@configmap"
[Trace - 15:41:22] Sending response 'custom/schema/content - (99)'. Processing request took 1ms
Result: "{\"oneOf\":[{\"$ref\":\"kubernetes://schema/apps/v1@deployment\"},{\"$ref\":\"kubernetes://schema/v1@configmap\"}]}"
[Trace - 15:41:22] Received request 'custom/schema/content - (100)'.
Params: "kubernetes://schema/v1%40configmap"
[Trace - 15:41:22] Sending response 'custom/schema/content - (100)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMap\",\"id\":\"v1@ConfigMap\",\"apiVersion\":\"v1\",\"kind\":\"ConfigMap\",\"description\":\"ConfigMap holds configuration data for pods to consume.\",\"properties\":{\"kind\":{\"type\":\"string\",\"description\":\"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"ConfigMap: ConfigMap holds configuration data for pods to consume.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**data** (object)\\n\\nData contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**metadata** (object)\\n\\nStandard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n\"},\"data\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.\",\"markdownDescription\":\"**data** (object)\\n\\nData contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\"},\"metadata\":{\"description\":\"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta\",\"markdownDescription\":\"metadata: Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\nObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\\n\\n**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\\n\\n**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\\n\\n**creationTimestamp** (object)\\n\\nCreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\\n\\n**deletionTimestamp** (object)\\n\\nDeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\\n\\n**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\\n\\n**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\\n\\n**initializers** (object)\\n\\nAn initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\n**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\\n\\n**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\\n\\n**ownerReferences** (object[])\\n\\nList of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\n**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (101)'.
Params: "kubernetes://schema/apps/v1%40deployment"
[Trace - 15:41:22] Sending response 'custom/schema/content - (101)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.apps.v1.Deployment\",\"id\":\"apps/v1@Deployment\",\"apiVersion\":\"apps/v1\",\"kind\":\"Deployment\",\"description\":\"Deployment enables declarative updates for Pods and ReplicaSets.\",\"properties\":{\"status\":{\"description\":\"Most recently observed status of the Deployment.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentstatus\",\"markdownDescription\":\"status: Most recently observed status of the Deployment.\\n\\nDeploymentStatus is the most recently observed status of the Deployment.\\n\\n**availableReplicas** (integer)\\n\\nTotal number of available pods (ready for at least minReadySeconds) targeted by this deployment.\\n\\n**collisionCount** (integer)\\n\\nCount of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.\\n\\n**conditions** (object[])\\n\\nRepresents the latest available observations of a deployment's current state.\\n\\n**observedGeneration** (integer)\\n\\nThe generation observed by the deployment controller.\\n\\n**readyReplicas** (integer)\\n\\nTotal number of ready pods targeted by this deployment.\\n\\n**replicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment (their labels match the selector).\\n\\n**unavailableReplicas** (integer)\\n\\nTotal number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.\\n\\n**updatedReplicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment that have the desired template spec.\\n\\n\"},\"kind\":{\"type\":\"string\",\"description\":\"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"Deployment: Deployment enables declarative updates for Pods and ReplicaSets.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**metadata** (object)\\n\\nStandard object metadata.\\n\\n**spec** (object)\\n\\nSpecification of the desired behavior of the Deployment.\\n\\n**status** (object)\\n\\nMost recently observed status of the Deployment.\\n\\n\"},\"spec\":{\"description\":\"Specification of the desired behavior of the Deployment.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentspec\",\"markdownDescription\":\"spec: Specification of the desired behavior of the Deployment.\\n\\nDeploymentSpec is the specification of the desired behavior of the Deployment.\\n\\n**minReadySeconds** (integer)\\n\\nMinimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\\n\\n**paused** (boolean)\\n\\nIndicates that the deployment is paused.\\n\\n**progressDeadlineSeconds** (integer)\\n\\nThe maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\\n\\n**replicas** (integer)\\n\\nNumber of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\\n\\n**revisionHistoryLimit** (integer)\\n\\nThe number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\\n\\n**selector** (object)\\n\\nLabel selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\\n\\n**strategy** (object)\\n\\nThe deployment strategy to use to replace existing pods with new ones.\\n\\n**template** (object)\\n\\nTemplate describes the pods that will be created.\\n\\n\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\"},\"metadata\":{\"description\":\"Standard object metadata.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta\",\"markdownDescription\":\"metadata: Standard object metadata.\\n\\nObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\\n\\n**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\\n\\n**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\\n\\n**creationTimestamp** (object)\\n\\nCreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\\n\\n**deletionTimestamp** (object)\\n\\nDeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\\n\\n**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\\n\\n**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\\n\\n**initializers** (object)\\n\\nAn initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\n**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\\n\\n**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\\n\\n**ownerReferences** (object[])\\n\\nList of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\n**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (102)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta"
[Trace - 15:41:22] Sending response 'custom/schema/content - (102)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta\",\"description\":\"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\",\"properties\":{\"finalizers\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\"},\"clusterName\":{\"type\":\"string\",\"description\":\"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\",\"markdownDescription\":\"**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\"},\"deletionGracePeriodSeconds\":{\"type\":\"integer\",\"description\":\"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\",\"format\":\"int64\",\"markdownDescription\":\"**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\"},\"labels\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\"markdownDescription\":\"**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\"},\"generateName\":{\"type\":\"string\",\"description\":\"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\",\"markdownDescription\":\"**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\"},\"ownerReferences\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.ownerreference\"},\"x-kubernetes-patch-merge-key\":\"uid\",\"type\":\"array\",\"description\":\"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"ownerReferences: List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\nOwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.\\n\\n**apiVersion** (string)\\n\\nAPI version of the referent.\\n\\n**blockOwnerDeletion** (boolean)\\n\\nIf true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \\\"delete\\\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.\\n\\n**controller** (boolean)\\n\\nIf true, this reference points to the managing controller.\\n\\n**kind** (string)\\n\\nKind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**name** (string)\\n\\nName of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**uid** (string)\\n\\nUID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"},\"creationTimestamp\":{\"description\":\"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\"},\"uid\":{\"type\":\"string\",\"description\":\"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\"markdownDescription\":\"**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\"},\"name\":{\"type\":\"string\",\"description\":\"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\"markdownDescription\":\"**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\"},\"deletionTimestamp\":{\"description\":\"DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\"},\"namespace\":{\"type\":\"string\",\"description\":\"Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\",\"markdownDescription\":\"**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\"},\"generation\":{\"type\":\"integer\",\"description\":\"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\",\"format\":\"int64\",\"markdownDescription\":\"**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\"},\"initializers\":{\"description\":\"An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializers\",\"markdownDescription\":\"initializers: An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\nInitializers tracks the progress of initialization.\\n\\n**pending** (object[])\\n\\nPending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.\\n\\n**result** (object)\\n\\nIf result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.\\n\\n\"},\"resourceVersion\":{\"type\":\"string\",\"description\":\"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\",\"markdownDescription\":\"**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\"},\"annotations\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\"markdownDescription\":\"**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\"},\"selfLink\":{\"type\":\"string\",\"description\":\"SelfLink is a URL representing this object. Populated by the system. Read-only.\",\"markdownDescription\":\"**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (103)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentspec"
[Trace - 15:41:22] Sending response 'custom/schema/content - (103)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentSpec\",\"required\":[\"selector\",\"template\"],\"description\":\"DeploymentSpec is the specification of the desired behavior of the Deployment.\",\"properties\":{\"progressDeadlineSeconds\":{\"type\":\"integer\",\"description\":\"The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\",\"format\":\"int32\",\"markdownDescription\":\"**progressDeadlineSeconds** (integer)\\n\\nThe maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\"},\"replicas\":{\"type\":\"integer\",\"description\":\"Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\",\"format\":\"int32\",\"markdownDescription\":\"**replicas** (integer)\\n\\nNumber of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\"},\"selector\":{\"description\":\"Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselector\",\"markdownDescription\":\"selector: Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\\n\\nA label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nmatchExpressions is a list of label selector requirements. The requirements are ANDed.\\n\\n**matchLabels** (object)\\n\\nmatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\\n\\n\"},\"paused\":{\"type\":\"boolean\",\"description\":\"Indicates that the deployment is paused.\",\"markdownDescription\":\"**paused** (boolean)\\n\\nIndicates that the deployment is paused.\"},\"template\":{\"description\":\"Template describes the pods that will be created.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podtemplatespec\",\"markdownDescription\":\"template: Template describes the pods that will be created.\\n\\nPodTemplateSpec describes the data a pod should have when created from a template\\n\\n**metadata** (object)\\n\\nStandard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**spec** (object)\\n\\nSpecification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\n\"},\"revisionHistoryLimit\":{\"type\":\"integer\",\"description\":\"The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\",\"format\":\"int32\",\"markdownDescription\":\"**revisionHistoryLimit** (integer)\\n\\nThe number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\"},\"strategy\":{\"description\":\"The deployment strategy to use to replace existing pods with new ones.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentstrategy\",\"markdownDescription\":\"strategy: The deployment strategy to use to replace existing pods with new ones.\\n\\nDeploymentStrategy describes how to replace existing pods with new ones.\\n\\n**rollingUpdate** (object)\\n\\nRolling update config params. Present only if DeploymentStrategyType = RollingUpdate.\\n\\n**type** (string)\\n\\nType of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate.\\n\\n\"},\"minReadySeconds\":{\"type\":\"integer\",\"description\":\"Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\",\"format\":\"int32\",\"markdownDescription\":\"**minReadySeconds** (integer)\\n\\nMinimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (104)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentstatus"
[Trace - 15:41:22] Sending response 'custom/schema/content - (104)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentStatus\",\"description\":\"DeploymentStatus is the most recently observed status of the Deployment.\",\"properties\":{\"collisionCount\":{\"type\":\"integer\",\"description\":\"Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.\",\"format\":\"int32\",\"markdownDescription\":\"**collisionCount** (integer)\\n\\nCount of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.\"},\"replicas\":{\"type\":\"integer\",\"description\":\"Total number of non-terminated pods targeted by this deployment (their labels match the selector).\",\"format\":\"int32\",\"markdownDescription\":\"**replicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment (their labels match the selector).\"},\"observedGeneration\":{\"type\":\"integer\",\"description\":\"The generation observed by the deployment controller.\",\"format\":\"int64\",\"markdownDescription\":\"**observedGeneration** (integer)\\n\\nThe generation observed by the deployment controller.\"},\"updatedReplicas\":{\"type\":\"integer\",\"description\":\"Total number of non-terminated pods targeted by this deployment that have the desired template spec.\",\"format\":\"int32\",\"markdownDescription\":\"**updatedReplicas** (integer)\\n\\nTotal number of non-terminated pods targeted by this deployment that have the desired template spec.\"},\"availableReplicas\":{\"type\":\"integer\",\"description\":\"Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.\",\"format\":\"int32\",\"markdownDescription\":\"**availableReplicas** (integer)\\n\\nTotal number of available pods (ready for at least minReadySeconds) targeted by this deployment.\"},\"unavailableReplicas\":{\"type\":\"integer\",\"description\":\"Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.\",\"format\":\"int32\",\"markdownDescription\":\"**unavailableReplicas** (integer)\\n\\nTotal number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.\"},\"readyReplicas\":{\"type\":\"integer\",\"description\":\"Total number of ready pods targeted by this deployment.\",\"format\":\"int32\",\"markdownDescription\":\"**readyReplicas** (integer)\\n\\nTotal number of ready pods targeted by this deployment.\"},\"conditions\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.deploymentcondition\"},\"x-kubernetes-patch-merge-key\":\"type\",\"type\":\"array\",\"description\":\"Represents the latest available observations of a deployment's current state.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"conditions: Represents the latest available observations of a deployment's current state.\\n\\nDeploymentCondition describes the state of a deployment at a certain point.\\n\\n**lastTransitionTime** (object)\\n\\nLast time the condition transitioned from one status to another.\\n\\n**lastUpdateTime** (object)\\n\\nThe last time this condition was updated.\\n\\n**message** (string)\\n\\nA human readable message indicating details about the transition.\\n\\n**reason** (string)\\n\\nThe reason for the condition's last transition.\\n\\n**status** (string)\\n\\nStatus of the condition, one of True, False, Unknown.\\n\\n**type** (string)\\n\\nType of deployment condition.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (105)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializers"
[Trace - 15:41:22] Sending response 'custom/schema/content - (105)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Initializers\",\"required\":[\"pending\"],\"description\":\"Initializers tracks the progress of initialization.\",\"properties\":{\"result\":{\"description\":\"If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.status\",\"markdownDescription\":\"result: If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.\\n\\nStatus is a return value for calls that don't return other objects.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**code** (integer)\\n\\nSuggested HTTP return code for this status, 0 if not set.\\n\\n**details** (object)\\n\\nExtended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**message** (string)\\n\\nA human-readable description of the status of this operation.\\n\\n**metadata** (object)\\n\\nStandard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**reason** (string)\\n\\nA machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\\n\\n**status** (string)\\n\\nStatus of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\n\"},\"pending\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializer\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"pending: Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.\\n\\nInitializer is information about an initializer that has not yet completed.\\n\\n**name** (string)\\n\\nname of the process that is responsible for initializing this object.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (106)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time"
[Trace - 15:41:22] Sending response 'custom/schema/content - (106)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Time\",\"type\":\"string\",\"format\":\"date-time\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (107)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.ownerreference"
[Trace - 15:41:22] Sending response 'custom/schema/content - (107)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference\",\"required\":[\"apiVersion\",\"kind\",\"name\",\"uid\"],\"description\":\"OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.\",\"properties\":{\"kind\":{\"type\":\"string\",\"description\":\"Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"**kind** (string)\\n\\nKind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"},\"blockOwnerDeletion\":{\"type\":\"boolean\",\"description\":\"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \\\"delete\\\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.\",\"markdownDescription\":\"**blockOwnerDeletion** (boolean)\\n\\nIf true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \\\"delete\\\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.\"},\"uid\":{\"type\":\"string\",\"description\":\"UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\"markdownDescription\":\"**uid** (string)\\n\\nUID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\"},\"controller\":{\"type\":\"boolean\",\"description\":\"If true, this reference points to the managing controller.\",\"markdownDescription\":\"**controller** (boolean)\\n\\nIf true, this reference points to the managing controller.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"API version of the referent.\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPI version of the referent.\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (108)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentstrategy"
[Trace - 15:41:22] Sending response 'custom/schema/content - (108)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentStrategy\",\"description\":\"DeploymentStrategy describes how to replace existing pods with new ones.\",\"properties\":{\"rollingUpdate\":{\"description\":\"Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.\",\"$ref\":\"kubernetes://schema/io.k8s.api.apps.v1.rollingupdatedeployment\",\"markdownDescription\":\"rollingUpdate: Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.\\n\\nSpec to control the desired behavior of rolling update.\\n\\n**maxSurge** (object)\\n\\nThe maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.\\n\\n**maxUnavailable** (object)\\n\\nThe maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.\\n\\n\"},\"type\":{\"type\":\"string\",\"description\":\"Type of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate.\",\"markdownDescription\":\"**type** (string)\\n\\nType of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (109)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podtemplatespec"
[Trace - 15:41:22] Sending response 'custom/schema/content - (109)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodTemplateSpec\",\"description\":\"PodTemplateSpec describes the data a pod should have when created from a template\",\"properties\":{\"spec\":{\"description\":\"Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podspec\",\"markdownDescription\":\"spec: Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\nPodSpec is a description of a pod.\\n\\n**activeDeadlineSeconds** (integer)\\n\\nOptional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\\n\\n**affinity** (object)\\n\\nIf specified, the pod's scheduling constraints\\n\\n**automountServiceAccountToken** (boolean)\\n\\nAutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\\n\\n**containers** (object[])\\n\\nList of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\\n\\n**dnsConfig** (object)\\n\\nSpecifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. This is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\\n\\n**dnsPolicy** (string)\\n\\nSet DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Note that 'None' policy is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\\n\\n**hostAliases** (object[])\\n\\nHostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\\n\\n**hostIPC** (boolean)\\n\\nUse the host's ipc namespace. Optional: Default to false.\\n\\n**hostNetwork** (boolean)\\n\\nHost networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\\n\\n**hostPID** (boolean)\\n\\nUse the host's pid namespace. Optional: Default to false.\\n\\n**hostname** (string)\\n\\nSpecifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\\n\\n**imagePullSecrets** (object[])\\n\\nImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\\n\\n**initContainers** (object[])\\n\\nList of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\n\\n**nodeName** (string)\\n\\nNodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\\n\\n**nodeSelector** (object)\\n\\nNodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\\n\\n**priority** (integer)\\n\\nThe priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\\n\\n**priorityClassName** (string)\\n\\nIf specified, indicates the pod's priority. \\\"SYSTEM\\\" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\\n\\n**restartPolicy** (string)\\n\\nRestart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\\n\\n**schedulerName** (string)\\n\\nIf specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\\n\\n**securityContext** (object)\\n\\nSecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\\n\\n**serviceAccount** (string)\\n\\nDeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\\n\\n**serviceAccountName** (string)\\n\\nServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\\n\\n**subdomain** (string)\\n\\nIf specified, the fully qualified Pod hostname will be \\\"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\\\". If not specified, the pod will not have a domainname at all.\\n\\n**terminationGracePeriodSeconds** (integer)\\n\\nOptional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\\n\\n**tolerations** (object[])\\n\\nIf specified, the pod's tolerations.\\n\\n**volumes** (object[])\\n\\nList of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\\n\\n\"},\"metadata\":{\"description\":\"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta\",\"markdownDescription\":\"metadata: Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\nObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.\\n\\n**annotations** (object)\\n\\nAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\\n\\n**clusterName** (string)\\n\\nThe name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\\n\\n**creationTimestamp** (object)\\n\\nCreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\n\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**deletionGracePeriodSeconds** (integer)\\n\\nNumber of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\\n\\n**deletionTimestamp** (object)\\n\\nDeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\n\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\\n\\n**finalizers** (string[])\\n\\nMust be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.\\n\\n**generateName** (string)\\n\\nGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\n\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\n\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency\\n\\n**generation** (integer)\\n\\nA sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\\n\\n**initializers** (object)\\n\\nAn initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\\n\\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.\\n\\n**labels** (object)\\n\\nMap of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\\n\\n**name** (string)\\n\\nName must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\\n\\n**namespace** (string)\\n\\nNamespace defines the space within each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\n\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\\n\\n**ownerReferences** (object[])\\n\\nList of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\\n\\n**resourceVersion** (string)\\n\\nAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\n\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nSelfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n**uid** (string)\\n\\nUID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\n\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (110)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (110)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector\",\"description\":\"A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\",\"properties\":{\"matchLabels\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\"markdownDescription\":\"**matchLabels** (object)\\n\\nmatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"},\"matchExpressions\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselectorrequirement\"},\"type\":\"array\",\"description\":\"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\"markdownDescription\":\"matchExpressions: matchExpressions is a list of label selector requirements. The requirements are ANDed.\\n\\nA label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\\n\\n**key** (string)\\n\\nkey is the label key that the selector applies to.\\n\\n**operator** (string)\\n\\noperator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\\n\\n**values** (string[])\\n\\nvalues is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (111)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.deploymentcondition"
[Trace - 15:41:22] Sending response 'custom/schema/content - (111)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.apps.v1.DeploymentCondition\",\"required\":[\"type\",\"status\"],\"description\":\"DeploymentCondition describes the state of a deployment at a certain point.\",\"properties\":{\"status\":{\"type\":\"string\",\"description\":\"Status of the condition, one of True, False, Unknown.\",\"markdownDescription\":\"**status** (string)\\n\\nStatus of the condition, one of True, False, Unknown.\"},\"reason\":{\"type\":\"string\",\"description\":\"The reason for the condition's last transition.\",\"markdownDescription\":\"**reason** (string)\\n\\nThe reason for the condition's last transition.\"},\"lastUpdateTime\":{\"description\":\"The last time this condition was updated.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"The last time this condition was updated.\"},\"type\":{\"type\":\"string\",\"description\":\"Type of deployment condition.\",\"markdownDescription\":\"**type** (string)\\n\\nType of deployment condition.\"},\"message\":{\"type\":\"string\",\"description\":\"A human readable message indicating details about the transition.\",\"markdownDescription\":\"**message** (string)\\n\\nA human readable message indicating details about the transition.\"},\"lastTransitionTime\":{\"description\":\"Last time the condition transitioned from one status to another.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.time\",\"markdownDescription\":\"Last time the condition transitioned from one status to another.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (112)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.initializer"
[Trace - 15:41:22] Sending response 'custom/schema/content - (112)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Initializer\",\"required\":[\"name\"],\"description\":\"Initializer is information about an initializer that has not yet completed.\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"name of the process that is responsible for initializing this object.\",\"markdownDescription\":\"**name** (string)\\n\\nname of the process that is responsible for initializing this object.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (113)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.status"
[Trace - 15:41:22] Sending response 'custom/schema/content - (113)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.Status\",\"id\":\"v1@Status\",\"apiVersion\":\"v1\",\"kind\":\"Status\",\"description\":\"Status is a return value for calls that don't return other objects.\",\"properties\":{\"status\":{\"type\":\"string\",\"description\":\"Status of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\",\"markdownDescription\":\"**status** (string)\\n\\nStatus of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\"},\"kind\":{\"type\":\"string\",\"description\":\"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"Status: Status is a return value for calls that don't return other objects.\\n\\n**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\\n\\n**code** (integer)\\n\\nSuggested HTTP return code for this status, 0 if not set.\\n\\n**details** (object)\\n\\nExtended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\\n\\n**kind** (string)\\n\\nKind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**message** (string)\\n\\nA human-readable description of the status of this operation.\\n\\n**metadata** (object)\\n\\nStandard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**reason** (string)\\n\\nA machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\\n\\n**status** (string)\\n\\nStatus of the operation. One of: \\\"Success\\\" or \\\"Failure\\\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status\\n\\n\"},\"code\":{\"type\":\"integer\",\"description\":\"Suggested HTTP return code for this status, 0 if not set.\",\"format\":\"int32\",\"markdownDescription\":\"**code** (integer)\\n\\nSuggested HTTP return code for this status, 0 if not set.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nAPIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources\"},\"reason\":{\"type\":\"string\",\"description\":\"A machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\",\"markdownDescription\":\"**reason** (string)\\n\\nA machine-readable description of why this operation is in the \\\"Failure\\\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.\"},\"details\":{\"description\":\"Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statusdetails\",\"markdownDescription\":\"details: Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.\\n\\nStatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.\\n\\n**causes** (object[])\\n\\nThe Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.\\n\\n**group** (string)\\n\\nThe group attribute of the resource associated with the status StatusReason.\\n\\n**kind** (string)\\n\\nThe kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\n**name** (string)\\n\\nThe name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).\\n\\n**retryAfterSeconds** (integer)\\n\\nIf specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.\\n\\n**uid** (string)\\n\\nUID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids\\n\\n\"},\"message\":{\"type\":\"string\",\"description\":\"A human-readable description of the status of this operation.\",\"markdownDescription\":\"**message** (string)\\n\\nA human-readable description of the status of this operation.\"},\"metadata\":{\"description\":\"Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.listmeta\",\"markdownDescription\":\"metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\\n\\nListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.\\n\\n**continue** (string)\\n\\ncontinue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.\\n\\n**resourceVersion** (string)\\n\\nString that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\\n\\n**selfLink** (string)\\n\\nselfLink is a URL representing this object. Populated by the system. Read-only.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (114)'.
Params: "kubernetes://schema/io.k8s.api.apps.v1.rollingupdatedeployment"
[Trace - 15:41:22] Sending response 'custom/schema/content - (114)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.apps.v1.RollingUpdateDeployment\",\"description\":\"Spec to control the desired behavior of rolling update.\",\"properties\":{\"maxSurge\":{\"description\":\"The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.\"},\"maxUnavailable\":{\"description\":\"The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (115)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podspec"
[Trace - 15:41:22] Sending response 'custom/schema/content - (115)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodSpec\",\"required\":[\"containers\"],\"description\":\"PodSpec is a description of a pod.\",\"properties\":{\"dnsPolicy\":{\"type\":\"string\",\"description\":\"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Note that 'None' policy is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\",\"markdownDescription\":\"**dnsPolicy** (string)\\n\\nSet DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Note that 'None' policy is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\",\"enum\":[\"ClusterFirstWithHostNet\",\"ClusterFirst\",\"Default\",\"None\"]},\"serviceAccountName\":{\"type\":\"string\",\"description\":\"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\"markdownDescription\":\"**serviceAccountName** (string)\\n\\nServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\"},\"schedulerName\":{\"type\":\"string\",\"description\":\"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\",\"markdownDescription\":\"**schedulerName** (string)\\n\\nIf specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\"},\"hostNetwork\":{\"type\":\"boolean\",\"description\":\"Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\",\"markdownDescription\":\"**hostNetwork** (boolean)\\n\\nHost networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\"},\"restartPolicy\":{\"type\":\"string\",\"description\":\"Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\"markdownDescription\":\"**restartPolicy** (string)\\n\\nRestart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\"enum\":[\"Always\",\"OnFailure\",\"Never\"]},\"hostIPC\":{\"type\":\"boolean\",\"description\":\"Use the host's ipc namespace. Optional: Default to false.\",\"markdownDescription\":\"**hostIPC** (boolean)\\n\\nUse the host's ipc namespace. Optional: Default to false.\"},\"automountServiceAccountToken\":{\"type\":\"boolean\",\"description\":\"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\"markdownDescription\":\"**automountServiceAccountToken** (boolean)\\n\\nAutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\"},\"priorityClassName\":{\"type\":\"string\",\"description\":\"If specified, indicates the pod's priority. \\\"SYSTEM\\\" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\",\"markdownDescription\":\"**priorityClassName** (string)\\n\\nIf specified, indicates the pod's priority. \\\"SYSTEM\\\" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\"},\"activeDeadlineSeconds\":{\"type\":\"integer\",\"description\":\"Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\",\"format\":\"int64\",\"markdownDescription\":\"**activeDeadlineSeconds** (integer)\\n\\nOptional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\"},\"securityContext\":{\"description\":\"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podsecuritycontext\",\"markdownDescription\":\"securityContext: SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\\n\\nPodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.\\n\\n**fsGroup** (integer)\\n\\nA special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\\n\\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\n\\n**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\\n\\n**seLinuxOptions** (object)\\n\\nThe SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\\n\\n**supplementalGroups** (integer[])\\n\\nA list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\\n\\n\"},\"nodeName\":{\"type\":\"string\",\"description\":\"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\",\"markdownDescription\":\"**nodeName** (string)\\n\\nNodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\"},\"dnsConfig\":{\"description\":\"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. This is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.poddnsconfig\",\"markdownDescription\":\"dnsConfig: Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. This is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.\\n\\nPodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.\\n\\n**nameservers** (string[])\\n\\nA list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\\n\\n**options** (object[])\\n\\nA list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\\n\\n**searches** (string[])\\n\\nA list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\\n\\n\"},\"hostAliases\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.hostalias\"},\"x-kubernetes-patch-merge-key\":\"ip\",\"type\":\"array\",\"description\":\"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"hostAliases: HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\\n\\nHostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\\n\\n**hostnames** (string[])\\n\\nHostnames for the above IP address.\\n\\n**ip** (string)\\n\\nIP address of the host file entry.\\n\\n\"},\"hostname\":{\"type\":\"string\",\"description\":\"Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\",\"markdownDescription\":\"**hostname** (string)\\n\\nSpecifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\"},\"serviceAccount\":{\"type\":\"string\",\"description\":\"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\",\"markdownDescription\":\"**serviceAccount** (string)\\n\\nDeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\"},\"nodeSelector\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\"markdownDescription\":\"**nodeSelector** (object)\\n\\nNodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\"},\"priority\":{\"type\":\"integer\",\"description\":\"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\",\"format\":\"int32\",\"markdownDescription\":\"**priority** (integer)\\n\\nThe priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\"},\"terminationGracePeriodSeconds\":{\"type\":\"integer\",\"description\":\"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\",\"format\":\"int64\",\"markdownDescription\":\"**terminationGracePeriodSeconds** (integer)\\n\\nOptional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\"},\"affinity\":{\"description\":\"If specified, the pod's scheduling constraints\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.affinity\",\"markdownDescription\":\"affinity: If specified, the pod's scheduling constraints\\n\\nAffinity is a group of affinity scheduling rules.\\n\\n**nodeAffinity** (object)\\n\\nDescribes node affinity scheduling rules for the pod.\\n\\n**podAffinity** (object)\\n\\nDescribes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\\n\\n**podAntiAffinity** (object)\\n\\nDescribes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\\n\\n\"},\"containers\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.container\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"containers: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\\n\\nA single application container that you want to run within a pod.\\n\\n**args** (string[])\\n\\nArguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**command** (string[])\\n\\nEntrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**env** (object[])\\n\\nList of environment variables to set in the container. Cannot be updated.\\n\\n**envFrom** (object[])\\n\\nList of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\\n\\n**image** (string)\\n\\nDocker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\\n\\n**imagePullPolicy** (string)\\n\\nImage pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\\n\\n**lifecycle** (object)\\n\\nActions that the management system should take in response to container lifecycle events. Cannot be updated.\\n\\n**livenessProbe** (object)\\n\\nPeriodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**name** (string)\\n\\nName of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\\n\\n**ports** (object[])\\n\\nList of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\\n\\n**readinessProbe** (object)\\n\\nPeriodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**resources** (object)\\n\\nCompute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\\n\\n**securityContext** (object)\\n\\nSecurity options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\\n\\n**stdin** (boolean)\\n\\nWhether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\\n\\n**stdinOnce** (boolean)\\n\\nWhether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\\n\\n**terminationMessagePath** (string)\\n\\nOptional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\\n\\n**terminationMessagePolicy** (string)\\n\\nIndicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\\n\\n**tty** (boolean)\\n\\nWhether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\\n\\n**volumeDevices** (object[])\\n\\nvolumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\\n\\n**volumeMounts** (object[])\\n\\nPod volumes to mount into the container's filesystem. Cannot be updated.\\n\\n**workingDir** (string)\\n\\nContainer's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\\n\\n\"},\"volumes\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volume\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\",\"x-kubernetes-patch-strategy\":\"merge,retainKeys\",\"markdownDescription\":\"volumes: List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\\n\\nVolume represents a named volume in a pod that may be accessed by any container in the pod.\\n\\n**awsElasticBlockStore** (object)\\n\\nAWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n**azureDisk** (object)\\n\\nAzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\\n\\n**azureFile** (object)\\n\\nAzureFile represents an Azure File Service mount on the host and bind mount to the pod.\\n\\n**cephfs** (object)\\n\\nCephFS represents a Ceph FS mount on the host that shares a pod's lifetime\\n\\n**cinder** (object)\\n\\nCinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n**configMap** (object)\\n\\nConfigMap represents a configMap that should populate this volume\\n\\n**downwardAPI** (object)\\n\\nDownwardAPI represents downward API about the pod that should populate this volume\\n\\n**emptyDir** (object)\\n\\nEmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\\n\\n**fc** (object)\\n\\nFC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\\n\\n**flexVolume** (object)\\n\\nFlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\\n\\n**flocker** (object)\\n\\nFlocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\\n\\n**gcePersistentDisk** (object)\\n\\nGCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**gitRepo** (object)\\n\\nGitRepo represents a git repository at a particular revision.\\n\\n**glusterfs** (object)\\n\\nGlusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md\\n\\n**hostPath** (object)\\n\\nHostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\n**iscsi** (object)\\n\\nISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md\\n\\n**name** (string)\\n\\nVolume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**nfs** (object)\\n\\nNFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n**persistentVolumeClaim** (object)\\n\\nPersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\\n\\n**photonPersistentDisk** (object)\\n\\nPhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\\n\\n**portworxVolume** (object)\\n\\nPortworxVolume represents a portworx volume attached and mounted on kubelets host machine\\n\\n**projected** (object)\\n\\nItems for all in one resources secrets, configmaps, and downward API\\n\\n**quobyte** (object)\\n\\nQuobyte represents a Quobyte mount on the host that shares a pod's lifetime\\n\\n**rbd** (object)\\n\\nRBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md\\n\\n**scaleIO** (object)\\n\\nScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\\n\\n**secret** (object)\\n\\nSecret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\\n\\n**storageos** (object)\\n\\nStorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\\n\\n**vsphereVolume** (object)\\n\\nVsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\\n\\n\"},\"tolerations\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.toleration\"},\"type\":\"array\",\"description\":\"If specified, the pod's tolerations.\",\"markdownDescription\":\"tolerations: If specified, the pod's tolerations.\\n\\nThe pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.\\n\\n**effect** (string)\\n\\nEffect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\\n\\n**key** (string)\\n\\nKey is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\\n\\n**operator** (string)\\n\\nOperator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\\n\\n**tolerationSeconds** (integer)\\n\\nTolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\\n\\n**value** (string)\\n\\nValue is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\\n\\n\"},\"subdomain\":{\"type\":\"string\",\"description\":\"If specified, the fully qualified Pod hostname will be \\\"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\\\". If not specified, the pod will not have a domainname at all.\",\"markdownDescription\":\"**subdomain** (string)\\n\\nIf specified, the fully qualified Pod hostname will be \\\"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\\\". If not specified, the pod will not have a domainname at all.\"},\"initContainers\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.container\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"initContainers: List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\n\\nA single application container that you want to run within a pod.\\n\\n**args** (string[])\\n\\nArguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**command** (string[])\\n\\nEntrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\\n\\n**env** (object[])\\n\\nList of environment variables to set in the container. Cannot be updated.\\n\\n**envFrom** (object[])\\n\\nList of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\\n\\n**image** (string)\\n\\nDocker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\\n\\n**imagePullPolicy** (string)\\n\\nImage pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\\n\\n**lifecycle** (object)\\n\\nActions that the management system should take in response to container lifecycle events. Cannot be updated.\\n\\n**livenessProbe** (object)\\n\\nPeriodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**name** (string)\\n\\nName of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\\n\\n**ports** (object[])\\n\\nList of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\\n\\n**readinessProbe** (object)\\n\\nPeriodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**resources** (object)\\n\\nCompute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\\n\\n**securityContext** (object)\\n\\nSecurity options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\\n\\n**stdin** (boolean)\\n\\nWhether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\\n\\n**stdinOnce** (boolean)\\n\\nWhether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\\n\\n**terminationMessagePath** (string)\\n\\nOptional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\\n\\n**terminationMessagePolicy** (string)\\n\\nIndicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\\n\\n**tty** (boolean)\\n\\nWhether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\\n\\n**volumeDevices** (object[])\\n\\nvolumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\\n\\n**volumeMounts** (object[])\\n\\nPod volumes to mount into the container's filesystem. Cannot be updated.\\n\\n**workingDir** (string)\\n\\nContainer's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\\n\\n\"},\"imagePullSecrets\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"imagePullSecrets: ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"hostPID\":{\"type\":\"boolean\",\"description\":\"Use the host's pid namespace. Optional: Default to false.\",\"markdownDescription\":\"**hostPID** (boolean)\\n\\nUse the host's pid namespace. Optional: Default to false.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (116)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselectorrequirement"
[Trace - 15:41:22] Sending response 'custom/schema/content - (116)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement\",\"required\":[\"key\",\"operator\"],\"description\":\"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\"properties\":{\"operator\":{\"type\":\"string\",\"description\":\"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\"markdownDescription\":\"**operator** (string)\\n\\noperator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"},\"values\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\"markdownDescription\":\"**values** (string[])\\n\\nvalues is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"},\"key\":{\"x-kubernetes-patch-merge-key\":\"key\",\"type\":\"string\",\"description\":\"key is the label key that the selector applies to.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"**key** (string)\\n\\nkey is the label key that the selector applies to.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (117)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.listmeta"
[Trace - 15:41:22] Sending response 'custom/schema/content - (117)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta\",\"description\":\"ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.\",\"properties\":{\"continue\":{\"type\":\"string\",\"description\":\"continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.\",\"markdownDescription\":\"**continue** (string)\\n\\ncontinue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.\"},\"selfLink\":{\"type\":\"string\",\"description\":\"selfLink is a URL representing this object. Populated by the system. Read-only.\",\"markdownDescription\":\"**selfLink** (string)\\n\\nselfLink is a URL representing this object. Populated by the system. Read-only.\"},\"resourceVersion\":{\"type\":\"string\",\"description\":\"String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\",\"markdownDescription\":\"**resourceVersion** (string)\\n\\nString that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (118)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statusdetails"
[Trace - 15:41:22] Sending response 'custom/schema/content - (118)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails\",\"description\":\"StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.\",\"properties\":{\"kind\":{\"type\":\"string\",\"description\":\"The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\",\"markdownDescription\":\"**kind** (string)\\n\\nThe kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"},\"group\":{\"type\":\"string\",\"description\":\"The group attribute of the resource associated with the status StatusReason.\",\"markdownDescription\":\"**group** (string)\\n\\nThe group attribute of the resource associated with the status StatusReason.\"},\"name\":{\"type\":\"string\",\"description\":\"The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).\",\"markdownDescription\":\"**name** (string)\\n\\nThe name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).\"},\"retryAfterSeconds\":{\"type\":\"integer\",\"description\":\"If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.\",\"format\":\"int32\",\"markdownDescription\":\"**retryAfterSeconds** (integer)\\n\\nIf specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.\"},\"causes\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statuscause\"},\"type\":\"array\",\"description\":\"The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.\",\"markdownDescription\":\"causes: The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.\\n\\nStatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.\\n\\n**field** (string)\\n\\nThe field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\\n\\nExamples:\\n \\\"name\\\" - the field \\\"name\\\" on the current resource\\n \\\"items[0].name\\\" - the field \\\"name\\\" on the first array entry in \\\"items\\\"\\n\\n**message** (string)\\n\\nA human-readable description of the cause of the error. This field may be presented as-is to a reader.\\n\\n**reason** (string)\\n\\nA machine-readable description of the cause of the error. If this value is empty there is no information available.\\n\\n\"},\"uid\":{\"type\":\"string\",\"description\":\"UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\"markdownDescription\":\"**uid** (string)\\n\\nUID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (119)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring"
[Trace - 15:41:22] Sending response 'custom/schema/content - (119)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.util.intstr.IntOrString\",\"oneOf\":[{\"type\":\"string\"},{\"type\":\"integer\"}]}"
[Trace - 15:41:22] Received request 'custom/schema/content - (120)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.localobjectreference"
[Trace - 15:41:22] Sending response 'custom/schema/content - (120)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.LocalObjectReference\",\"description\":\"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (121)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.container"
[Trace - 15:41:22] Sending response 'custom/schema/content - (121)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Container\",\"required\":[\"name\"],\"description\":\"A single application container that you want to run within a pod.\",\"properties\":{\"livenessProbe\":{\"description\":\"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.probe\",\"markdownDescription\":\"livenessProbe: Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\nProbe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**failureThreshold** (integer)\\n\\nMinimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**initialDelaySeconds** (integer)\\n\\nNumber of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**periodSeconds** (integer)\\n\\nHow often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\\n\\n**successThreshold** (integer)\\n\\nMinimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n**timeoutSeconds** (integer)\\n\\nNumber of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n\"},\"terminationMessagePath\":{\"type\":\"string\",\"description\":\"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\"markdownDescription\":\"**terminationMessagePath** (string)\\n\\nOptional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\"},\"workingDir\":{\"type\":\"string\",\"description\":\"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\"markdownDescription\":\"**workingDir** (string)\\n\\nContainer's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\"},\"image\":{\"type\":\"string\",\"description\":\"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\"markdownDescription\":\"**image** (string)\\n\\nDocker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\"},\"args\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\"markdownDescription\":\"**args** (string[])\\n\\nArguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"},\"volumeMounts\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volumemount\"},\"x-kubernetes-patch-merge-key\":\"mountPath\",\"type\":\"array\",\"description\":\"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"volumeMounts: Pod volumes to mount into the container's filesystem. Cannot be updated.\\n\\nVolumeMount describes a mounting of a Volume within a container.\\n\\n**mountPath** (string)\\n\\nPath within the container at which the volume should be mounted. Must not contain ':'.\\n\\n**mountPropagation** (string)\\n\\nmountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.\\n\\n**name** (string)\\n\\nThis must match the Name of a Volume.\\n\\n**readOnly** (boolean)\\n\\nMounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\\n\\n**subPath** (string)\\n\\nPath within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\\n\\n\"},\"tty\":{\"type\":\"boolean\",\"description\":\"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\"markdownDescription\":\"**tty** (boolean)\\n\\nWhether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\"},\"lifecycle\":{\"description\":\"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.lifecycle\",\"markdownDescription\":\"lifecycle: Actions that the management system should take in response to container lifecycle events. Cannot be updated.\\n\\nLifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.\\n\\n**postStart** (object)\\n\\nPostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\n**preStop** (object)\\n\\nPreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\n\"},\"securityContext\":{\"description\":\"Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.securitycontext\",\"markdownDescription\":\"securityContext: Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\\n\\nSecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.\\n\\n**allowPrivilegeEscalation** (boolean)\\n\\nAllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\\n\\n**capabilities** (object)\\n\\nThe capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\\n\\n**privileged** (boolean)\\n\\nRun container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\\n\\n**readOnlyRootFilesystem** (boolean)\\n\\nWhether this container has a read-only root filesystem. Default is false.\\n\\n**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n**seLinuxOptions** (object)\\n\\nThe SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\n\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\"markdownDescription\":\"**name** (string)\\n\\nName of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\"},\"envFrom\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.envfromsource\"},\"type\":\"array\",\"description\":\"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\"markdownDescription\":\"envFrom: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\\n\\nEnvFromSource represents the source of a set of ConfigMaps\\n\\n**configMapRef** (object)\\n\\nThe ConfigMap to select from\\n\\n**prefix** (string)\\n\\nAn optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\\n\\n**secretRef** (object)\\n\\nThe Secret to select from\\n\\n\"},\"volumeDevices\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volumedevice\"},\"x-kubernetes-patch-merge-key\":\"devicePath\",\"type\":\"array\",\"description\":\"volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"volumeDevices: volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.\\n\\nvolumeDevice describes a mapping of a raw block device within a container.\\n\\n**devicePath** (string)\\n\\ndevicePath is the path inside of the container that the device will be mapped to.\\n\\n**name** (string)\\n\\nname must match the name of a persistentVolumeClaim in the pod\\n\\n\"},\"stdin\":{\"type\":\"boolean\",\"description\":\"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\"markdownDescription\":\"**stdin** (boolean)\\n\\nWhether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\"},\"stdinOnce\":{\"type\":\"boolean\",\"description\":\"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\"markdownDescription\":\"**stdinOnce** (boolean)\\n\\nWhether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\"},\"terminationMessagePolicy\":{\"type\":\"string\",\"description\":\"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\"markdownDescription\":\"**terminationMessagePolicy** (string)\\n\\nIndicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\"enum\":[\"File\",\"FallbackToLogsOnError\"]},\"command\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\"markdownDescription\":\"**command** (string[])\\n\\nEntrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"},\"env\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.envvar\"},\"x-kubernetes-patch-merge-key\":\"name\",\"type\":\"array\",\"description\":\"List of environment variables to set in the container. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"env: List of environment variables to set in the container. Cannot be updated.\\n\\nEnvVar represents an environment variable present in a Container.\\n\\n**name** (string)\\n\\nName of the environment variable. Must be a C_IDENTIFIER.\\n\\n**value** (string)\\n\\nVariable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\\n\\n**valueFrom** (object)\\n\\nSource for the environment variable's value. Cannot be used if value is not empty.\\n\\n\"},\"imagePullPolicy\":{\"type\":\"string\",\"description\":\"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\"markdownDescription\":\"**imagePullPolicy** (string)\\n\\nImage pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\"enum\":[\"Always\",\"Never\",\"IfNotPresent\"]},\"readinessProbe\":{\"description\":\"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.probe\",\"markdownDescription\":\"readinessProbe: Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\nProbe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**failureThreshold** (integer)\\n\\nMinimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**initialDelaySeconds** (integer)\\n\\nNumber of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n**periodSeconds** (integer)\\n\\nHow often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\\n\\n**successThreshold** (integer)\\n\\nMinimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n**timeoutSeconds** (integer)\\n\\nNumber of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\\n\\n\"},\"ports\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.containerport\"},\"x-kubernetes-patch-merge-key\":\"containerPort\",\"type\":\"array\",\"description\":\"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\",\"x-kubernetes-patch-strategy\":\"merge\",\"markdownDescription\":\"ports: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\\n\\nContainerPort represents a network port in a single container.\\n\\n**containerPort** (integer)\\n\\nNumber of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\\n\\n**hostIP** (string)\\n\\nWhat host IP to bind the external port to.\\n\\n**hostPort** (integer)\\n\\nNumber of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\\n\\n**name** (string)\\n\\nIf specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\\n\\n**protocol** (string)\\n\\nProtocol for port. Must be UDP or TCP. Defaults to \\\"TCP\\\".\\n\\n\"},\"resources\":{\"description\":\"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.resourcerequirements\",\"markdownDescription\":\"resources: Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\\n\\nResourceRequirements describes the compute resource requirements.\\n\\n**limits** (object)\\n\\nLimits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\\n\\n**requests** (object)\\n\\nRequests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (122)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.toleration"
[Trace - 15:41:22] Sending response 'custom/schema/content - (122)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Toleration\",\"description\":\"The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.\",\"properties\":{\"operator\":{\"type\":\"string\",\"description\":\"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\"markdownDescription\":\"**operator** (string)\\n\\nOperator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\"},\"key\":{\"type\":\"string\",\"description\":\"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\"markdownDescription\":\"**key** (string)\\n\\nKey is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\"},\"tolerationSeconds\":{\"type\":\"integer\",\"description\":\"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\"format\":\"int64\",\"markdownDescription\":\"**tolerationSeconds** (integer)\\n\\nTolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\"},\"effect\":{\"type\":\"string\",\"description\":\"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\"markdownDescription\":\"**effect** (string)\\n\\nEffect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\"enum\":[\"NoSchedule\",\"PreferNoSchedule\",\"NoExecute\"]},\"value\":{\"type\":\"string\",\"description\":\"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\"markdownDescription\":\"**value** (string)\\n\\nValue is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (123)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volume"
[Trace - 15:41:22] Sending response 'custom/schema/content - (123)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Volume\",\"required\":[\"name\"],\"description\":\"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\"properties\":{\"photonPersistentDisk\":{\"description\":\"PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.photonpersistentdiskvolumesource\",\"markdownDescription\":\"photonPersistentDisk: PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\\n\\nRepresents a Photon Controller persistent disk resource.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**pdID** (string)\\n\\nID that identifies Photon Controller persistent disk\\n\\n\"},\"quobyte\":{\"description\":\"Quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.quobytevolumesource\",\"markdownDescription\":\"quobyte: Quobyte represents a Quobyte mount on the host that shares a pod's lifetime\\n\\nRepresents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.\\n\\n**group** (string)\\n\\nGroup to map volume access to Default is no group\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\\n\\n**registry** (string)\\n\\nRegistry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\\n\\n**user** (string)\\n\\nUser to map volume access to Defaults to serivceaccount user\\n\\n**volume** (string)\\n\\nVolume is a string that references an already created Quobyte volume by name.\\n\\n\"},\"azureDisk\":{\"description\":\"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.azurediskvolumesource\",\"markdownDescription\":\"azureDisk: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\\n\\nAzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\\n\\n**cachingMode** (string)\\n\\nHost Caching mode: None, Read Only, Read Write.\\n\\n**diskName** (string)\\n\\nThe Name of the data disk in the blob storage\\n\\n**diskURI** (string)\\n\\nThe URI the data disk in the blob storage\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**kind** (string)\\n\\nExpected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n\"},\"portworxVolume\":{\"description\":\"PortworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.portworxvolumesource\",\"markdownDescription\":\"portworxVolume: PortworxVolume represents a portworx volume attached and mounted on kubelets host machine\\n\\nPortworxVolumeSource represents a Portworx volume resource.\\n\\n**fsType** (string)\\n\\nFSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**volumeID** (string)\\n\\nVolumeID uniquely identifies a Portworx volume\\n\\n\"},\"glusterfs\":{\"description\":\"Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.glusterfsvolumesource\",\"markdownDescription\":\"glusterfs: Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md\\n\\nRepresents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.\\n\\n**endpoints** (string)\\n\\nEndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\\n\\n**path** (string)\\n\\nPath is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\\n\\n\"},\"gitRepo\":{\"description\":\"GitRepo represents a git repository at a particular revision.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.gitrepovolumesource\",\"markdownDescription\":\"gitRepo: GitRepo represents a git repository at a particular revision.\\n\\nRepresents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\\n\\n**directory** (string)\\n\\nTarget directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\\n\\n**repository** (string)\\n\\nRepository URL\\n\\n**revision** (string)\\n\\nCommit hash for the specified revision.\\n\\n\"},\"scaleIO\":{\"description\":\"ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.scaleiovolumesource\",\"markdownDescription\":\"scaleIO: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\\n\\nScaleIOVolumeSource represents a persistent ScaleIO volume\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**gateway** (string)\\n\\nThe host address of the ScaleIO API Gateway.\\n\\n**protectionDomain** (string)\\n\\nThe name of the ScaleIO Protection Domain for the configured storage.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretRef** (object)\\n\\nSecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\\n\\n**sslEnabled** (boolean)\\n\\nFlag to enable/disable SSL communication with Gateway, default false\\n\\n**storageMode** (string)\\n\\nIndicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\n\\n**storagePool** (string)\\n\\nThe ScaleIO Storage Pool associated with the protection domain.\\n\\n**system** (string)\\n\\nThe name of the storage system as configured in ScaleIO.\\n\\n**volumeName** (string)\\n\\nThe name of a volume already created in the ScaleIO system that is associated with this volume source.\\n\\n\"},\"emptyDir\":{\"description\":\"EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.emptydirvolumesource\",\"markdownDescription\":\"emptyDir: EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\\n\\nRepresents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.\\n\\n**medium** (string)\\n\\nWhat type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\\n\\n**sizeLimit** (object)\\n\\nTotal amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\\n\\n\"},\"cinder\":{\"description\":\"Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.cindervolumesource\",\"markdownDescription\":\"cinder: Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\nRepresents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n**volumeID** (string)\\n\\nvolume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\\n\\n\"},\"flocker\":{\"description\":\"Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.flockervolumesource\",\"markdownDescription\":\"flocker: Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\\n\\nRepresents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.\\n\\n**datasetName** (string)\\n\\nName of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated\\n\\n**datasetUUID** (string)\\n\\nUUID of the dataset. This is unique identifier of a Flocker dataset\\n\\n\"},\"persistentVolumeClaim\":{\"description\":\"PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.persistentvolumeclaimvolumesource\",\"markdownDescription\":\"persistentVolumeClaim: PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\\n\\nPersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).\\n\\n**claimName** (string)\\n\\nClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\\n\\n**readOnly** (boolean)\\n\\nWill force the ReadOnly setting in VolumeMounts. Default false.\\n\\n\"},\"configMap\":{\"description\":\"ConfigMap represents a configMap that should populate this volume\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapvolumesource\",\"markdownDescription\":\"configMap: ConfigMap represents a configMap that should populate this volume\\n\\nAdapts a ConfigMap into a volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.\\n\\n**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\\n\\n\"},\"cephfs\":{\"description\":\"CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.cephfsvolumesource\",\"markdownDescription\":\"cephfs: CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\\n\\nRepresents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.\\n\\n**monitors** (string[])\\n\\nRequired: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**path** (string)\\n\\nOptional: Used as the mounted root, rather than the full Ceph tree, default is /\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**secretFile** (string)\\n\\nOptional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**secretRef** (object)\\n\\nOptional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n**user** (string)\\n\\nOptional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\n\"},\"name\":{\"type\":\"string\",\"description\":\"Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nVolume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"},\"iscsi\":{\"description\":\"ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.iscsivolumesource\",\"markdownDescription\":\"iscsi: ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md\\n\\nRepresents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.\\n\\n**chapAuthDiscovery** (boolean)\\n\\nwhether support iSCSI Discovery CHAP authentication\\n\\n**chapAuthSession** (boolean)\\n\\nwhether support iSCSI Session CHAP authentication\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\n\\n**initiatorName** (string)\\n\\nCustom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.\\n\\n**iqn** (string)\\n\\nTarget iSCSI Qualified Name.\\n\\n**iscsiInterface** (string)\\n\\niSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\\n\\n**lun** (integer)\\n\\niSCSI Target Lun number.\\n\\n**portals** (string[])\\n\\niSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\\n\\n**secretRef** (object)\\n\\nCHAP Secret for iSCSI target and initiator authentication\\n\\n**targetPortal** (string)\\n\\niSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\\n\\n\"},\"projected\":{\"description\":\"Items for all in one resources secrets, configmaps, and downward API\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.projectedvolumesource\",\"markdownDescription\":\"projected: Items for all in one resources secrets, configmaps, and downward API\\n\\nRepresents a projected volume source\\n\\n**defaultMode** (integer)\\n\\nMode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**sources** (object[])\\n\\nlist of volume projections\\n\\n\"},\"downwardAPI\":{\"description\":\"DownwardAPI represents downward API about the pod that should populate this volume\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapivolumesource\",\"markdownDescription\":\"downwardAPI: DownwardAPI represents downward API about the pod that should populate this volume\\n\\nDownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.\\n\\n**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**items** (object[])\\n\\nItems is a list of downward API volume file\\n\\n\"},\"storageos\":{\"description\":\"StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.storageosvolumesource\",\"markdownDescription\":\"storageos: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\\n\\nRepresents a StorageOS persistent volume resource.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretRef** (object)\\n\\nSecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\\n\\n**volumeName** (string)\\n\\nVolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\\n\\n**volumeNamespace** (string)\\n\\nVolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\\n\\n\"},\"secret\":{\"description\":\"Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretvolumesource\",\"markdownDescription\":\"secret: Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\\n\\nAdapts a Secret into a volume.\\n\\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.\\n\\n**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret or it's keys must be defined\\n\\n**secretName** (string)\\n\\nName of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\\n\\n\"},\"fc\":{\"description\":\"FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.fcvolumesource\",\"markdownDescription\":\"fc: FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\\n\\nRepresents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**lun** (integer)\\n\\nOptional: FC target lun number\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**targetWWNs** (string[])\\n\\nOptional: FC target worldwide names (WWNs)\\n\\n**wwids** (string[])\\n\\nOptional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\\n\\n\"},\"nfs\":{\"description\":\"NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nfsvolumesource\",\"markdownDescription\":\"nfs: NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\nRepresents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.\\n\\n**path** (string)\\n\\nPath that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n**server** (string)\\n\\nServer is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\\n\\n\"},\"gcePersistentDisk\":{\"description\":\"GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.gcepersistentdiskvolumesource\",\"markdownDescription\":\"gcePersistentDisk: GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\nRepresents a Persistent Disk resource in Google Compute Engine.\\n\\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**pdName** (string)\\n\\nUnique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\n\\n\"},\"hostPath\":{\"description\":\"HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.hostpathvolumesource\",\"markdownDescription\":\"hostPath: HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\nRepresents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.\\n\\n**path** (string)\\n\\nPath of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\n**type** (string)\\n\\nType for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n\\n\"},\"flexVolume\":{\"description\":\"FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.flexvolumesource\",\"markdownDescription\":\"flexVolume: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\\n\\nFlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\\n\\n**driver** (string)\\n\\nDriver is the name of the driver to use for this volume.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\\n\\n**options** (object)\\n\\nOptional: Extra command options if any.\\n\\n**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretRef** (object)\\n\\nOptional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\\n\\n\"},\"awsElasticBlockStore\":{\"description\":\"AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.awselasticblockstorevolumesource\",\"markdownDescription\":\"awsElasticBlockStore: AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\nRepresents a Persistent Disk resource in AWS.\\n\\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\n\\n**readOnly** (boolean)\\n\\nSpecify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n**volumeID** (string)\\n\\nUnique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\n\\n\"},\"rbd\":{\"description\":\"RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.rbdvolumesource\",\"markdownDescription\":\"rbd: RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md\\n\\nRepresents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.\\n\\n**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\n\\n**image** (string)\\n\\nThe rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**keyring** (string)\\n\\nKeyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**monitors** (string[])\\n\\nA collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**pool** (string)\\n\\nThe rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**secretRef** (object)\\n\\nSecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n**user** (string)\\n\\nThe rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\n\"},\"azureFile\":{\"description\":\"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.azurefilevolumesource\",\"markdownDescription\":\"azureFile: AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\\n\\nAzureFile represents an Azure File Service mount on the host and bind mount to the pod.\\n\\n**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\\n\\n**secretName** (string)\\n\\nthe name of secret that contains Azure Storage Account Name and Key\\n\\n**shareName** (string)\\n\\nShare Name\\n\\n\"},\"vsphereVolume\":{\"description\":\"VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.vspherevirtualdiskvolumesource\",\"markdownDescription\":\"vsphereVolume: VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\\n\\nRepresents a vSphere volume resource.\\n\\n**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\n\\n**storagePolicyID** (string)\\n\\nStorage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\\n\\n**storagePolicyName** (string)\\n\\nStorage Policy Based Management (SPBM) profile name.\\n\\n**volumePath** (string)\\n\\nPath that identifies vSphere volume vmdk\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (124)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.affinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (124)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Affinity\",\"description\":\"Affinity is a group of affinity scheduling rules.\",\"properties\":{\"podAffinity\":{\"description\":\"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinity\",\"markdownDescription\":\"podAffinity: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\\n\\nPod affinity is a group of inter pod affinity scheduling rules.\\n\\n**preferredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nThe scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\n**requiredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nIf the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\n\"},\"nodeAffinity\":{\"description\":\"Describes node affinity scheduling rules for the pod.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeaffinity\",\"markdownDescription\":\"nodeAffinity: Describes node affinity scheduling rules for the pod.\\n\\nNode affinity is a group of node affinity scheduling rules.\\n\\n**preferredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nThe scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\\n\\n**requiredDuringSchedulingIgnoredDuringExecution** (object)\\n\\nIf the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\\n\\n\"},\"podAntiAffinity\":{\"description\":\"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podantiaffinity\",\"markdownDescription\":\"podAntiAffinity: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\\n\\nPod anti affinity is a group of inter pod anti affinity scheduling rules.\\n\\n**preferredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nThe scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\n**requiredDuringSchedulingIgnoredDuringExecution** (object[])\\n\\nIf the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (125)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.hostalias"
[Trace - 15:41:22] Sending response 'custom/schema/content - (125)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.HostAlias\",\"description\":\"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\",\"properties\":{\"ip\":{\"type\":\"string\",\"description\":\"IP address of the host file entry.\",\"markdownDescription\":\"**ip** (string)\\n\\nIP address of the host file entry.\"},\"hostnames\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Hostnames for the above IP address.\",\"markdownDescription\":\"**hostnames** (string[])\\n\\nHostnames for the above IP address.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (126)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.poddnsconfig"
[Trace - 15:41:22] Sending response 'custom/schema/content - (126)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodDNSConfig\",\"description\":\"PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.\",\"properties\":{\"nameservers\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\",\"markdownDescription\":\"**nameservers** (string[])\\n\\nA list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\"},\"searches\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\",\"markdownDescription\":\"**searches** (string[])\\n\\nA list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\"},\"options\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.poddnsconfigoption\"},\"type\":\"array\",\"description\":\"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\",\"markdownDescription\":\"options: A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\\n\\nPodDNSConfigOption defines DNS resolver options of a pod.\\n\\n**name** (string)\\n\\nRequired.\\n\\n**value** (string)\\n\\nundefined\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (127)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podsecuritycontext"
[Trace - 15:41:22] Sending response 'custom/schema/content - (127)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodSecurityContext\",\"description\":\"PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.\",\"properties\":{\"runAsNonRoot\":{\"type\":\"boolean\",\"description\":\"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"markdownDescription\":\"**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"},\"fsGroup\":{\"type\":\"integer\",\"description\":\"A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\\n\\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\",\"format\":\"int64\",\"markdownDescription\":\"**fsGroup** (integer)\\n\\nA special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\\n\\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\"},\"seLinuxOptions\":{\"description\":\"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.selinuxoptions\",\"markdownDescription\":\"seLinuxOptions: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\\n\\nSELinuxOptions are the labels to be applied to the container\\n\\n**level** (string)\\n\\nLevel is SELinux level label that applies to the container.\\n\\n**role** (string)\\n\\nRole is a SELinux role label that applies to the container.\\n\\n**type** (string)\\n\\nType is a SELinux type label that applies to the container.\\n\\n**user** (string)\\n\\nUser is a SELinux user label that applies to the container.\\n\\n\"},\"runAsUser\":{\"type\":\"integer\",\"description\":\"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\",\"format\":\"int64\",\"markdownDescription\":\"**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"},\"supplementalGroups\":{\"items\":{\"type\":\"integer\",\"format\":\"int64\"},\"type\":\"array\",\"description\":\"A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\",\"markdownDescription\":\"**supplementalGroups** (integer[])\\n\\nA list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (128)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.statuscause"
[Trace - 15:41:22] Sending response 'custom/schema/content - (128)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause\",\"description\":\"StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.\",\"properties\":{\"field\":{\"type\":\"string\",\"description\":\"The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\\n\\nExamples:\\n \\\"name\\\" - the field \\\"name\\\" on the current resource\\n \\\"items[0].name\\\" - the field \\\"name\\\" on the first array entry in \\\"items\\\"\",\"markdownDescription\":\"**field** (string)\\n\\nThe field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\\n\\nExamples:\\n \\\"name\\\" - the field \\\"name\\\" on the current resource\\n \\\"items[0].name\\\" - the field \\\"name\\\" on the first array entry in \\\"items\\\"\"},\"message\":{\"type\":\"string\",\"description\":\"A human-readable description of the cause of the error. This field may be presented as-is to a reader.\",\"markdownDescription\":\"**message** (string)\\n\\nA human-readable description of the cause of the error. This field may be presented as-is to a reader.\"},\"reason\":{\"type\":\"string\",\"description\":\"A machine-readable description of the cause of the error. If this value is empty there is no information available.\",\"markdownDescription\":\"**reason** (string)\\n\\nA machine-readable description of the cause of the error. If this value is empty there is no information available.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (129)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.resourcerequirements"
[Trace - 15:41:22] Sending response 'custom/schema/content - (129)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ResourceRequirements\",\"description\":\"ResourceRequirements describes the compute resource requirements.\",\"properties\":{\"requests\":{\"additionalProperties\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\"},\"type\":\"object\",\"description\":\"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\",\"markdownDescription\":\"**requests** (object)\\n\\nRequests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"},\"limits\":{\"additionalProperties\":{\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\"},\"type\":\"object\",\"description\":\"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\",\"markdownDescription\":\"**limits** (object)\\n\\nLimits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (130)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.containerport"
[Trace - 15:41:22] Sending response 'custom/schema/content - (130)'. Processing request took 2ms
Result: "{\"name\":\"io.k8s.api.core.v1.ContainerPort\",\"required\":[\"containerPort\"],\"description\":\"ContainerPort represents a network port in a single container.\",\"properties\":{\"hostIP\":{\"type\":\"string\",\"description\":\"What host IP to bind the external port to.\",\"markdownDescription\":\"**hostIP** (string)\\n\\nWhat host IP to bind the external port to.\"},\"protocol\":{\"type\":\"string\",\"description\":\"Protocol for port. Must be UDP or TCP. Defaults to \\\"TCP\\\".\",\"markdownDescription\":\"**protocol** (string)\\n\\nProtocol for port. Must be UDP or TCP. Defaults to \\\"TCP\\\".\",\"enum\":[\"TCP\",\"UDP\"]},\"containerPort\":{\"type\":\"integer\",\"description\":\"Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\",\"format\":\"int32\",\"markdownDescription\":\"**containerPort** (integer)\\n\\nNumber of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\"},\"name\":{\"type\":\"string\",\"description\":\"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\"markdownDescription\":\"**name** (string)\\n\\nIf specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\"},\"hostPort\":{\"type\":\"integer\",\"description\":\"Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\"format\":\"int32\",\"markdownDescription\":\"**hostPort** (integer)\\n\\nNumber of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (131)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.probe"
[Trace - 15:41:22] Sending response 'custom/schema/content - (131)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.Probe\",\"description\":\"Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.\",\"properties\":{\"httpGet\":{\"description\":\"HTTPGet specifies the http request to perform.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.httpgetaction\",\"markdownDescription\":\"httpGet: HTTPGet specifies the http request to perform.\\n\\nHTTPGetAction describes an action based on HTTP Get requests.\\n\\n**host** (string)\\n\\nHost name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\\n\\n**httpHeaders** (object[])\\n\\nCustom headers to set in the request. HTTP allows repeated headers.\\n\\n**path** (string)\\n\\nPath to access on the HTTP server.\\n\\n**port** (object)\\n\\nName or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n**scheme** (string)\\n\\nScheme to use for connecting to the host. Defaults to HTTP.\\n\\n\"},\"timeoutSeconds\":{\"type\":\"integer\",\"description\":\"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"format\":\"int32\",\"markdownDescription\":\"**timeoutSeconds** (integer)\\n\\nNumber of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"},\"exec\":{\"description\":\"One and only one of the following should be specified. Exec specifies the action to take.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.execaction\",\"markdownDescription\":\"exec: One and only one of the following should be specified. Exec specifies the action to take.\\n\\nExecAction describes a \\\"run in container\\\" action.\\n\\n**command** (string[])\\n\\nCommand is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\\n\\n\"},\"initialDelaySeconds\":{\"type\":\"integer\",\"description\":\"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\"format\":\"int32\",\"markdownDescription\":\"**initialDelaySeconds** (integer)\\n\\nNumber of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"},\"tcpSocket\":{\"description\":\"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.tcpsocketaction\",\"markdownDescription\":\"tcpSocket: TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\nTCPSocketAction describes an action based on opening a socket\\n\\n**host** (string)\\n\\nOptional: Host name to connect to, defaults to the pod IP.\\n\\n**port** (object)\\n\\nNumber or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n\"},\"periodSeconds\":{\"type\":\"integer\",\"description\":\"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\"format\":\"int32\",\"markdownDescription\":\"**periodSeconds** (integer)\\n\\nHow often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"},\"successThreshold\":{\"type\":\"integer\",\"description\":\"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\",\"format\":\"int32\",\"markdownDescription\":\"**successThreshold** (integer)\\n\\nMinimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.\"},\"failureThreshold\":{\"type\":\"integer\",\"description\":\"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\"format\":\"int32\",\"markdownDescription\":\"**failureThreshold** (integer)\\n\\nMinimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (132)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.envvar"
[Trace - 15:41:22] Sending response 'custom/schema/content - (132)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.EnvVar\",\"required\":[\"name\"],\"description\":\"EnvVar represents an environment variable present in a Container.\",\"properties\":{\"valueFrom\":{\"description\":\"Source for the environment variable's value. Cannot be used if value is not empty.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.envvarsource\",\"markdownDescription\":\"valueFrom: Source for the environment variable's value. Cannot be used if value is not empty.\\n\\nEnvVarSource represents a source for the value of an EnvVar.\\n\\n**configMapKeyRef** (object)\\n\\nSelects a key of a ConfigMap.\\n\\n**fieldRef** (object)\\n\\nSelects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.\\n\\n**resourceFieldRef** (object)\\n\\nSelects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\\n\\n**secretKeyRef** (object)\\n\\nSelects a key of a secret in the pod's namespace\\n\\n\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the environment variable. Must be a C_IDENTIFIER.\",\"markdownDescription\":\"**name** (string)\\n\\nName of the environment variable. Must be a C_IDENTIFIER.\"},\"value\":{\"type\":\"string\",\"description\":\"Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\"markdownDescription\":\"**value** (string)\\n\\nVariable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (133)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volumedevice"
[Trace - 15:41:22] Sending response 'custom/schema/content - (133)'. Processing request took 2ms
Result: "{\"name\":\"io.k8s.api.core.v1.VolumeDevice\",\"required\":[\"name\",\"devicePath\"],\"description\":\"volumeDevice describes a mapping of a raw block device within a container.\",\"properties\":{\"devicePath\":{\"type\":\"string\",\"description\":\"devicePath is the path inside of the container that the device will be mapped to.\",\"markdownDescription\":\"**devicePath** (string)\\n\\ndevicePath is the path inside of the container that the device will be mapped to.\"},\"name\":{\"type\":\"string\",\"description\":\"name must match the name of a persistentVolumeClaim in the pod\",\"markdownDescription\":\"**name** (string)\\n\\nname must match the name of a persistentVolumeClaim in the pod\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (134)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.envfromsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (134)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.EnvFromSource\",\"description\":\"EnvFromSource represents the source of a set of ConfigMaps\",\"properties\":{\"prefix\":{\"type\":\"string\",\"description\":\"An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\"markdownDescription\":\"**prefix** (string)\\n\\nAn optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\"},\"configMapRef\":{\"description\":\"The ConfigMap to select from\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapenvsource\",\"markdownDescription\":\"configMapRef: The ConfigMap to select from\\n\\nConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\\n\\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap must be defined\\n\\n\"},\"secretRef\":{\"description\":\"The Secret to select from\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretenvsource\",\"markdownDescription\":\"secretRef: The Secret to select from\\n\\nSecretEnvSource selects a Secret to populate the environment variables with.\\n\\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret must be defined\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (135)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.securitycontext"
[Trace - 15:41:22] Sending response 'custom/schema/content - (135)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecurityContext\",\"description\":\"SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.\",\"properties\":{\"runAsNonRoot\":{\"type\":\"boolean\",\"description\":\"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"markdownDescription\":\"**runAsNonRoot** (boolean)\\n\\nIndicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"},\"readOnlyRootFilesystem\":{\"type\":\"boolean\",\"description\":\"Whether this container has a read-only root filesystem. Default is false.\",\"markdownDescription\":\"**readOnlyRootFilesystem** (boolean)\\n\\nWhether this container has a read-only root filesystem. Default is false.\"},\"seLinuxOptions\":{\"description\":\"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.selinuxoptions\",\"markdownDescription\":\"seLinuxOptions: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\n\\nSELinuxOptions are the labels to be applied to the container\\n\\n**level** (string)\\n\\nLevel is SELinux level label that applies to the container.\\n\\n**role** (string)\\n\\nRole is a SELinux role label that applies to the container.\\n\\n**type** (string)\\n\\nType is a SELinux type label that applies to the container.\\n\\n**user** (string)\\n\\nUser is a SELinux user label that applies to the container.\\n\\n\"},\"runAsUser\":{\"type\":\"integer\",\"description\":\"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\"format\":\"int64\",\"markdownDescription\":\"**runAsUser** (integer)\\n\\nThe UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"},\"allowPrivilegeEscalation\":{\"type\":\"boolean\",\"description\":\"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\",\"markdownDescription\":\"**allowPrivilegeEscalation** (boolean)\\n\\nAllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\"},\"privileged\":{\"type\":\"boolean\",\"description\":\"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\",\"markdownDescription\":\"**privileged** (boolean)\\n\\nRun container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\"},\"capabilities\":{\"description\":\"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.capabilities\",\"markdownDescription\":\"capabilities: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\\n\\nAdds and removes POSIX capabilities from running containers.\\n\\n**add** (string[])\\n\\nAdded capabilities\\n\\n**drop** (string[])\\n\\nRemoved capabilities\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (136)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.lifecycle"
[Trace - 15:41:22] Sending response 'custom/schema/content - (136)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Lifecycle\",\"description\":\"Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.\",\"properties\":{\"preStop\":{\"description\":\"PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.handler\",\"markdownDescription\":\"preStop: PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\nHandler defines a specific action that should be taken\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n\"},\"postStart\":{\"description\":\"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.handler\",\"markdownDescription\":\"postStart: PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\\n\\nHandler defines a specific action that should be taken\\n\\n**exec** (object)\\n\\nOne and only one of the following should be specified. Exec specifies the action to take.\\n\\n**httpGet** (object)\\n\\nHTTPGet specifies the http request to perform.\\n\\n**tcpSocket** (object)\\n\\nTCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (137)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volumemount"
[Trace - 15:41:22] Sending response 'custom/schema/content - (137)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.VolumeMount\",\"required\":[\"name\",\"mountPath\"],\"description\":\"VolumeMount describes a mounting of a Volume within a container.\",\"properties\":{\"mountPropagation\":{\"type\":\"string\",\"description\":\"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.\",\"markdownDescription\":\"**mountPropagation** (string)\\n\\nmountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nMounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\"},\"mountPath\":{\"type\":\"string\",\"description\":\"Path within the container at which the volume should be mounted. Must not contain ':'.\",\"markdownDescription\":\"**mountPath** (string)\\n\\nPath within the container at which the volume should be mounted. Must not contain ':'.\"},\"subPath\":{\"type\":\"string\",\"description\":\"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\"markdownDescription\":\"**subPath** (string)\\n\\nPath within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\"},\"name\":{\"type\":\"string\",\"description\":\"This must match the Name of a Volume.\",\"markdownDescription\":\"**name** (string)\\n\\nThis must match the Name of a Volume.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (138)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.vspherevirtualdiskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (138)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource\",\"required\":[\"volumePath\"],\"description\":\"Represents a vSphere volume resource.\",\"properties\":{\"storagePolicyName\":{\"type\":\"string\",\"description\":\"Storage Policy Based Management (SPBM) profile name.\",\"markdownDescription\":\"**storagePolicyName** (string)\\n\\nStorage Policy Based Management (SPBM) profile name.\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"},\"storagePolicyID\":{\"type\":\"string\",\"description\":\"Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\"markdownDescription\":\"**storagePolicyID** (string)\\n\\nStorage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\"},\"volumePath\":{\"type\":\"string\",\"description\":\"Path that identifies vSphere volume vmdk\",\"markdownDescription\":\"**volumePath** (string)\\n\\nPath that identifies vSphere volume vmdk\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (139)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.azurefilevolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (139)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.AzureFileVolumeSource\",\"required\":[\"secretName\",\"shareName\"],\"description\":\"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\"properties\":{\"shareName\":{\"type\":\"string\",\"description\":\"Share Name\",\"markdownDescription\":\"**shareName** (string)\\n\\nShare Name\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"secretName\":{\"type\":\"string\",\"description\":\"the name of secret that contains Azure Storage Account Name and Key\",\"markdownDescription\":\"**secretName** (string)\\n\\nthe name of secret that contains Azure Storage Account Name and Key\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (140)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.rbdvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (140)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.RBDVolumeSource\",\"required\":[\"monitors\",\"image\"],\"description\":\"Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.\",\"properties\":{\"secretRef\":{\"description\":\"SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"image\":{\"type\":\"string\",\"description\":\"The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**image** (string)\\n\\nThe rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"keyring\":{\"type\":\"string\",\"description\":\"Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**keyring** (string)\\n\\nKeyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"user\":{\"type\":\"string\",\"description\":\"The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**user** (string)\\n\\nThe rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"monitors\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**monitors** (string[])\\n\\nA collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"},\"pool\":{\"type\":\"string\",\"description\":\"The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\",\"markdownDescription\":\"**pool** (string)\\n\\nThe rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (141)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.awselasticblockstorevolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (141)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource\",\"required\":[\"volumeID\"],\"description\":\"Represents a Persistent Disk resource in AWS.\\n\\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Specify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nSpecify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"},\"partition\":{\"type\":\"integer\",\"description\":\"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\"format\":\"int32\",\"markdownDescription\":\"**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\"},\"volumeID\":{\"type\":\"string\",\"description\":\"Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"markdownDescription\":\"**volumeID** (string)\\n\\nUnique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (142)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.flexvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (142)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.FlexVolumeSource\",\"required\":[\"driver\"],\"description\":\"FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\"properties\":{\"secretRef\":{\"description\":\"Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\"},\"driver\":{\"type\":\"string\",\"description\":\"Driver is the name of the driver to use for this volume.\",\"markdownDescription\":\"**driver** (string)\\n\\nDriver is the name of the driver to use for this volume.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"options\":{\"additionalProperties\":{\"type\":\"string\"},\"type\":\"object\",\"description\":\"Optional: Extra command options if any.\",\"markdownDescription\":\"**options** (object)\\n\\nOptional: Extra command options if any.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (143)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.hostpathvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (143)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.HostPathVolumeSource\",\"required\":[\"path\"],\"description\":\"Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\"markdownDescription\":\"**path** (string)\\n\\nPath of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\"},\"type\":{\"type\":\"string\",\"description\":\"Type for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\"markdownDescription\":\"**type** (string)\\n\\nType for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (144)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.gcepersistentdiskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (144)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.GCEPersistentDiskVolumeSource\",\"required\":[\"pdName\"],\"description\":\"Represents a Persistent Disk resource in Google Compute Engine.\\n\\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"},\"partition\":{\"type\":\"integer\",\"description\":\"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"format\":\"int32\",\"markdownDescription\":\"**partition** (integer)\\n\\nThe partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"},\"pdName\":{\"type\":\"string\",\"description\":\"Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"markdownDescription\":\"**pdName** (string)\\n\\nUnique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (145)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nfsvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (145)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NFSVolumeSource\",\"required\":[\"server\",\"path\"],\"description\":\"Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"markdownDescription\":\"**path** (string)\\n\\nPath that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"},\"server\":{\"type\":\"string\",\"description\":\"Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\"markdownDescription\":\"**server** (string)\\n\\nServer is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (146)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.fcvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (146)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.FCVolumeSource\",\"description\":\"Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.\",\"properties\":{\"targetWWNs\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Optional: FC target worldwide names (WWNs)\",\"markdownDescription\":\"**targetWWNs** (string[])\\n\\nOptional: FC target worldwide names (WWNs)\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"wwids\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\"markdownDescription\":\"**wwids** (string[])\\n\\nOptional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\"},\"lun\":{\"type\":\"integer\",\"description\":\"Optional: FC target lun number\",\"format\":\"int32\",\"markdownDescription\":\"**lun** (integer)\\n\\nOptional: FC target lun number\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (147)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (147)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretVolumeSource\",\"description\":\"Adapts a Secret into a volume.\\n\\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret or it's keys must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret or it's keys must be defined\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"secretName\":{\"type\":\"string\",\"description\":\"Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\"markdownDescription\":\"**secretName** (string)\\n\\nName of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (148)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.storageosvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (148)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.StorageOSVolumeSource\",\"description\":\"Represents a StorageOS persistent volume resource.\",\"properties\":{\"volumeName\":{\"type\":\"string\",\"description\":\"VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\",\"markdownDescription\":\"**volumeName** (string)\\n\\nVolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"volumeNamespace\":{\"type\":\"string\",\"description\":\"VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\",\"markdownDescription\":\"**volumeNamespace** (string)\\n\\nVolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\"},\"secretRef\":{\"description\":\"SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (149)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.downwardapivolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (149)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.DownwardAPIVolumeSource\",\"description\":\"DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapivolumefile\"},\"type\":\"array\",\"description\":\"Items is a list of downward API volume file\",\"markdownDescription\":\"items: Items is a list of downward API volume file\\n\\nDownwardAPIVolumeFile represents information to create the file containing the pod field\\n\\n**fieldRef** (object)\\n\\nRequired: Selects a field of the pod: only annotations, labels, name and namespace are supported.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nRequired: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\\n\\n**resourceFieldRef** (object)\\n\\nSelects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\\n\\n\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (150)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.projectedvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (150)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ProjectedVolumeSource\",\"required\":[\"sources\"],\"description\":\"Represents a projected volume source\",\"properties\":{\"sources\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.volumeprojection\"},\"type\":\"array\",\"description\":\"list of volume projections\",\"markdownDescription\":\"sources: list of volume projections\\n\\nProjection that may be projected along with other supported volume types\\n\\n**configMap** (object)\\n\\ninformation about the configMap data to project\\n\\n**downwardAPI** (object)\\n\\ninformation about the downwardAPI data to project\\n\\n**secret** (object)\\n\\ninformation about the secret data to project\\n\\n\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nMode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (151)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.iscsivolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (151)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ISCSIVolumeSource\",\"required\":[\"targetPortal\",\"iqn\",\"lun\"],\"description\":\"Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.\",\"properties\":{\"targetPortal\":{\"type\":\"string\",\"description\":\"iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\"markdownDescription\":\"**targetPortal** (string)\\n\\niSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\"},\"portals\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\"markdownDescription\":\"**portals** (string[])\\n\\niSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\"},\"secretRef\":{\"description\":\"CHAP Secret for iSCSI target and initiator authentication\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: CHAP Secret for iSCSI target and initiator authentication\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\"},\"chapAuthSession\":{\"type\":\"boolean\",\"description\":\"whether support iSCSI Session CHAP authentication\",\"markdownDescription\":\"**chapAuthSession** (boolean)\\n\\nwhether support iSCSI Session CHAP authentication\"},\"initiatorName\":{\"type\":\"string\",\"description\":\"Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.\",\"markdownDescription\":\"**initiatorName** (string)\\n\\nCustom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.\"},\"iscsiInterface\":{\"type\":\"string\",\"description\":\"iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\",\"markdownDescription\":\"**iscsiInterface** (string)\\n\\niSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\"},\"iqn\":{\"type\":\"string\",\"description\":\"Target iSCSI Qualified Name.\",\"markdownDescription\":\"**iqn** (string)\\n\\nTarget iSCSI Qualified Name.\"},\"chapAuthDiscovery\":{\"type\":\"boolean\",\"description\":\"whether support iSCSI Discovery CHAP authentication\",\"markdownDescription\":\"**chapAuthDiscovery** (boolean)\\n\\nwhether support iSCSI Discovery CHAP authentication\"},\"lun\":{\"type\":\"integer\",\"description\":\"iSCSI Target Lun number.\",\"format\":\"int32\",\"markdownDescription\":\"**lun** (integer)\\n\\niSCSI Target Lun number.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (152)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.cephfsvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (152)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.CephFSVolumeSource\",\"required\":[\"monitors\"],\"description\":\"Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"secretRef\":{\"description\":\"Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"secretFile\":{\"type\":\"string\",\"description\":\"Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**secretFile** (string)\\n\\nOptional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"},\"user\":{\"type\":\"string\",\"description\":\"Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**user** (string)\\n\\nOptional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"},\"path\":{\"type\":\"string\",\"description\":\"Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\"markdownDescription\":\"**path** (string)\\n\\nOptional: Used as the mounted root, rather than the full Ceph tree, default is /\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"},\"monitors\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\",\"markdownDescription\":\"**monitors** (string[])\\n\\nRequired: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (153)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (153)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapVolumeSource\",\"description\":\"Adapts a ConfigMap into a volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap or it's keys must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\"},\"defaultMode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**defaultMode** (integer)\\n\\nOptional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (154)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.persistentvolumeclaimvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (154)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource\",\"required\":[\"claimName\"],\"description\":\"PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Will force the ReadOnly setting in VolumeMounts. Default false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nWill force the ReadOnly setting in VolumeMounts. Default false.\"},\"claimName\":{\"type\":\"string\",\"description\":\"ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\"markdownDescription\":\"**claimName** (string)\\n\\nClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (155)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.flockervolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (155)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.FlockerVolumeSource\",\"description\":\"Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"datasetName\":{\"type\":\"string\",\"description\":\"Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated\",\"markdownDescription\":\"**datasetName** (string)\\n\\nName of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated\"},\"datasetUUID\":{\"type\":\"string\",\"description\":\"UUID of the dataset. This is unique identifier of a Flocker dataset\",\"markdownDescription\":\"**datasetUUID** (string)\\n\\nUUID of the dataset. This is unique identifier of a Flocker dataset\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (156)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.cindervolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (156)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.CinderVolumeSource\",\"required\":[\"volumeID\"],\"description\":\"Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nOptional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\"},\"volumeID\":{\"type\":\"string\",\"description\":\"volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"markdownDescription\":\"**volumeID** (string)\\n\\nvolume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (157)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.emptydirvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (157)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.EmptyDirVolumeSource\",\"description\":\"Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.\",\"properties\":{\"sizeLimit\":{\"description\":\"Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\",\"markdownDescription\":\"Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\"},\"medium\":{\"type\":\"string\",\"description\":\"What type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\"markdownDescription\":\"**medium** (string)\\n\\nWhat type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (158)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.scaleiovolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (158)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ScaleIOVolumeSource\",\"required\":[\"gateway\",\"system\",\"secretRef\"],\"description\":\"ScaleIOVolumeSource represents a persistent ScaleIO volume\",\"properties\":{\"storageMode\":{\"type\":\"string\",\"description\":\"Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\",\"markdownDescription\":\"**storageMode** (string)\\n\\nIndicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\"},\"secretRef\":{\"description\":\"SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.localobjectreference\",\"markdownDescription\":\"secretRef: SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\\n\\nLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n\"},\"protectionDomain\":{\"type\":\"string\",\"description\":\"The name of the ScaleIO Protection Domain for the configured storage.\",\"markdownDescription\":\"**protectionDomain** (string)\\n\\nThe name of the ScaleIO Protection Domain for the configured storage.\"},\"volumeName\":{\"type\":\"string\",\"description\":\"The name of a volume already created in the ScaleIO system that is associated with this volume source.\",\"markdownDescription\":\"**volumeName** (string)\\n\\nThe name of a volume already created in the ScaleIO system that is associated with this volume source.\"},\"sslEnabled\":{\"type\":\"boolean\",\"description\":\"Flag to enable/disable SSL communication with Gateway, default false\",\"markdownDescription\":\"**sslEnabled** (boolean)\\n\\nFlag to enable/disable SSL communication with Gateway, default false\"},\"system\":{\"type\":\"string\",\"description\":\"The name of the storage system as configured in ScaleIO.\",\"markdownDescription\":\"**system** (string)\\n\\nThe name of the storage system as configured in ScaleIO.\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"storagePool\":{\"type\":\"string\",\"description\":\"The ScaleIO Storage Pool associated with the protection domain.\",\"markdownDescription\":\"**storagePool** (string)\\n\\nThe ScaleIO Storage Pool associated with the protection domain.\"},\"gateway\":{\"type\":\"string\",\"description\":\"The host address of the ScaleIO API Gateway.\",\"markdownDescription\":\"**gateway** (string)\\n\\nThe host address of the ScaleIO API Gateway.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (159)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.gitrepovolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (159)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.GitRepoVolumeSource\",\"required\":[\"repository\"],\"description\":\"Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\",\"properties\":{\"directory\":{\"type\":\"string\",\"description\":\"Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\",\"markdownDescription\":\"**directory** (string)\\n\\nTarget directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\"},\"repository\":{\"type\":\"string\",\"description\":\"Repository URL\",\"markdownDescription\":\"**repository** (string)\\n\\nRepository URL\"},\"revision\":{\"type\":\"string\",\"description\":\"Commit hash for the specified revision.\",\"markdownDescription\":\"**revision** (string)\\n\\nCommit hash for the specified revision.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (160)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.glusterfsvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (160)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.GlusterfsVolumeSource\",\"required\":[\"endpoints\",\"path\"],\"description\":\"Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\",\"markdownDescription\":\"**path** (string)\\n\\nPath is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\"},\"endpoints\":{\"type\":\"string\",\"description\":\"EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\",\"markdownDescription\":\"**endpoints** (string)\\n\\nEndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (161)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.portworxvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (161)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PortworxVolumeSource\",\"required\":[\"volumeID\"],\"description\":\"PortworxVolumeSource represents a Portworx volume resource.\",\"properties\":{\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"volumeID\":{\"type\":\"string\",\"description\":\"VolumeID uniquely identifies a Portworx volume\",\"markdownDescription\":\"**volumeID** (string)\\n\\nVolumeID uniquely identifies a Portworx volume\"},\"fsType\":{\"type\":\"string\",\"description\":\"FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (162)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.azurediskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (162)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.AzureDiskVolumeSource\",\"required\":[\"diskName\",\"diskURI\"],\"description\":\"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\"properties\":{\"diskURI\":{\"type\":\"string\",\"description\":\"The URI the data disk in the blob storage\",\"markdownDescription\":\"**diskURI** (string)\\n\\nThe URI the data disk in the blob storage\"},\"diskName\":{\"type\":\"string\",\"description\":\"The Name of the data disk in the blob storage\",\"markdownDescription\":\"**diskName** (string)\\n\\nThe Name of the data disk in the blob storage\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nDefaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"},\"cachingMode\":{\"type\":\"string\",\"description\":\"Host Caching mode: None, Read Only, Read Write.\",\"markdownDescription\":\"**cachingMode** (string)\\n\\nHost Caching mode: None, Read Only, Read Write.\",\"enum\":[\"None\",\"ReadOnly\",\"ReadWrite\"]},\"kind\":{\"type\":\"string\",\"description\":\"Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\"markdownDescription\":\"**kind** (string)\\n\\nExpected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\"},\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (163)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.quobytevolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (163)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.QuobyteVolumeSource\",\"required\":[\"registry\",\"volume\"],\"description\":\"Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.\",\"properties\":{\"volume\":{\"type\":\"string\",\"description\":\"Volume is a string that references an already created Quobyte volume by name.\",\"markdownDescription\":\"**volume** (string)\\n\\nVolume is a string that references an already created Quobyte volume by name.\"},\"readOnly\":{\"type\":\"boolean\",\"description\":\"ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\",\"markdownDescription\":\"**readOnly** (boolean)\\n\\nReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\"},\"group\":{\"type\":\"string\",\"description\":\"Group to map volume access to Default is no group\",\"markdownDescription\":\"**group** (string)\\n\\nGroup to map volume access to Default is no group\"},\"registry\":{\"type\":\"string\",\"description\":\"Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\",\"markdownDescription\":\"**registry** (string)\\n\\nRegistry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\"},\"user\":{\"type\":\"string\",\"description\":\"User to map volume access to Defaults to serivceaccount user\",\"markdownDescription\":\"**user** (string)\\n\\nUser to map volume access to Defaults to serivceaccount user\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (164)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.photonpersistentdiskvolumesource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (164)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource\",\"required\":[\"pdID\"],\"description\":\"Represents a Photon Controller persistent disk resource.\",\"properties\":{\"fsType\":{\"type\":\"string\",\"description\":\"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\"markdownDescription\":\"**fsType** (string)\\n\\nFilesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"},\"pdID\":{\"type\":\"string\",\"description\":\"ID that identifies Photon Controller persistent disk\",\"markdownDescription\":\"**pdID** (string)\\n\\nID that identifies Photon Controller persistent disk\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (165)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podantiaffinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (165)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodAntiAffinity\",\"description\":\"Pod anti affinity is a group of inter pod anti affinity scheduling rules.\",\"properties\":{\"requiredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinityterm\"},\"type\":\"array\",\"description\":\"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\"markdownDescription\":\"requiredDuringSchedulingIgnoredDuringExecution: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\nDefines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\\n\\n**labelSelector** (object)\\n\\nA label query over a set of resources, in this case pods.\\n\\n**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\\n\\n**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\\n\\n\"},\"preferredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.weightedpodaffinityterm\"},\"type\":\"array\",\"description\":\"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\"markdownDescription\":\"preferredDuringSchedulingIgnoredDuringExecution: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\nThe weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\\n\\n**podAffinityTerm** (object)\\n\\nRequired. A pod affinity term, associated with the corresponding weight.\\n\\n**weight** (integer)\\n\\nweight associated with matching the corresponding podAffinityTerm, in the range 1-100.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (166)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeaffinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (166)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeAffinity\",\"description\":\"Node affinity is a group of node affinity scheduling rules.\",\"properties\":{\"requiredDuringSchedulingIgnoredDuringExecution\":{\"description\":\"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselector\",\"markdownDescription\":\"requiredDuringSchedulingIgnoredDuringExecution: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\\n\\nA node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.\\n\\n**nodeSelectorTerms** (object[])\\n\\nRequired. A list of node selector terms. The terms are ORed.\\n\\n\"},\"preferredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.preferredschedulingterm\"},\"type\":\"array\",\"description\":\"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\"markdownDescription\":\"preferredDuringSchedulingIgnoredDuringExecution: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\\n\\nAn empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\\n\\n**preference** (object)\\n\\nA node selector term, associated with the corresponding weight.\\n\\n**weight** (integer)\\n\\nWeight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (167)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podaffinity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (167)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodAffinity\",\"description\":\"Pod affinity is a group of inter pod affinity scheduling rules.\",\"properties\":{\"requiredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinityterm\"},\"type\":\"array\",\"description\":\"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\"markdownDescription\":\"requiredDuringSchedulingIgnoredDuringExecution: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\\n\\nDefines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\\n\\n**labelSelector** (object)\\n\\nA label query over a set of resources, in this case pods.\\n\\n**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\\n\\n**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\\n\\n\"},\"preferredDuringSchedulingIgnoredDuringExecution\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.weightedpodaffinityterm\"},\"type\":\"array\",\"description\":\"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\"markdownDescription\":\"preferredDuringSchedulingIgnoredDuringExecution: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\\n\\nThe weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\\n\\n**podAffinityTerm** (object)\\n\\nRequired. A pod affinity term, associated with the corresponding weight.\\n\\n**weight** (integer)\\n\\nweight associated with matching the corresponding podAffinityTerm, in the range 1-100.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (168)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.poddnsconfigoption"
[Trace - 15:41:22] Sending response 'custom/schema/content - (168)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodDNSConfigOption\",\"description\":\"PodDNSConfigOption defines DNS resolver options of a pod.\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"Required.\",\"markdownDescription\":\"**name** (string)\\n\\nRequired.\"},\"value\":{\"type\":\"string\",\"markdownDescription\":\"**value** (string)\\n\\nundefined\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (169)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.selinuxoptions"
[Trace - 15:41:22] Sending response 'custom/schema/content - (169)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SELinuxOptions\",\"description\":\"SELinuxOptions are the labels to be applied to the container\",\"properties\":{\"role\":{\"type\":\"string\",\"description\":\"Role is a SELinux role label that applies to the container.\",\"markdownDescription\":\"**role** (string)\\n\\nRole is a SELinux role label that applies to the container.\"},\"type\":{\"type\":\"string\",\"description\":\"Type is a SELinux type label that applies to the container.\",\"markdownDescription\":\"**type** (string)\\n\\nType is a SELinux type label that applies to the container.\"},\"user\":{\"type\":\"string\",\"description\":\"User is a SELinux user label that applies to the container.\",\"markdownDescription\":\"**user** (string)\\n\\nUser is a SELinux user label that applies to the container.\"},\"level\":{\"type\":\"string\",\"description\":\"Level is SELinux level label that applies to the container.\",\"markdownDescription\":\"**level** (string)\\n\\nLevel is SELinux level label that applies to the container.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (170)'.
Params: "kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity"
[Trace - 15:41:22] Sending response 'custom/schema/content - (170)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.apimachinery.pkg.api.resource.Quantity\",\"oneOf\":[{\"type\":\"string\"},{\"type\":\"integer\"}]}"
[Trace - 15:41:22] Received request 'custom/schema/content - (171)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.tcpsocketaction"
[Trace - 15:41:22] Sending response 'custom/schema/content - (171)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.TCPSocketAction\",\"required\":[\"port\"],\"description\":\"TCPSocketAction describes an action based on opening a socket\",\"properties\":{\"host\":{\"type\":\"string\",\"description\":\"Optional: Host name to connect to, defaults to the pod IP.\",\"markdownDescription\":\"**host** (string)\\n\\nOptional: Host name to connect to, defaults to the pod IP.\"},\"port\":{\"description\":\"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (172)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.execaction"
[Trace - 15:41:22] Sending response 'custom/schema/content - (172)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ExecAction\",\"description\":\"ExecAction describes a \\\"run in container\\\" action.\",\"properties\":{\"command\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\"markdownDescription\":\"**command** (string[])\\n\\nCommand is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (173)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.httpgetaction"
[Trace - 15:41:22] Sending response 'custom/schema/content - (173)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.HTTPGetAction\",\"required\":[\"port\"],\"description\":\"HTTPGetAction describes an action based on HTTP Get requests.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path to access on the HTTP server.\",\"markdownDescription\":\"**path** (string)\\n\\nPath to access on the HTTP server.\"},\"host\":{\"type\":\"string\",\"description\":\"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\"markdownDescription\":\"**host** (string)\\n\\nHost name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"},\"scheme\":{\"type\":\"string\",\"description\":\"Scheme to use for connecting to the host. Defaults to HTTP.\",\"markdownDescription\":\"**scheme** (string)\\n\\nScheme to use for connecting to the host. Defaults to HTTP.\"},\"httpHeaders\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.httpheader\"},\"type\":\"array\",\"description\":\"Custom headers to set in the request. HTTP allows repeated headers.\",\"markdownDescription\":\"httpHeaders: Custom headers to set in the request. HTTP allows repeated headers.\\n\\nHTTPHeader describes a custom header to be used in HTTP probes\\n\\n**name** (string)\\n\\nThe header field name\\n\\n**value** (string)\\n\\nThe header field value\\n\\n\"},\"port\":{\"description\":\"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.util.intstr.intorstring\",\"markdownDescription\":\"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (174)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.envvarsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (174)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.EnvVarSource\",\"description\":\"EnvVarSource represents a source for the value of an EnvVar.\",\"properties\":{\"secretKeyRef\":{\"description\":\"Selects a key of a secret in the pod's namespace\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretkeyselector\",\"markdownDescription\":\"secretKeyRef: Selects a key of a secret in the pod's namespace\\n\\nSecretKeySelector selects a key of a Secret.\\n\\n**key** (string)\\n\\nThe key of the secret to select from. Must be a valid secret key.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret or it's key must be defined\\n\\n\"},\"fieldRef\":{\"description\":\"Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.objectfieldselector\",\"markdownDescription\":\"fieldRef: Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.\\n\\nObjectFieldSelector selects an APIVersioned field of an object.\\n\\n**apiVersion** (string)\\n\\nVersion of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\\n\\n**fieldPath** (string)\\n\\nPath of the field to select in the specified API version.\\n\\n\"},\"configMapKeyRef\":{\"description\":\"Selects a key of a ConfigMap.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapkeyselector\",\"markdownDescription\":\"configMapKeyRef: Selects a key of a ConfigMap.\\n\\nSelects a key from a ConfigMap.\\n\\n**key** (string)\\n\\nThe key to select.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's key must be defined\\n\\n\"},\"resourceFieldRef\":{\"description\":\"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.resourcefieldselector\",\"markdownDescription\":\"resourceFieldRef: Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\\n\\nResourceFieldSelector represents container resources (cpu, memory) and their output format\\n\\n**containerName** (string)\\n\\nContainer name: required for volumes, optional for env vars\\n\\n**divisor** (object)\\n\\nSpecifies the output format of the exposed resources, defaults to \\\"1\\\"\\n\\n**resource** (string)\\n\\nRequired: resource to select\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (175)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretenvsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (175)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretEnvSource\",\"description\":\"SecretEnvSource selects a Secret to populate the environment variables with.\\n\\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (176)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapenvsource"
[Trace - 15:41:22] Sending response 'custom/schema/content - (176)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapEnvSource\",\"description\":\"ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\\n\\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (177)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.capabilities"
[Trace - 15:41:22] Sending response 'custom/schema/content - (177)'. Processing request took 1ms
Result: "{\"name\":\"io.k8s.api.core.v1.Capabilities\",\"description\":\"Adds and removes POSIX capabilities from running containers.\",\"properties\":{\"add\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Added capabilities\",\"markdownDescription\":\"**add** (string[])\\n\\nAdded capabilities\"},\"drop\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"Removed capabilities\",\"markdownDescription\":\"**drop** (string[])\\n\\nRemoved capabilities\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (178)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.handler"
[Trace - 15:41:22] Sending response 'custom/schema/content - (178)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.Handler\",\"description\":\"Handler defines a specific action that should be taken\",\"properties\":{\"httpGet\":{\"description\":\"HTTPGet specifies the http request to perform.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.httpgetaction\",\"markdownDescription\":\"httpGet: HTTPGet specifies the http request to perform.\\n\\nHTTPGetAction describes an action based on HTTP Get requests.\\n\\n**host** (string)\\n\\nHost name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\\n\\n**httpHeaders** (object[])\\n\\nCustom headers to set in the request. HTTP allows repeated headers.\\n\\n**path** (string)\\n\\nPath to access on the HTTP server.\\n\\n**port** (object)\\n\\nName or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n**scheme** (string)\\n\\nScheme to use for connecting to the host. Defaults to HTTP.\\n\\n\"},\"tcpSocket\":{\"description\":\"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.tcpsocketaction\",\"markdownDescription\":\"tcpSocket: TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported\\n\\nTCPSocketAction describes an action based on opening a socket\\n\\n**host** (string)\\n\\nOptional: Host name to connect to, defaults to the pod IP.\\n\\n**port** (object)\\n\\nNumber or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\\n\\n\"},\"exec\":{\"description\":\"One and only one of the following should be specified. Exec specifies the action to take.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.execaction\",\"markdownDescription\":\"exec: One and only one of the following should be specified. Exec specifies the action to take.\\n\\nExecAction describes a \\\"run in container\\\" action.\\n\\n**command** (string[])\\n\\nCommand is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (179)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.keytopath"
[Trace - 15:41:22] Sending response 'custom/schema/content - (179)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.KeyToPath\",\"required\":[\"key\",\"path\"],\"description\":\"Maps a string key to a path within a volume.\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\"markdownDescription\":\"**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\"},\"mode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"key\":{\"type\":\"string\",\"description\":\"The key to project.\",\"markdownDescription\":\"**key** (string)\\n\\nThe key to project.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (180)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.downwardapivolumefile"
[Trace - 15:41:22] Sending response 'custom/schema/content - (180)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.DownwardAPIVolumeFile\",\"required\":[\"path\"],\"description\":\"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\"markdownDescription\":\"**path** (string)\\n\\nRequired: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\"},\"fieldRef\":{\"description\":\"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.objectfieldselector\",\"markdownDescription\":\"fieldRef: Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\\n\\nObjectFieldSelector selects an APIVersioned field of an object.\\n\\n**apiVersion** (string)\\n\\nVersion of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\\n\\n**fieldPath** (string)\\n\\nPath of the field to select in the specified API version.\\n\\n\"},\"mode\":{\"type\":\"integer\",\"description\":\"Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\"format\":\"int32\",\"markdownDescription\":\"**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"},\"resourceFieldRef\":{\"description\":\"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.resourcefieldselector\",\"markdownDescription\":\"resourceFieldRef: Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\\n\\nResourceFieldSelector represents container resources (cpu, memory) and their output format\\n\\n**containerName** (string)\\n\\nContainer name: required for volumes, optional for env vars\\n\\n**divisor** (object)\\n\\nSpecifies the output format of the exposed resources, defaults to \\\"1\\\"\\n\\n**resource** (string)\\n\\nRequired: resource to select\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (181)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.volumeprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (181)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.VolumeProjection\",\"description\":\"Projection that may be projected along with other supported volume types\",\"properties\":{\"configMap\":{\"description\":\"information about the configMap data to project\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.configmapprojection\",\"markdownDescription\":\"configMap: information about the configMap data to project\\n\\nAdapts a ConfigMap into a projected volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\\n\\n\"},\"secret\":{\"description\":\"information about the secret data to project\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.secretprojection\",\"markdownDescription\":\"secret: information about the secret data to project\\n\\nAdapts a secret into a projected volume.\\n\\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.\\n\\n**items** (object[])\\n\\nIf unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\n**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\n\\n**optional** (boolean)\\n\\nSpecify whether the Secret or its key must be defined\\n\\n\"},\"downwardAPI\":{\"description\":\"information about the downwardAPI data to project\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapiprojection\",\"markdownDescription\":\"downwardAPI: information about the downwardAPI data to project\\n\\nRepresents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.\\n\\n**items** (object[])\\n\\nItems is a list of DownwardAPIVolume file\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (182)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.weightedpodaffinityterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (182)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.WeightedPodAffinityTerm\",\"required\":[\"weight\",\"podAffinityTerm\"],\"description\":\"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\"properties\":{\"podAffinityTerm\":{\"description\":\"Required. A pod affinity term, associated with the corresponding weight.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.podaffinityterm\",\"markdownDescription\":\"podAffinityTerm: Required. A pod affinity term, associated with the corresponding weight.\\n\\nDefines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\\n\\n**labelSelector** (object)\\n\\nA label query over a set of resources, in this case pods.\\n\\n**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\\n\\n**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\\n\\n\"},\"weight\":{\"type\":\"integer\",\"description\":\"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\"format\":\"int32\",\"markdownDescription\":\"**weight** (integer)\\n\\nweight associated with matching the corresponding podAffinityTerm, in the range 1-100.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (183)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.podaffinityterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (183)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PodAffinityTerm\",\"required\":[\"topologyKey\"],\"description\":\"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running\",\"properties\":{\"labelSelector\":{\"description\":\"A label query over a set of resources, in this case pods.\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.apis.meta.v1.labelselector\",\"markdownDescription\":\"labelSelector: A label query over a set of resources, in this case pods.\\n\\nA label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nmatchExpressions is a list of label selector requirements. The requirements are ANDed.\\n\\n**matchLabels** (object)\\n\\nmatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\\n\\n\"},\"namespaces\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\",\"markdownDescription\":\"**namespaces** (string[])\\n\\nnamespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\"},\"topologyKey\":{\"type\":\"string\",\"description\":\"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\"markdownDescription\":\"**topologyKey** (string)\\n\\nThis pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (184)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.preferredschedulingterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (184)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.PreferredSchedulingTerm\",\"required\":[\"weight\",\"preference\"],\"description\":\"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\"properties\":{\"preference\":{\"description\":\"A node selector term, associated with the corresponding weight.\",\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselectorterm\",\"markdownDescription\":\"preference: A node selector term, associated with the corresponding weight.\\n\\nA null or empty node selector term matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nRequired. A list of node selector requirements. The requirements are ANDed.\\n\\n\"},\"weight\":{\"type\":\"integer\",\"description\":\"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\"format\":\"int32\",\"markdownDescription\":\"**weight** (integer)\\n\\nWeight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (185)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (185)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeSelector\",\"required\":[\"nodeSelectorTerms\"],\"description\":\"A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.\",\"properties\":{\"nodeSelectorTerms\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselectorterm\"},\"type\":\"array\",\"description\":\"Required. A list of node selector terms. The terms are ORed.\",\"markdownDescription\":\"nodeSelectorTerms: Required. A list of node selector terms. The terms are ORed.\\n\\nA null or empty node selector term matches no objects.\\n\\n**matchExpressions** (object[])\\n\\nRequired. A list of node selector requirements. The requirements are ANDed.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (186)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.httpheader"
[Trace - 15:41:22] Sending response 'custom/schema/content - (186)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.HTTPHeader\",\"required\":[\"name\",\"value\"],\"description\":\"HTTPHeader describes a custom header to be used in HTTP probes\",\"properties\":{\"name\":{\"type\":\"string\",\"description\":\"The header field name\",\"markdownDescription\":\"**name** (string)\\n\\nThe header field name\"},\"value\":{\"type\":\"string\",\"description\":\"The header field value\",\"markdownDescription\":\"**value** (string)\\n\\nThe header field value\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (187)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.resourcefieldselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (187)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ResourceFieldSelector\",\"required\":[\"resource\"],\"description\":\"ResourceFieldSelector represents container resources (cpu, memory) and their output format\",\"properties\":{\"containerName\":{\"type\":\"string\",\"description\":\"Container name: required for volumes, optional for env vars\",\"markdownDescription\":\"**containerName** (string)\\n\\nContainer name: required for volumes, optional for env vars\"},\"resource\":{\"type\":\"string\",\"description\":\"Required: resource to select\",\"markdownDescription\":\"**resource** (string)\\n\\nRequired: resource to select\"},\"divisor\":{\"description\":\"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\"$ref\":\"kubernetes://schema/io.k8s.apimachinery.pkg.api.resource.quantity\",\"markdownDescription\":\"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (188)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapkeyselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (188)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapKeySelector\",\"required\":[\"key\"],\"description\":\"Selects a key from a ConfigMap.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap or it's key must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's key must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"},\"key\":{\"type\":\"string\",\"description\":\"The key to select.\",\"markdownDescription\":\"**key** (string)\\n\\nThe key to select.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (189)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.objectfieldselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (189)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ObjectFieldSelector\",\"required\":[\"fieldPath\"],\"description\":\"ObjectFieldSelector selects an APIVersioned field of an object.\",\"properties\":{\"fieldPath\":{\"type\":\"string\",\"description\":\"Path of the field to select in the specified API version.\",\"markdownDescription\":\"**fieldPath** (string)\\n\\nPath of the field to select in the specified API version.\"},\"apiVersion\":{\"type\":\"string\",\"description\":\"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\"markdownDescription\":\"**apiVersion** (string)\\n\\nVersion of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (190)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretkeyselector"
[Trace - 15:41:22] Sending response 'custom/schema/content - (190)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretKeySelector\",\"required\":[\"key\"],\"description\":\"SecretKeySelector selects a key of a Secret.\",\"properties\":{\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret or it's key must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret or it's key must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"},\"key\":{\"type\":\"string\",\"description\":\"The key of the secret to select from. Must be a valid secret key.\",\"markdownDescription\":\"**key** (string)\\n\\nThe key of the secret to select from. Must be a valid secret key.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (191)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.downwardapiprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (191)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.DownwardAPIProjection\",\"description\":\"Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.downwardapivolumefile\"},\"type\":\"array\",\"description\":\"Items is a list of DownwardAPIVolume file\",\"markdownDescription\":\"items: Items is a list of DownwardAPIVolume file\\n\\nDownwardAPIVolumeFile represents information to create the file containing the pod field\\n\\n**fieldRef** (object)\\n\\nRequired: Selects a field of the pod: only annotations, labels, name and namespace are supported.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nRequired: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\\n\\n**resourceFieldRef** (object)\\n\\nSelects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (192)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.secretprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (192)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.SecretProjection\",\"description\":\"Adapts a secret into a projected volume.\\n\\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the Secret or its key must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the Secret or its key must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (193)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.configmapprojection"
[Trace - 15:41:22] Sending response 'custom/schema/content - (193)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.ConfigMapProjection\",\"description\":\"Adapts a ConfigMap into a projected volume.\\n\\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.\",\"properties\":{\"items\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.keytopath\"},\"type\":\"array\",\"description\":\"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\"markdownDescription\":\"items: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\\n\\nMaps a string key to a path within a volume.\\n\\n**key** (string)\\n\\nThe key to project.\\n\\n**mode** (integer)\\n\\nOptional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\\n\\n**path** (string)\\n\\nThe relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\\n\\n\"},\"optional\":{\"type\":\"boolean\",\"description\":\"Specify whether the ConfigMap or it's keys must be defined\",\"markdownDescription\":\"**optional** (boolean)\\n\\nSpecify whether the ConfigMap or it's keys must be defined\"},\"name\":{\"type\":\"string\",\"description\":\"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\"markdownDescription\":\"**name** (string)\\n\\nName of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (194)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeselectorterm"
[Trace - 15:41:22] Sending response 'custom/schema/content - (194)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeSelectorTerm\",\"required\":[\"matchExpressions\"],\"description\":\"A null or empty node selector term matches no objects.\",\"properties\":{\"matchExpressions\":{\"items\":{\"$ref\":\"kubernetes://schema/io.k8s.api.core.v1.nodeselectorrequirement\"},\"type\":\"array\",\"description\":\"Required. A list of node selector requirements. The requirements are ANDed.\",\"markdownDescription\":\"matchExpressions: Required. A list of node selector requirements. The requirements are ANDed.\\n\\nA node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\\n\\n**key** (string)\\n\\nThe label key that the selector applies to.\\n\\n**operator** (string)\\n\\nRepresents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\\n\\n**values** (string[])\\n\\nAn array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\\n\\n\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received request 'custom/schema/content - (195)'.
Params: "kubernetes://schema/io.k8s.api.core.v1.nodeselectorrequirement"
[Trace - 15:41:22] Sending response 'custom/schema/content - (195)'. Processing request took 0ms
Result: "{\"name\":\"io.k8s.api.core.v1.NodeSelectorRequirement\",\"required\":[\"key\",\"operator\"],\"description\":\"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\"properties\":{\"operator\":{\"type\":\"string\",\"description\":\"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\"markdownDescription\":\"**operator** (string)\\n\\nRepresents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"},\"values\":{\"items\":{\"type\":\"string\"},\"type\":\"array\",\"description\":\"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\"markdownDescription\":\"**values** (string[])\\n\\nAn array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"},\"key\":{\"type\":\"string\",\"description\":\"The label key that the selector applies to.\",\"markdownDescription\":\"**key** (string)\\n\\nThe label key that the selector applies to.\"}},\"type\":\"object\"}"
[Trace - 15:41:22] Received notification 'textDocument/publishDiagnostics'.
Params: {
"uri": "file:///home/victor/a/test.yaml",
"diagnostics": [
{
"severity": 1,
"range": {
"start": {
"line": 0,
"character": 0
},
"end": {
"line": 0,
"character": 1
}
},
"message": "Matches multiple schemas when only one must validate."
},
{
"severity": 1,
"range": {
"start": {
"line": 22,
"character": 0
},
"end": {
"line": 22,
"character": 1
}
},
"message": "Matches multiple schemas when only one must validate."
}
]
}
[Trace - 15:41:23] Sending request 'textDocument/hover - (2)'.
Params: {
"textDocument": {
"uri": "file:///home/victor/a/test.yaml"
},
"position": {
"line": 18,
"character": 25
}
}
[Trace - 15:41:23] Sending notification '$/cancelRequest'.
Params: {
"id": 2
}
[Trace - 15:41:23] Received request 'custom/schema/request - (196)'.
Params: "file:///home/victor/a/test.yaml"
[Trace - 15:41:23] Sending response 'custom/schema/request - (196)'. Processing request took 0ms
Result: "kubernetes://schema/apps/v1@deployment+v1@configmap"
[Trace - 15:41:23] Received request 'custom/schema/content - (197)'.
Params: "kubernetes://schema/apps/v1@deployment+v1@configmap"
[Trace - 15:41:23] Sending response 'custom/schema/content - (197)'. Processing request took 0ms
Result: "{\"oneOf\":[{\"$ref\":\"kubernetes://schema/apps/v1@deployment\"},{\"$ref\":\"kubernetes://schema/v1@configmap\"}]}"
[Trace - 15:41:23] Received response 'textDocument/hover - (2)' in 102ms.
Result: {
"contents": [
"**name** (string)\n\nVolume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
],
"range": {
"start": {
"line": 18,
"character": 16
},
"end": {
"line": 18,
"character": 29
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment