mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-05 10:19:50 +00:00
generated files
This commit is contained in:
parent
2472291790
commit
c1eb18c00c
22
api/openapi-spec/swagger.json
generated
22
api/openapi-spec/swagger.json
generated
@ -7979,7 +7979,7 @@
|
||||
"description": "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled."
|
||||
},
|
||||
"resources": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.VolumeResourceRequirements",
|
||||
"description": "resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources"
|
||||
},
|
||||
"selector": {
|
||||
@ -10921,6 +10921,26 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VolumeResourceRequirements": {
|
||||
"description": "VolumeResourceRequirements describes the storage resource requirements for a volume.",
|
||||
"properties": {
|
||||
"limits": {
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
},
|
||||
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
},
|
||||
"requests": {
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
},
|
||||
"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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
|
||||
"description": "Represents a vSphere volume resource.",
|
||||
"properties": {
|
||||
|
@ -4195,7 +4195,7 @@
|
||||
"resources": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements"
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeResourceRequirements"
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
@ -7981,6 +7981,36 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VolumeResourceRequirements": {
|
||||
"description": "VolumeResourceRequirements describes the storage resource requirements for a volume.",
|
||||
"properties": {
|
||||
"limits": {
|
||||
"additionalProperties": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
}
|
||||
],
|
||||
"default": {}
|
||||
},
|
||||
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
},
|
||||
"requests": {
|
||||
"additionalProperties": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
}
|
||||
],
|
||||
"default": {}
|
||||
},
|
||||
"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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
|
||||
"description": "Represents a vSphere volume resource.",
|
||||
"properties": {
|
||||
|
@ -3054,7 +3054,7 @@
|
||||
"resources": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements"
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeResourceRequirements"
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
@ -4986,6 +4986,36 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VolumeResourceRequirements": {
|
||||
"description": "VolumeResourceRequirements describes the storage resource requirements for a volume.",
|
||||
"properties": {
|
||||
"limits": {
|
||||
"additionalProperties": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
}
|
||||
],
|
||||
"default": {}
|
||||
},
|
||||
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
},
|
||||
"requests": {
|
||||
"additionalProperties": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
}
|
||||
],
|
||||
"default": {}
|
||||
},
|
||||
"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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
|
||||
"description": "Represents a vSphere volume resource.",
|
||||
"properties": {
|
||||
|
@ -2311,7 +2311,7 @@
|
||||
"resources": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements"
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeResourceRequirements"
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
@ -4178,6 +4178,36 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VolumeResourceRequirements": {
|
||||
"description": "VolumeResourceRequirements describes the storage resource requirements for a volume.",
|
||||
"properties": {
|
||||
"limits": {
|
||||
"additionalProperties": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
}
|
||||
],
|
||||
"default": {}
|
||||
},
|
||||
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
},
|
||||
"requests": {
|
||||
"additionalProperties": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
|
||||
}
|
||||
],
|
||||
"default": {}
|
||||
},
|
||||
"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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
|
||||
"description": "Represents a vSphere volume resource.",
|
||||
"properties": {
|
||||
|
36
pkg/apis/core/v1/zz_generated.conversion.go
generated
36
pkg/apis/core/v1/zz_generated.conversion.go
generated
@ -2087,6 +2087,16 @@ func RegisterConversions(s *runtime.Scheme) error {
|
||||
}); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.AddGeneratedConversionFunc((*v1.VolumeResourceRequirements)(nil), (*core.VolumeResourceRequirements)(nil), func(a, b interface{}, scope conversion.Scope) error {
|
||||
return Convert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements(a.(*v1.VolumeResourceRequirements), b.(*core.VolumeResourceRequirements), scope)
|
||||
}); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.AddGeneratedConversionFunc((*core.VolumeResourceRequirements)(nil), (*v1.VolumeResourceRequirements)(nil), func(a, b interface{}, scope conversion.Scope) error {
|
||||
return Convert_core_VolumeResourceRequirements_To_v1_VolumeResourceRequirements(a.(*core.VolumeResourceRequirements), b.(*v1.VolumeResourceRequirements), scope)
|
||||
}); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := s.AddGeneratedConversionFunc((*v1.VolumeSource)(nil), (*core.VolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
|
||||
return Convert_v1_VolumeSource_To_core_VolumeSource(a.(*v1.VolumeSource), b.(*core.VolumeSource), scope)
|
||||
}); err != nil {
|
||||
@ -5323,7 +5333,7 @@ func Convert_core_PersistentVolumeClaimList_To_v1_PersistentVolumeClaimList(in *
|
||||
func autoConvert_v1_PersistentVolumeClaimSpec_To_core_PersistentVolumeClaimSpec(in *v1.PersistentVolumeClaimSpec, out *core.PersistentVolumeClaimSpec, s conversion.Scope) error {
|
||||
out.AccessModes = *(*[]core.PersistentVolumeAccessMode)(unsafe.Pointer(&in.AccessModes))
|
||||
out.Selector = (*metav1.LabelSelector)(unsafe.Pointer(in.Selector))
|
||||
if err := Convert_v1_ResourceRequirements_To_core_ResourceRequirements(&in.Resources, &out.Resources, s); err != nil {
|
||||
if err := Convert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements(&in.Resources, &out.Resources, s); err != nil {
|
||||
return err
|
||||
}
|
||||
out.VolumeName = in.VolumeName
|
||||
@ -5342,7 +5352,7 @@ func Convert_v1_PersistentVolumeClaimSpec_To_core_PersistentVolumeClaimSpec(in *
|
||||
func autoConvert_core_PersistentVolumeClaimSpec_To_v1_PersistentVolumeClaimSpec(in *core.PersistentVolumeClaimSpec, out *v1.PersistentVolumeClaimSpec, s conversion.Scope) error {
|
||||
out.AccessModes = *(*[]v1.PersistentVolumeAccessMode)(unsafe.Pointer(&in.AccessModes))
|
||||
out.Selector = (*metav1.LabelSelector)(unsafe.Pointer(in.Selector))
|
||||
if err := Convert_core_ResourceRequirements_To_v1_ResourceRequirements(&in.Resources, &out.Resources, s); err != nil {
|
||||
if err := Convert_core_VolumeResourceRequirements_To_v1_VolumeResourceRequirements(&in.Resources, &out.Resources, s); err != nil {
|
||||
return err
|
||||
}
|
||||
out.VolumeName = in.VolumeName
|
||||
@ -8467,6 +8477,28 @@ func Convert_core_VolumeProjection_To_v1_VolumeProjection(in *core.VolumeProject
|
||||
return autoConvert_core_VolumeProjection_To_v1_VolumeProjection(in, out, s)
|
||||
}
|
||||
|
||||
func autoConvert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements(in *v1.VolumeResourceRequirements, out *core.VolumeResourceRequirements, s conversion.Scope) error {
|
||||
out.Limits = *(*core.ResourceList)(unsafe.Pointer(&in.Limits))
|
||||
out.Requests = *(*core.ResourceList)(unsafe.Pointer(&in.Requests))
|
||||
return nil
|
||||
}
|
||||
|
||||
// Convert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements is an autogenerated conversion function.
|
||||
func Convert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements(in *v1.VolumeResourceRequirements, out *core.VolumeResourceRequirements, s conversion.Scope) error {
|
||||
return autoConvert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements(in, out, s)
|
||||
}
|
||||
|
||||
func autoConvert_core_VolumeResourceRequirements_To_v1_VolumeResourceRequirements(in *core.VolumeResourceRequirements, out *v1.VolumeResourceRequirements, s conversion.Scope) error {
|
||||
out.Limits = *(*v1.ResourceList)(unsafe.Pointer(&in.Limits))
|
||||
out.Requests = *(*v1.ResourceList)(unsafe.Pointer(&in.Requests))
|
||||
return nil
|
||||
}
|
||||
|
||||
// Convert_core_VolumeResourceRequirements_To_v1_VolumeResourceRequirements is an autogenerated conversion function.
|
||||
func Convert_core_VolumeResourceRequirements_To_v1_VolumeResourceRequirements(in *core.VolumeResourceRequirements, out *v1.VolumeResourceRequirements, s conversion.Scope) error {
|
||||
return autoConvert_core_VolumeResourceRequirements_To_v1_VolumeResourceRequirements(in, out, s)
|
||||
}
|
||||
|
||||
func autoConvert_v1_VolumeSource_To_core_VolumeSource(in *v1.VolumeSource, out *core.VolumeSource, s conversion.Scope) error {
|
||||
out.HostPath = (*core.HostPathVolumeSource)(unsafe.Pointer(in.HostPath))
|
||||
out.EmptyDir = (*core.EmptyDirVolumeSource)(unsafe.Pointer(in.EmptyDir))
|
||||
|
30
pkg/apis/core/zz_generated.deepcopy.go
generated
30
pkg/apis/core/zz_generated.deepcopy.go
generated
@ -6030,6 +6030,36 @@ func (in *VolumeProjection) DeepCopy() *VolumeProjection {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *VolumeResourceRequirements) DeepCopyInto(out *VolumeResourceRequirements) {
|
||||
*out = *in
|
||||
if in.Limits != nil {
|
||||
in, out := &in.Limits, &out.Limits
|
||||
*out = make(ResourceList, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val.DeepCopy()
|
||||
}
|
||||
}
|
||||
if in.Requests != nil {
|
||||
in, out := &in.Requests, &out.Requests
|
||||
*out = make(ResourceList, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val.DeepCopy()
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeResourceRequirements.
|
||||
func (in *VolumeResourceRequirements) DeepCopy() *VolumeResourceRequirements {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(VolumeResourceRequirements)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *VolumeSource) DeepCopyInto(out *VolumeSource) {
|
||||
*out = *in
|
||||
|
50
pkg/generated/openapi/zz_generated.openapi.go
generated
50
pkg/generated/openapi/zz_generated.openapi.go
generated
@ -568,6 +568,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
|
||||
"k8s.io/api/core/v1.VolumeMount": schema_k8sio_api_core_v1_VolumeMount(ref),
|
||||
"k8s.io/api/core/v1.VolumeNodeAffinity": schema_k8sio_api_core_v1_VolumeNodeAffinity(ref),
|
||||
"k8s.io/api/core/v1.VolumeProjection": schema_k8sio_api_core_v1_VolumeProjection(ref),
|
||||
"k8s.io/api/core/v1.VolumeResourceRequirements": schema_k8sio_api_core_v1_VolumeResourceRequirements(ref),
|
||||
"k8s.io/api/core/v1.VolumeSource": schema_k8sio_api_core_v1_VolumeSource(ref),
|
||||
"k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource": schema_k8sio_api_core_v1_VsphereVirtualDiskVolumeSource(ref),
|
||||
"k8s.io/api/core/v1.WeightedPodAffinityTerm": schema_k8sio_api_core_v1_WeightedPodAffinityTerm(ref),
|
||||
@ -23310,7 +23311,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall
|
||||
SchemaProps: spec.SchemaProps{
|
||||
Description: "resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources",
|
||||
Default: map[string]interface{}{},
|
||||
Ref: ref("k8s.io/api/core/v1.ResourceRequirements"),
|
||||
Ref: ref("k8s.io/api/core/v1.VolumeResourceRequirements"),
|
||||
},
|
||||
},
|
||||
"volumeName": {
|
||||
@ -23351,7 +23352,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall
|
||||
},
|
||||
},
|
||||
Dependencies: []string{
|
||||
"k8s.io/api/core/v1.ResourceRequirements", "k8s.io/api/core/v1.TypedLocalObjectReference", "k8s.io/api/core/v1.TypedObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"},
|
||||
"k8s.io/api/core/v1.TypedLocalObjectReference", "k8s.io/api/core/v1.TypedObjectReference", "k8s.io/api/core/v1.VolumeResourceRequirements", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"},
|
||||
}
|
||||
}
|
||||
|
||||
@ -29279,6 +29280,51 @@ func schema_k8sio_api_core_v1_VolumeProjection(ref common.ReferenceCallback) com
|
||||
}
|
||||
}
|
||||
|
||||
func schema_k8sio_api_core_v1_VolumeResourceRequirements(ref common.ReferenceCallback) common.OpenAPIDefinition {
|
||||
return common.OpenAPIDefinition{
|
||||
Schema: spec.Schema{
|
||||
SchemaProps: spec.SchemaProps{
|
||||
Description: "VolumeResourceRequirements describes the storage resource requirements for a volume.",
|
||||
Type: []string{"object"},
|
||||
Properties: map[string]spec.Schema{
|
||||
"limits": {
|
||||
SchemaProps: spec.SchemaProps{
|
||||
Description: "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
Type: []string{"object"},
|
||||
AdditionalProperties: &spec.SchemaOrBool{
|
||||
Allows: true,
|
||||
Schema: &spec.Schema{
|
||||
SchemaProps: spec.SchemaProps{
|
||||
Default: map[string]interface{}{},
|
||||
Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"),
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
"requests": {
|
||||
SchemaProps: spec.SchemaProps{
|
||||
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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
Type: []string{"object"},
|
||||
AdditionalProperties: &spec.SchemaOrBool{
|
||||
Allows: true,
|
||||
Schema: &spec.Schema{
|
||||
SchemaProps: spec.SchemaProps{
|
||||
Default: map[string]interface{}{},
|
||||
Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"),
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
Dependencies: []string{
|
||||
"k8s.io/apimachinery/pkg/api/resource.Quantity"},
|
||||
}
|
||||
}
|
||||
|
||||
func schema_k8sio_api_core_v1_VolumeSource(ref common.ReferenceCallback) common.OpenAPIDefinition {
|
||||
return common.OpenAPIDefinition{
|
||||
Schema: spec.Schema{
|
||||
|
2362
staging/src/k8s.io/api/core/v1/generated.pb.go
generated
2362
staging/src/k8s.io/api/core/v1/generated.pb.go
generated
File diff suppressed because it is too large
Load Diff
@ -2825,7 +2825,7 @@ message PersistentVolumeClaimSpec {
|
||||
// status field of the claim.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
|
||||
// +optional
|
||||
optional ResourceRequirements resources = 2;
|
||||
optional VolumeResourceRequirements resources = 2;
|
||||
|
||||
// volumeName is the binding reference to the PersistentVolume backing this claim.
|
||||
// +optional
|
||||
@ -5971,6 +5971,21 @@ message VolumeProjection {
|
||||
optional ServiceAccountTokenProjection serviceAccountToken = 4;
|
||||
}
|
||||
|
||||
// VolumeResourceRequirements describes the storage resource requirements for a volume.
|
||||
message VolumeResourceRequirements {
|
||||
// Limits describes the maximum amount of compute resources allowed.
|
||||
// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
||||
// +optional
|
||||
map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> limits = 1;
|
||||
|
||||
// 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. Requests cannot exceed Limits.
|
||||
// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
||||
// +optional
|
||||
map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> requests = 2;
|
||||
}
|
||||
|
||||
// Represents the source of a volume to mount.
|
||||
// Only one of its members may be specified.
|
||||
message VolumeSource {
|
||||
|
@ -2573,6 +2573,16 @@ func (VolumeProjection) SwaggerDoc() map[string]string {
|
||||
return map_VolumeProjection
|
||||
}
|
||||
|
||||
var map_VolumeResourceRequirements = map[string]string{
|
||||
"": "VolumeResourceRequirements describes the storage resource requirements for a volume.",
|
||||
"limits": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
"requests": "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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
|
||||
}
|
||||
|
||||
func (VolumeResourceRequirements) SwaggerDoc() map[string]string {
|
||||
return map_VolumeResourceRequirements
|
||||
}
|
||||
|
||||
var map_VolumeSource = map[string]string{
|
||||
"": "Represents the source of a volume to mount. Only one of its members may be specified.",
|
||||
"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",
|
||||
|
@ -6045,6 +6045,36 @@ func (in *VolumeProjection) DeepCopy() *VolumeProjection {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *VolumeResourceRequirements) DeepCopyInto(out *VolumeResourceRequirements) {
|
||||
*out = *in
|
||||
if in.Limits != nil {
|
||||
in, out := &in.Limits, &out.Limits
|
||||
*out = make(ResourceList, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val.DeepCopy()
|
||||
}
|
||||
}
|
||||
if in.Requests != nil {
|
||||
in, out := &in.Requests, &out.Requests
|
||||
*out = make(ResourceList, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val.DeepCopy()
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeResourceRequirements.
|
||||
func (in *VolumeResourceRequirements) DeepCopy() *VolumeResourceRequirements {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(VolumeResourceRequirements)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *VolumeSource) DeepCopyInto(out *VolumeSource) {
|
||||
*out = *in
|
||||
|
@ -452,12 +452,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -990,8 +990,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -998,8 +998,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -454,12 +454,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -990,8 +990,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
@ -1754,12 +1749,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -998,8 +998,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
@ -1212,8 +1210,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -1000,8 +1000,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
@ -1754,12 +1749,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -998,8 +998,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
@ -1212,8 +1210,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -452,12 +452,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -990,8 +990,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -998,8 +998,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -454,12 +454,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -990,8 +990,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
@ -1754,12 +1749,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -998,8 +998,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
@ -1212,8 +1210,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -528,12 +528,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -1045,8 +1045,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -479,12 +479,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
BIN
staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb
vendored
BIN
staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb
vendored
Binary file not shown.
@ -1009,8 +1009,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -528,12 +528,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -1045,8 +1045,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -67,12 +67,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -45,8 +45,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -394,12 +394,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
BIN
staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb
vendored
BIN
staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb
vendored
Binary file not shown.
@ -946,8 +946,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -437,12 +437,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -979,8 +979,6 @@ template:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -443,12 +443,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -984,8 +984,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -452,12 +452,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -990,8 +990,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -1000,8 +1000,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
@ -454,12 +454,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -990,8 +990,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
1710
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.DaemonSet.after_roundtrip.json
vendored
Normal file
1710
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.DaemonSet.after_roundtrip.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.DaemonSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.DaemonSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
1171
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.DaemonSet.after_roundtrip.yaml
vendored
Normal file
1171
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.DaemonSet.after_roundtrip.yaml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1712
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.Deployment.after_roundtrip.json
vendored
Normal file
1712
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.Deployment.after_roundtrip.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
1173
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.Deployment.after_roundtrip.yaml
vendored
Normal file
1173
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.Deployment.after_roundtrip.yaml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1699
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.ReplicaSet.after_roundtrip.json
vendored
Normal file
1699
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.ReplicaSet.after_roundtrip.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
1162
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.ReplicaSet.after_roundtrip.yaml
vendored
Normal file
1162
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1.ReplicaSet.after_roundtrip.yaml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
@ -1751,12 +1746,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -995,8 +995,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
@ -1209,8 +1207,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
1715
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta1.Deployment.after_roundtrip.json
vendored
Normal file
1715
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta1.Deployment.after_roundtrip.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
1175
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta1.Deployment.after_roundtrip.yaml
vendored
Normal file
1175
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta1.Deployment.after_roundtrip.yaml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
@ -1751,12 +1746,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
@ -995,8 +995,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
@ -1209,8 +1207,6 @@ spec:
|
||||
name: nameValue
|
||||
namespace: namespaceValue
|
||||
resources:
|
||||
claims:
|
||||
- name: nameValue
|
||||
limits:
|
||||
limitsKey: "0"
|
||||
requests:
|
||||
|
1710
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.DaemonSet.after_roundtrip.json
vendored
Normal file
1710
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.DaemonSet.after_roundtrip.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.DaemonSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.DaemonSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
1171
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.DaemonSet.after_roundtrip.yaml
vendored
Normal file
1171
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.DaemonSet.after_roundtrip.yaml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1712
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.Deployment.after_roundtrip.json
vendored
Normal file
1712
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.Deployment.after_roundtrip.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
1173
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.Deployment.after_roundtrip.yaml
vendored
Normal file
1173
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.Deployment.after_roundtrip.yaml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1699
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.ReplicaSet.after_roundtrip.json
vendored
Normal file
1699
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.ReplicaSet.after_roundtrip.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
1162
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.ReplicaSet.after_roundtrip.yaml
vendored
Normal file
1162
staging/src/k8s.io/api/testdata/v1.27.0/apps.v1beta2.ReplicaSet.after_roundtrip.yaml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -453,12 +453,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
@ -1751,12 +1746,7 @@
|
||||
},
|
||||
"requests": {
|
||||
"requestsKey": "0"
|
||||
},
|
||||
"claims": [
|
||||
{
|
||||
"name": "nameValue"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeName": "volumeNameValue",
|
||||
"storageClassName": "storageClassNameValue",
|
||||
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user