mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
rebase: update kubernetes to latest
updating the kubernetes release to the latest in main go.mod Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
committed by
mergify[bot]
parent
63c4c05b35
commit
5a66991bb3
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/csistoragecapacity.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/csistoragecapacity.go
generated
vendored
@ -28,7 +28,7 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
||||
)
|
||||
|
||||
// CSIStorageCapacityApplyConfiguration represents an declarative configuration of the CSIStorageCapacity type for use
|
||||
// CSIStorageCapacityApplyConfiguration represents a declarative configuration of the CSIStorageCapacity type for use
|
||||
// with apply.
|
||||
type CSIStorageCapacityApplyConfiguration struct {
|
||||
v1.TypeMetaApplyConfiguration `json:",inline"`
|
||||
@ -39,7 +39,7 @@ type CSIStorageCapacityApplyConfiguration struct {
|
||||
MaximumVolumeSize *resource.Quantity `json:"maximumVolumeSize,omitempty"`
|
||||
}
|
||||
|
||||
// CSIStorageCapacity constructs an declarative configuration of the CSIStorageCapacity type for use with
|
||||
// CSIStorageCapacity constructs a declarative configuration of the CSIStorageCapacity type for use with
|
||||
// apply.
|
||||
func CSIStorageCapacity(name, namespace string) *CSIStorageCapacityApplyConfiguration {
|
||||
b := &CSIStorageCapacityApplyConfiguration{}
|
||||
@ -275,3 +275,9 @@ func (b *CSIStorageCapacityApplyConfiguration) WithMaximumVolumeSize(value resou
|
||||
b.MaximumVolumeSize = &value
|
||||
return b
|
||||
}
|
||||
|
||||
// GetName retrieves the value of the Name field in the declarative configuration.
|
||||
func (b *CSIStorageCapacityApplyConfiguration) GetName() *string {
|
||||
b.ensureObjectMetaApplyConfigurationExists()
|
||||
return b.Name
|
||||
}
|
||||
|
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeattachment.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeattachment.go
generated
vendored
@ -27,7 +27,7 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
||||
)
|
||||
|
||||
// VolumeAttachmentApplyConfiguration represents an declarative configuration of the VolumeAttachment type for use
|
||||
// VolumeAttachmentApplyConfiguration represents a declarative configuration of the VolumeAttachment type for use
|
||||
// with apply.
|
||||
type VolumeAttachmentApplyConfiguration struct {
|
||||
v1.TypeMetaApplyConfiguration `json:",inline"`
|
||||
@ -36,7 +36,7 @@ type VolumeAttachmentApplyConfiguration struct {
|
||||
Status *VolumeAttachmentStatusApplyConfiguration `json:"status,omitempty"`
|
||||
}
|
||||
|
||||
// VolumeAttachment constructs an declarative configuration of the VolumeAttachment type for use with
|
||||
// VolumeAttachment constructs a declarative configuration of the VolumeAttachment type for use with
|
||||
// apply.
|
||||
func VolumeAttachment(name string) *VolumeAttachmentApplyConfiguration {
|
||||
b := &VolumeAttachmentApplyConfiguration{}
|
||||
@ -254,3 +254,9 @@ func (b *VolumeAttachmentApplyConfiguration) WithStatus(value *VolumeAttachmentS
|
||||
b.Status = value
|
||||
return b
|
||||
}
|
||||
|
||||
// GetName retrieves the value of the Name field in the declarative configuration.
|
||||
func (b *VolumeAttachmentApplyConfiguration) GetName() *string {
|
||||
b.ensureObjectMetaApplyConfigurationExists()
|
||||
return b.Name
|
||||
}
|
||||
|
@ -22,14 +22,14 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/core/v1"
|
||||
)
|
||||
|
||||
// VolumeAttachmentSourceApplyConfiguration represents an declarative configuration of the VolumeAttachmentSource type for use
|
||||
// VolumeAttachmentSourceApplyConfiguration represents a declarative configuration of the VolumeAttachmentSource type for use
|
||||
// with apply.
|
||||
type VolumeAttachmentSourceApplyConfiguration struct {
|
||||
PersistentVolumeName *string `json:"persistentVolumeName,omitempty"`
|
||||
InlineVolumeSpec *v1.PersistentVolumeSpecApplyConfiguration `json:"inlineVolumeSpec,omitempty"`
|
||||
}
|
||||
|
||||
// VolumeAttachmentSourceApplyConfiguration constructs an declarative configuration of the VolumeAttachmentSource type for use with
|
||||
// VolumeAttachmentSourceApplyConfiguration constructs a declarative configuration of the VolumeAttachmentSource type for use with
|
||||
// apply.
|
||||
func VolumeAttachmentSource() *VolumeAttachmentSourceApplyConfiguration {
|
||||
return &VolumeAttachmentSourceApplyConfiguration{}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeattachmentspec.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeattachmentspec.go
generated
vendored
@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1alpha1
|
||||
|
||||
// VolumeAttachmentSpecApplyConfiguration represents an declarative configuration of the VolumeAttachmentSpec type for use
|
||||
// VolumeAttachmentSpecApplyConfiguration represents a declarative configuration of the VolumeAttachmentSpec type for use
|
||||
// with apply.
|
||||
type VolumeAttachmentSpecApplyConfiguration struct {
|
||||
Attacher *string `json:"attacher,omitempty"`
|
||||
@ -26,7 +26,7 @@ type VolumeAttachmentSpecApplyConfiguration struct {
|
||||
NodeName *string `json:"nodeName,omitempty"`
|
||||
}
|
||||
|
||||
// VolumeAttachmentSpecApplyConfiguration constructs an declarative configuration of the VolumeAttachmentSpec type for use with
|
||||
// VolumeAttachmentSpecApplyConfiguration constructs a declarative configuration of the VolumeAttachmentSpec type for use with
|
||||
// apply.
|
||||
func VolumeAttachmentSpec() *VolumeAttachmentSpecApplyConfiguration {
|
||||
return &VolumeAttachmentSpecApplyConfiguration{}
|
||||
|
@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1alpha1
|
||||
|
||||
// VolumeAttachmentStatusApplyConfiguration represents an declarative configuration of the VolumeAttachmentStatus type for use
|
||||
// VolumeAttachmentStatusApplyConfiguration represents a declarative configuration of the VolumeAttachmentStatus type for use
|
||||
// with apply.
|
||||
type VolumeAttachmentStatusApplyConfiguration struct {
|
||||
Attached *bool `json:"attached,omitempty"`
|
||||
@ -27,7 +27,7 @@ type VolumeAttachmentStatusApplyConfiguration struct {
|
||||
DetachError *VolumeErrorApplyConfiguration `json:"detachError,omitempty"`
|
||||
}
|
||||
|
||||
// VolumeAttachmentStatusApplyConfiguration constructs an declarative configuration of the VolumeAttachmentStatus type for use with
|
||||
// VolumeAttachmentStatusApplyConfiguration constructs a declarative configuration of the VolumeAttachmentStatus type for use with
|
||||
// apply.
|
||||
func VolumeAttachmentStatus() *VolumeAttachmentStatusApplyConfiguration {
|
||||
return &VolumeAttachmentStatusApplyConfiguration{}
|
||||
|
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeattributesclass.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeattributesclass.go
generated
vendored
@ -27,7 +27,7 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
||||
)
|
||||
|
||||
// VolumeAttributesClassApplyConfiguration represents an declarative configuration of the VolumeAttributesClass type for use
|
||||
// VolumeAttributesClassApplyConfiguration represents a declarative configuration of the VolumeAttributesClass type for use
|
||||
// with apply.
|
||||
type VolumeAttributesClassApplyConfiguration struct {
|
||||
v1.TypeMetaApplyConfiguration `json:",inline"`
|
||||
@ -36,7 +36,7 @@ type VolumeAttributesClassApplyConfiguration struct {
|
||||
Parameters map[string]string `json:"parameters,omitempty"`
|
||||
}
|
||||
|
||||
// VolumeAttributesClass constructs an declarative configuration of the VolumeAttributesClass type for use with
|
||||
// VolumeAttributesClass constructs a declarative configuration of the VolumeAttributesClass type for use with
|
||||
// apply.
|
||||
func VolumeAttributesClass(name string) *VolumeAttributesClassApplyConfiguration {
|
||||
b := &VolumeAttributesClassApplyConfiguration{}
|
||||
@ -260,3 +260,9 @@ func (b *VolumeAttributesClassApplyConfiguration) WithParameters(entries map[str
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// GetName retrieves the value of the Name field in the declarative configuration.
|
||||
func (b *VolumeAttributesClassApplyConfiguration) GetName() *string {
|
||||
b.ensureObjectMetaApplyConfigurationExists()
|
||||
return b.Name
|
||||
}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeerror.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1alpha1/volumeerror.go
generated
vendored
@ -22,14 +22,14 @@ import (
|
||||
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
)
|
||||
|
||||
// VolumeErrorApplyConfiguration represents an declarative configuration of the VolumeError type for use
|
||||
// VolumeErrorApplyConfiguration represents a declarative configuration of the VolumeError type for use
|
||||
// with apply.
|
||||
type VolumeErrorApplyConfiguration struct {
|
||||
Time *v1.Time `json:"time,omitempty"`
|
||||
Message *string `json:"message,omitempty"`
|
||||
}
|
||||
|
||||
// VolumeErrorApplyConfiguration constructs an declarative configuration of the VolumeError type for use with
|
||||
// VolumeErrorApplyConfiguration constructs a declarative configuration of the VolumeError type for use with
|
||||
// apply.
|
||||
func VolumeError() *VolumeErrorApplyConfiguration {
|
||||
return &VolumeErrorApplyConfiguration{}
|
||||
|
Reference in New Issue
Block a user