mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-05 07:27:21 +00:00
Merge pull request #50643 from kow3ns/enableappsv1beta2
Automatic merge from submit-queue Enables the v1beta2 version of the apps API group by default **What this PR does / why we need it**: Enables the v1beta2 version of the apps API group by default fixes # #50641 ```release-note apps/v1beta2 is enabled by default. DaemonSet, Deployment, ReplicaSet, and StatefulSet have been moved to this group version. ```
This commit is contained in:
@@ -54562,7 +54562,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DaemonSet": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSet represents the configuration of a daemon set.",
|
||||
"description": "DaemonSet represents the configuration of a daemon set.",
|
||||
"properties": {
|
||||
"apiVersion": {
|
||||
"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",
|
||||
@@ -54594,7 +54594,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DaemonSetList": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSetList is a collection of daemon sets.",
|
||||
"description": "DaemonSetList is a collection of daemon sets.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -54628,7 +54628,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DaemonSetSpec": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSetSpec is the specification of a daemon set.",
|
||||
"description": "DaemonSetSpec is the specification of a daemon set.",
|
||||
"required": [
|
||||
"template"
|
||||
],
|
||||
@@ -54658,7 +54658,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DaemonSetStatus": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSetStatus represents the current status of a daemon set.",
|
||||
"description": "DaemonSetStatus represents the current status of a daemon set.",
|
||||
"required": [
|
||||
"currentNumberScheduled",
|
||||
"numberMisscheduled",
|
||||
@@ -54714,7 +54714,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DaemonSetUpdateStrategy": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it.",
|
||||
"description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
|
||||
"properties": {
|
||||
"rollingUpdate": {
|
||||
"description": "Rolling update config params. Present only if type = \"RollingUpdate\".",
|
||||
@@ -54727,7 +54727,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.Deployment": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Deployment enables declarative updates for Pods and ReplicaSets.",
|
||||
"description": "Deployment enables declarative updates for Pods and ReplicaSets.",
|
||||
"properties": {
|
||||
"apiVersion": {
|
||||
"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",
|
||||
@@ -54759,7 +54759,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DeploymentCondition": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentCondition describes the state of a deployment at a certain point.",
|
||||
"description": "DeploymentCondition describes the state of a deployment at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
@@ -54792,7 +54792,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DeploymentList": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentList is a list of Deployments.",
|
||||
"description": "DeploymentList is a list of Deployments.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -54826,7 +54826,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DeploymentSpec": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentSpec is the specification of the desired behavior of the Deployment.",
|
||||
"description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
|
||||
"required": [
|
||||
"template"
|
||||
],
|
||||
@@ -54870,7 +54870,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DeploymentStatus": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentStatus is the most recently observed status of the Deployment.",
|
||||
"description": "DeploymentStatus is the most recently observed status of the Deployment.",
|
||||
"properties": {
|
||||
"availableReplicas": {
|
||||
"description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
|
||||
@@ -54919,7 +54919,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.DeploymentStrategy": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentStrategy describes how to replace existing pods with new ones.",
|
||||
"description": "DeploymentStrategy describes how to replace existing pods with new ones.",
|
||||
"properties": {
|
||||
"rollingUpdate": {
|
||||
"description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.",
|
||||
@@ -54932,7 +54932,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.ReplicaSet": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSet represents the configuration of a ReplicaSet.",
|
||||
"description": "ReplicaSet represents the configuration of a ReplicaSet.",
|
||||
"properties": {
|
||||
"apiVersion": {
|
||||
"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",
|
||||
@@ -54964,7 +54964,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.ReplicaSetCondition": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetCondition describes the state of a replica set at a certain point.",
|
||||
"description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
@@ -54993,7 +54993,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.ReplicaSetList": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetList is a collection of ReplicaSets.",
|
||||
"description": "ReplicaSetList is a collection of ReplicaSets.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -55027,7 +55027,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.ReplicaSetSpec": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetSpec is the specification of a ReplicaSet.",
|
||||
"description": "ReplicaSetSpec is the specification of a ReplicaSet.",
|
||||
"properties": {
|
||||
"minReadySeconds": {
|
||||
"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)",
|
||||
@@ -55050,7 +55050,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.ReplicaSetStatus": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetStatus represents the current status of a ReplicaSet.",
|
||||
"description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
|
||||
"required": [
|
||||
"replicas"
|
||||
],
|
||||
@@ -55092,7 +55092,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.RollingUpdateDaemonSet": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Spec to control the desired behavior of daemon set rolling update.",
|
||||
"description": "Spec to control the desired behavior of daemon set rolling update.",
|
||||
"properties": {
|
||||
"maxUnavailable": {
|
||||
"description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.",
|
||||
@@ -55101,7 +55101,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.RollingUpdateDeployment": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Spec to control the desired behavior of rolling update.",
|
||||
"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.",
|
||||
@@ -55114,7 +55114,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
|
||||
"description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
|
||||
"properties": {
|
||||
"partition": {
|
||||
"description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.",
|
||||
@@ -55124,7 +55124,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.Scale": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Scale represents a scaling request for a resource.",
|
||||
"description": "Scale represents a scaling request for a resource.",
|
||||
"properties": {
|
||||
"apiVersion": {
|
||||
"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",
|
||||
@@ -55156,7 +55156,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.ScaleSpec": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ScaleSpec describes the attributes of a scale subresource",
|
||||
"description": "ScaleSpec describes the attributes of a scale subresource",
|
||||
"properties": {
|
||||
"replicas": {
|
||||
"description": "desired number of instances for the scaled object.",
|
||||
@@ -55166,7 +55166,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.ScaleStatus": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ScaleStatus represents the current status of a scale subresource.",
|
||||
"description": "ScaleStatus represents the current status of a scale subresource.",
|
||||
"required": [
|
||||
"replicas"
|
||||
],
|
||||
@@ -55190,7 +55190,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.StatefulSet": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.",
|
||||
"description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.",
|
||||
"properties": {
|
||||
"apiVersion": {
|
||||
"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",
|
||||
@@ -55221,7 +55221,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.StatefulSetList": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. StatefulSetList is a collection of StatefulSets.",
|
||||
"description": "StatefulSetList is a collection of StatefulSets.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -55253,7 +55253,7 @@
|
||||
]
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.StatefulSetSpec": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. A StatefulSetSpec is the specification of a StatefulSet.",
|
||||
"description": "A StatefulSetSpec is the specification of a StatefulSet.",
|
||||
"required": [
|
||||
"template",
|
||||
"serviceName"
|
||||
@@ -55299,7 +55299,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.StatefulSetStatus": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. StatefulSetStatus represents the current state of a StatefulSet.",
|
||||
"description": "StatefulSetStatus represents the current state of a StatefulSet.",
|
||||
"required": [
|
||||
"replicas"
|
||||
],
|
||||
@@ -55345,7 +55345,7 @@
|
||||
}
|
||||
},
|
||||
"io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy": {
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. 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.",
|
||||
"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.",
|
||||
|
||||
@@ -4634,7 +4634,7 @@
|
||||
"models": {
|
||||
"v1beta2.DaemonSetList": {
|
||||
"id": "v1beta2.DaemonSetList",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSetList is a collection of daemon sets.",
|
||||
"description": "DaemonSetList is a collection of daemon sets.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -4676,7 +4676,7 @@
|
||||
},
|
||||
"v1beta2.DaemonSet": {
|
||||
"id": "v1beta2.DaemonSet",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSet represents the configuration of a daemon set.",
|
||||
"description": "DaemonSet represents the configuration of a daemon set.",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string",
|
||||
@@ -4940,7 +4940,7 @@
|
||||
},
|
||||
"v1beta2.DaemonSetSpec": {
|
||||
"id": "v1beta2.DaemonSetSpec",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSetSpec is the specification of a daemon set.",
|
||||
"description": "DaemonSetSpec is the specification of a daemon set.",
|
||||
"required": [
|
||||
"template"
|
||||
],
|
||||
@@ -6979,7 +6979,7 @@
|
||||
},
|
||||
"v1beta2.DaemonSetUpdateStrategy": {
|
||||
"id": "v1beta2.DaemonSetUpdateStrategy",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it.",
|
||||
"description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
@@ -6993,7 +6993,7 @@
|
||||
},
|
||||
"v1beta2.RollingUpdateDaemonSet": {
|
||||
"id": "v1beta2.RollingUpdateDaemonSet",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Spec to control the desired behavior of daemon set rolling update.",
|
||||
"description": "Spec to control the desired behavior of daemon set rolling update.",
|
||||
"properties": {
|
||||
"maxUnavailable": {
|
||||
"type": "string",
|
||||
@@ -7003,7 +7003,7 @@
|
||||
},
|
||||
"v1beta2.DaemonSetStatus": {
|
||||
"id": "v1beta2.DaemonSetStatus",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DaemonSetStatus represents the current status of a daemon set.",
|
||||
"description": "DaemonSetStatus represents the current status of a daemon set.",
|
||||
"required": [
|
||||
"currentNumberScheduled",
|
||||
"numberMisscheduled",
|
||||
@@ -7129,7 +7129,7 @@
|
||||
},
|
||||
"v1beta2.DeploymentList": {
|
||||
"id": "v1beta2.DeploymentList",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentList is a list of Deployments.",
|
||||
"description": "DeploymentList is a list of Deployments.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -7157,7 +7157,7 @@
|
||||
},
|
||||
"v1beta2.Deployment": {
|
||||
"id": "v1beta2.Deployment",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Deployment enables declarative updates for Pods and ReplicaSets.",
|
||||
"description": "Deployment enables declarative updates for Pods and ReplicaSets.",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string",
|
||||
@@ -7183,7 +7183,7 @@
|
||||
},
|
||||
"v1beta2.DeploymentSpec": {
|
||||
"id": "v1beta2.DeploymentSpec",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentSpec is the specification of the desired behavior of the Deployment.",
|
||||
"description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
|
||||
"required": [
|
||||
"template"
|
||||
],
|
||||
@@ -7228,7 +7228,7 @@
|
||||
},
|
||||
"v1beta2.DeploymentStrategy": {
|
||||
"id": "v1beta2.DeploymentStrategy",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentStrategy describes how to replace existing pods with new ones.",
|
||||
"description": "DeploymentStrategy describes how to replace existing pods with new ones.",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
@@ -7242,7 +7242,7 @@
|
||||
},
|
||||
"v1beta2.RollingUpdateDeployment": {
|
||||
"id": "v1beta2.RollingUpdateDeployment",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Spec to control the desired behavior of rolling update.",
|
||||
"description": "Spec to control the desired behavior of rolling update.",
|
||||
"properties": {
|
||||
"maxUnavailable": {
|
||||
"type": "string",
|
||||
@@ -7256,7 +7256,7 @@
|
||||
},
|
||||
"v1beta2.DeploymentStatus": {
|
||||
"id": "v1beta2.DeploymentStatus",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentStatus is the most recently observed status of the Deployment.",
|
||||
"description": "DeploymentStatus is the most recently observed status of the Deployment.",
|
||||
"properties": {
|
||||
"observedGeneration": {
|
||||
"type": "integer",
|
||||
@@ -7304,7 +7304,7 @@
|
||||
},
|
||||
"v1beta2.DeploymentCondition": {
|
||||
"id": "v1beta2.DeploymentCondition",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. DeploymentCondition describes the state of a deployment at a certain point.",
|
||||
"description": "DeploymentCondition describes the state of a deployment at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
@@ -7338,7 +7338,7 @@
|
||||
},
|
||||
"v1beta2.Scale": {
|
||||
"id": "v1beta2.Scale",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. Scale represents a scaling request for a resource.",
|
||||
"description": "Scale represents a scaling request for a resource.",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string",
|
||||
@@ -7364,7 +7364,7 @@
|
||||
},
|
||||
"v1beta2.ScaleSpec": {
|
||||
"id": "v1beta2.ScaleSpec",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ScaleSpec describes the attributes of a scale subresource",
|
||||
"description": "ScaleSpec describes the attributes of a scale subresource",
|
||||
"properties": {
|
||||
"replicas": {
|
||||
"type": "integer",
|
||||
@@ -7375,7 +7375,7 @@
|
||||
},
|
||||
"v1beta2.ScaleStatus": {
|
||||
"id": "v1beta2.ScaleStatus",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ScaleStatus represents the current status of a scale subresource.",
|
||||
"description": "ScaleStatus represents the current status of a scale subresource.",
|
||||
"required": [
|
||||
"replicas"
|
||||
],
|
||||
@@ -7397,7 +7397,7 @@
|
||||
},
|
||||
"v1beta2.ReplicaSetList": {
|
||||
"id": "v1beta2.ReplicaSetList",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetList is a collection of ReplicaSets.",
|
||||
"description": "ReplicaSetList is a collection of ReplicaSets.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -7425,7 +7425,7 @@
|
||||
},
|
||||
"v1beta2.ReplicaSet": {
|
||||
"id": "v1beta2.ReplicaSet",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSet represents the configuration of a ReplicaSet.",
|
||||
"description": "ReplicaSet represents the configuration of a ReplicaSet.",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string",
|
||||
@@ -7451,7 +7451,7 @@
|
||||
},
|
||||
"v1beta2.ReplicaSetSpec": {
|
||||
"id": "v1beta2.ReplicaSetSpec",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetSpec is the specification of a ReplicaSet.",
|
||||
"description": "ReplicaSetSpec is the specification of a ReplicaSet.",
|
||||
"properties": {
|
||||
"replicas": {
|
||||
"type": "integer",
|
||||
@@ -7475,7 +7475,7 @@
|
||||
},
|
||||
"v1beta2.ReplicaSetStatus": {
|
||||
"id": "v1beta2.ReplicaSetStatus",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetStatus represents the current status of a ReplicaSet.",
|
||||
"description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
|
||||
"required": [
|
||||
"replicas"
|
||||
],
|
||||
@@ -7516,7 +7516,7 @@
|
||||
},
|
||||
"v1beta2.ReplicaSetCondition": {
|
||||
"id": "v1beta2.ReplicaSetCondition",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. ReplicaSetCondition describes the state of a replica set at a certain point.",
|
||||
"description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
@@ -7546,7 +7546,7 @@
|
||||
},
|
||||
"v1beta2.StatefulSetList": {
|
||||
"id": "v1beta2.StatefulSetList",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. StatefulSetList is a collection of StatefulSets.",
|
||||
"description": "StatefulSetList is a collection of StatefulSets.",
|
||||
"required": [
|
||||
"items"
|
||||
],
|
||||
@@ -7572,7 +7572,7 @@
|
||||
},
|
||||
"v1beta2.StatefulSet": {
|
||||
"id": "v1beta2.StatefulSet",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.",
|
||||
"description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string",
|
||||
@@ -7597,7 +7597,7 @@
|
||||
},
|
||||
"v1beta2.StatefulSetSpec": {
|
||||
"id": "v1beta2.StatefulSetSpec",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. A StatefulSetSpec is the specification of a StatefulSet.",
|
||||
"description": "A StatefulSetSpec is the specification of a StatefulSet.",
|
||||
"required": [
|
||||
"template",
|
||||
"serviceName"
|
||||
@@ -7724,7 +7724,7 @@
|
||||
},
|
||||
"v1beta2.StatefulSetUpdateStrategy": {
|
||||
"id": "v1beta2.StatefulSetUpdateStrategy",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. 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.",
|
||||
"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": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
@@ -7738,7 +7738,7 @@
|
||||
},
|
||||
"v1beta2.RollingUpdateStatefulSetStrategy": {
|
||||
"id": "v1beta2.RollingUpdateStatefulSetStrategy",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
|
||||
"description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
|
||||
"properties": {
|
||||
"partition": {
|
||||
"type": "integer",
|
||||
@@ -7749,7 +7749,7 @@
|
||||
},
|
||||
"v1beta2.StatefulSetStatus": {
|
||||
"id": "v1beta2.StatefulSetStatus",
|
||||
"description": "WIP: This is not ready to be used and we plan to make breaking changes to it. StatefulSetStatus represents the current state of a StatefulSet.",
|
||||
"description": "StatefulSetStatus represents the current state of a StatefulSet.",
|
||||
"required": [
|
||||
"replicas"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user