@jkcfg/kubernetes
Version:
jk Kubernetes library
1,005 lines (1,004 loc) • 828 kB
JSON
{
"definitions": {
"io.k8s.kubernetes.pkg.apis.authorization.v1.NonResourceAttributes": {
"description": "Deprecated. Please use io.k8s.api.authorization.v1.NonResourceAttributes instead.",
"$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes"
},
"io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy": {
"description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.",
"properties": {
"rollingUpdate": {
"description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.",
"$ref": "#/definitions/io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy"
},
"type": {
"type": "string",
"description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate."
}
}
},
"io.k8s.api.apps.v1.StatefulSetList": {
"required": [
"items"
],
"x-kubernetes-group-version-kind": [
{
"kind": "StatefulSetList",
"version": "v1",
"group": "apps"
}
],
"description": "StatefulSetList is a collection of StatefulSets.",
"properties": {
"items": {
"items": {
"$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
},
"type": "array"
},
"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"
},
"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"
},
"metadata": {
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
}
}
},
"io.k8s.kubernetes.pkg.apis.extensions.v1beta1.RollingUpdateDeployment": {
"description": "Deprecated. Please use io.k8s.api.extensions.v1beta1.RollingUpdateDeployment instead.",
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RollingUpdateDeployment"
},
"io.k8s.api.core.v1.PodStatus": {
"description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system.",
"properties": {
"initContainerStatuses": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
},
"type": "array",
"description": "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status"
},
"qosClass": {
"type": "string",
"description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://github.com/kubernetes/kubernetes/blob/master/docs/design/resource-qos.md"
},
"containerStatuses": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
},
"type": "array",
"description": "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status"
},
"reason": {
"type": "string",
"description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'"
},
"podIP": {
"type": "string",
"description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated."
},
"startTime": {
"description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"hostIP": {
"type": "string",
"description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled."
},
"phase": {
"type": "string",
"description": "Current condition of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase"
},
"message": {
"type": "string",
"description": "A human readable message indicating details about why the pod is in this condition."
},
"conditions": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.PodCondition"
},
"x-kubernetes-patch-merge-key": "type",
"type": "array",
"description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
"x-kubernetes-patch-strategy": "merge"
}
}
},
"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."
},
"host": {
"type": "string",
"description": "Host 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."
},
"httpHeaders": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.HTTPHeader"
},
"type": "array",
"description": "Custom headers to set in the request. HTTP allows repeated headers."
},
"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": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
}
}
},
"io.k8s.api.core.v1.PersistentVolumeList": {
"required": [
"items"
],
"x-kubernetes-group-version-kind": [
{
"kind": "PersistentVolumeList",
"version": "v1",
"group": ""
}
],
"description": "PersistentVolumeList is a list of PersistentVolume items.",
"properties": {
"items": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
},
"type": "array",
"description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes"
},
"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"
},
"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"
},
"metadata": {
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
}
}
},
"io.k8s.api.storage.v1alpha1.VolumeAttachmentList": {
"required": [
"items"
],
"x-kubernetes-group-version-kind": [
{
"kind": "VolumeAttachmentList",
"version": "v1alpha1",
"group": "storage.k8s.io"
}
],
"description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
"properties": {
"items": {
"items": {
"$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
},
"type": "array",
"description": "Items is the list of VolumeAttachments"
},
"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"
},
"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"
},
"metadata": {
"description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
}
}
},
"io.k8s.api.extensions.v1beta1.DaemonSetSpec": {
"required": [
"template"
],
"description": "DaemonSetSpec is the specification of a daemon set.",
"properties": {
"updateStrategy": {
"description": "An update strategy to replace existing DaemonSet pods with new pods.",
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy"
},
"template": {
"description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template",
"$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec"
},
"revisionHistoryLimit": {
"type": "integer",
"description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
"format": "int32"
},
"minReadySeconds": {
"type": "integer",
"description": "The minimum number of seconds for which a newly created DaemonSet 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"
},
"templateGeneration": {
"type": "integer",
"description": "DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.",
"format": "int64"
},
"selector": {
"description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
}
}
},
"io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview": {
"required": [
"spec"
],
"x-kubernetes-group-version-kind": [
{
"kind": "SelfSubjectRulesReview",
"version": "v1beta1",
"group": "authorization.k8s.io"
}
],
"description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.",
"properties": {
"status": {
"description": "Status is filled in by the server and indicates the set of actions a user can perform.",
"$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus"
},
"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"
},
"spec": {
"description": "Spec holds information about the request being evaluated.",
"$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec"
},
"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"
},
"metadata": {
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
}
}
},
"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": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
},
"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": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
}
}
},
"io.k8s.api.extensions.v1beta1.Scale": {
"x-kubernetes-group-version-kind": [
{
"kind": "Scale",
"version": "v1beta1",
"group": "extensions"
}
],
"description": "represents a scaling request for a resource.",
"properties": {
"status": {
"description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.",
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ScaleStatus"
},
"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"
},
"spec": {
"description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.",
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ScaleSpec"
},
"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"
},
"metadata": {
"description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
}
}
},
"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."
},
"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": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
}
}
},
"io.k8s.api.apps.v1.ReplicaSet": {
"x-kubernetes-group-version-kind": [
{
"kind": "ReplicaSet",
"version": "v1",
"group": "apps"
}
],
"description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
"properties": {
"status": {
"description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status",
"$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus"
},
"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"
},
"spec": {
"description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status",
"$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec"
},
"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"
},
"metadata": {
"description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
}
}
},
"io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition": {
"required": [
"type",
"status"
],
"description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
"properties": {
"status": {
"type": "string",
"description": "Status is the status of the condition. Can be True, False, Unknown."
},
"lastTransitionTime": {
"description": "Last time the condition transitioned from one status to another.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"message": {
"type": "string",
"description": "Human-readable message indicating details about last transition."
},
"type": {
"type": "string",
"description": "Type is the type of the condition."
},
"reason": {
"type": "string",
"description": "Unique, one-word, CamelCase reason for the condition's last transition."
}
}
},
"io.k8s.kubernetes.pkg.apis.batch.v2alpha1.CronJobStatus": {
"description": "Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJobStatus instead.",
"$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobStatus"
},
"io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler": {
"x-kubernetes-group-version-kind": [
{
"kind": "HorizontalPodAutoscaler",
"version": "v2beta1",
"group": "autoscaling"
}
],
"description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.",
"properties": {
"status": {
"description": "status is the current information about the autoscaler.",
"$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus"
},
"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"
},
"spec": {
"description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.",
"$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec"
},
"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"
},
"metadata": {
"description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
}
}
},
"io.k8s.kubernetes.pkg.api.v1.SELinuxOptions": {
"description": "Deprecated. Please use io.k8s.api.core.v1.SELinuxOptions instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions"
},
"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": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm"
},
"weight": {
"type": "integer",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"format": "int32"
}
}
},
"io.k8s.kubernetes.pkg.api.v1.ResourceRequirements": {
"description": "Deprecated. Please use io.k8s.api.core.v1.ResourceRequirements instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements"
},
"io.k8s.kubernetes.pkg.api.v1.PersistentVolume": {
"description": "Deprecated. Please use io.k8s.api.core.v1.PersistentVolume instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
},
"io.k8s.api.apps.v1beta2.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."
},
"reason": {
"type": "string",
"description": "The reason for the condition's last transition."
},
"lastUpdateTime": {
"description": "The last time this condition was updated.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"type": {
"type": "string",
"description": "Type of deployment condition."
},
"message": {
"type": "string",
"description": "A human readable message indicating details about the transition."
},
"lastTransitionTime": {
"description": "Last time the condition transitioned from one status to another.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
}
}
},
"io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus": {
"description": "APIServiceStatus contains derived information about an API server",
"properties": {
"conditions": {
"items": {
"$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition"
},
"x-kubernetes-patch-merge-key": "type",
"type": "array",
"description": "Current service state of apiService.",
"x-kubernetes-patch-strategy": "merge"
}
}
},
"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"
},
"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"
},
"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": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
},
"paused": {
"type": "boolean",
"description": "Indicates that the deployment is paused."
},
"template": {
"description": "Template describes the pods that will be created.",
"$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec"
},
"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"
},
"strategy": {
"description": "The deployment strategy to use to replace existing pods with new ones.",
"$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy"
},
"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"
}
}
},
"io.k8s.api.autoscaling.v1.ScaleSpec": {
"description": "ScaleSpec describes the attributes of a scale subresource.",
"properties": {
"replicas": {
"type": "integer",
"description": "desired number of instances for the scaled object.",
"format": "int32"
}
}
},
"io.k8s.api.core.v1.NodeStatus": {
"description": "NodeStatus is information about the current status of a node.",
"properties": {
"capacity": {
"additionalProperties": {
"$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
},
"type": "object",
"description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity"
},
"addresses": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
},
"x-kubernetes-patch-merge-key": "type",
"type": "array",
"description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses",
"x-kubernetes-patch-strategy": "merge"
},
"images": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.ContainerImage"
},
"type": "array",
"description": "List of container images on this node"
},
"nodeInfo": {
"description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info",
"$ref": "#/definitions/io.k8s.api.core.v1.NodeSystemInfo"
},
"volumesAttached": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.AttachedVolume"
},
"type": "array",
"description": "List of volumes that are attached to the node."
},
"allocatable": {
"additionalProperties": {
"$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
},
"type": "object",
"description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity."
},
"volumesInUse": {
"items": {
"type": "string"
},
"type": "array",
"description": "List of attachable volumes in use (mounted) by the node."
},
"daemonEndpoints": {
"description": "Endpoints of daemons running on the Node.",
"$ref": "#/definitions/io.k8s.api.core.v1.NodeDaemonEndpoints"
},
"phase": {
"type": "string",
"description": "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated."
},
"conditions": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.NodeCondition"
},
"x-kubernetes-patch-merge-key": "type",
"type": "array",
"description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition",
"x-kubernetes-patch-strategy": "merge"
}
}
},
"io.k8s.kubernetes.pkg.apis.apps.v1beta1.DeploymentStatus": {
"description": "Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentStatus instead.",
"$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStatus"
},
"io.k8s.api.extensions.v1beta1.IngressRule": {
"description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.",
"properties": {
"host": {
"type": "string",
"description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the\n\t IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue."
},
"http": {
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue"
}
}
},
"io.k8s.kubernetes.pkg.api.v1.WeightedPodAffinityTerm": {
"description": "Deprecated. Please use io.k8s.api.core.v1.WeightedPodAffinityTerm instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
},
"io.k8s.kubernetes.pkg.apis.extensions.v1beta1.FSGroupStrategyOptions": {
"description": "Deprecated. Please use io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions instead.",
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions"
},
"io.k8s.kubernetes.pkg.api.v1.PersistentVolumeList": {
"description": "Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeList instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeList"
},
"io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR": {
"required": [
"clientCIDR",
"serverAddress"
],
"description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
"properties": {
"clientCIDR": {
"type": "string",
"description": "The CIDR with which clients can match their IP to figure out the server address that they should use."
},
"serverAddress": {
"type": "string",
"description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port."
}
}
},
"io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule": {
"description": "DEPRECATED 1.9 - This group version of NetworkPolicyIngressRule is deprecated by networking/v1/NetworkPolicyIngressRule. This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.",
"properties": {
"from": {
"items": {
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPeer"
},
"type": "array",
"description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list."
},
"ports": {
"items": {
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPort"
},
"type": "array",
"description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list."
}
}
},
"io.k8s.kubernetes.pkg.api.v1.PodSecurityContext": {
"description": "Deprecated. Please use io.k8s.api.core.v1.PodSecurityContext instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext"
},
"io.k8s.kubernetes.pkg.apis.apps.v1beta1.StatefulSet": {
"description": "Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSet instead.",
"$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
},
"io.k8s.kubernetes.pkg.api.v1.ComponentStatusList": {
"description": "Deprecated. Please use io.k8s.api.core.v1.ComponentStatusList instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatusList"
},
"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": "#/definitions/io.k8s.api.core.v1.EnvVarSource"
},
"name": {
"type": "string",
"description": "Name 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 \"\"."
}
}
},
"io.k8s.api.extensions.v1beta1.Deployment": {
"x-kubernetes-group-version-kind": [
{
"kind": "Deployment",
"version": "v1beta1",
"group": "extensions"
}
],
"description": "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.",
"properties": {
"status": {
"description": "Most recently observed status of the Deployment.",
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStatus"
},
"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"
},
"spec": {
"description": "Specification of the desired behavior of the Deployment.",
"$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentSpec"
},
"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"
},
"metadata": {
"description": "Standard object metadata.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
}
}
},
"io.k8s.kubernetes.pkg.api.v1.EnvVar": {
"description": "Deprecated. Please use io.k8s.api.core.v1.EnvVar instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
},
"io.k8s.api.rbac.v1.ClusterRoleBindingList": {
"required": [
"items"
],
"x-kubernetes-group-version-kind": [
{
"kind": "ClusterRoleBindingList",
"version": "v1",
"group": "rbac.authorization.k8s.io"
}
],
"description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
"properties": {
"items": {
"items": {
"$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
},
"type": "array",
"description": "Items is a list of ClusterRoleBindings"
},
"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"
},
"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"
},
"metadata": {
"description": "Standard object's metadata.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
}
}
},
"io.k8s.kubernetes.pkg.api.v1.ServiceAccountList": {
"description": "Deprecated. Please use io.k8s.api.core.v1.ServiceAccountList instead.",
"$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
},
"io.k8s.api.autoscaling.v2beta1.ResourceMetricSource": {
"required": [
"name"
],
"description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.",
"properties": {
"targetAverageUtilization": {
"type": "integer",
"description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
"format": "int32"
},
"name": {
"type": "string",
"description": "name is the name of the resource in question."
},
"targetAverageValue": {
"description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
}
}
},
"io.k8s.api.events.v1beta1.EventSeries": {
"required": [
"count",
"lastObservedTime",
"state"
],
"description": "EventSeries contain information on series of events, i.e. thing that was/is happening continously for some time.",
"properties": {
"count": {
"type": "integer",
"description": "Number of occurrences in this series up to the last heartbeat time",
"format": "int32"
},
"state": {
"type": "string",
"description": "Information whether this series is ongoing or finished."
},
"lastObservedTime": {
"description": "Time when last Event from the series was seen before last heartbeat.",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime"
}
}
},
"io.k8s.api.core.v1.EventSeries": {
"description": "EventSeries contain information on series of events, i.e. thing that was/is happening continously for some time.",
"properties": {
"count": {
"type": "integer",
"description": "Number of occurrences in this series up to the last heartbeat time",
"format": "int32"
},
"state": {
"type": "string",
"description": "State of this Series: Ongoing or Finished"
},
"lastObservedTime": {
"description": "Time of the last occurence observed",
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime"
}
}
},
"io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
"x-kubernetes-group-version-kind": [
{
"kind": "DeleteOptions",
"version": "v1",
"group": ""
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "admission.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1alpha1",
"group": "admissionregistration.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "admissionregistration.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1",
"group": "apps"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "apps"
},
{
"kind": "DeleteOptions",
"version": "v1beta2",
"group": "apps"
},
{
"kind": "DeleteOptions",
"version": "v1",
"group": "authentication.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "authentication.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1",
"group": "authorization.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "authorization.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1",
"group": "autoscaling"
},
{
"kind": "DeleteOptions",
"version": "v2beta1",
"group": "autoscaling"
},
{
"kind": "DeleteOptions",
"version": "v1",
"group": "batch"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "batch"
},
{
"kind": "DeleteOptions",
"version": "v2alpha1",
"group": "batch"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "certificates.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "events.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "extensions"
},
{
"kind": "DeleteOptions",
"version": "v1alpha1",
"group": "imagepolicy.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1",
"group": "networking.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "policy"
},
{
"kind": "DeleteOptions",
"version": "v1",
"group": "rbac.authorization.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1alpha1",
"group": "rbac.authorization.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1beta1",
"group": "rbac.authorization.k8s.io"
},
{
"kind": "DeleteOptions",
"version": "v1alpha1",
"group": "scheduling.k8s.io"
},
{