mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 02:33:34 +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/v1/csidriver.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csidriver.go
generated
vendored
@ -27,7 +27,7 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
||||
)
|
||||
|
||||
// CSIDriverApplyConfiguration represents an declarative configuration of the CSIDriver type for use
|
||||
// CSIDriverApplyConfiguration represents a declarative configuration of the CSIDriver type for use
|
||||
// with apply.
|
||||
type CSIDriverApplyConfiguration struct {
|
||||
v1.TypeMetaApplyConfiguration `json:",inline"`
|
||||
@ -35,7 +35,7 @@ type CSIDriverApplyConfiguration struct {
|
||||
Spec *CSIDriverSpecApplyConfiguration `json:"spec,omitempty"`
|
||||
}
|
||||
|
||||
// CSIDriver constructs an declarative configuration of the CSIDriver type for use with
|
||||
// CSIDriver constructs a declarative configuration of the CSIDriver type for use with
|
||||
// apply.
|
||||
func CSIDriver(name string) *CSIDriverApplyConfiguration {
|
||||
b := &CSIDriverApplyConfiguration{}
|
||||
@ -245,3 +245,9 @@ func (b *CSIDriverApplyConfiguration) WithSpec(value *CSIDriverSpecApplyConfigur
|
||||
b.Spec = value
|
||||
return b
|
||||
}
|
||||
|
||||
// GetName retrieves the value of the Name field in the declarative configuration.
|
||||
func (b *CSIDriverApplyConfiguration) GetName() *string {
|
||||
b.ensureObjectMetaApplyConfigurationExists()
|
||||
return b.Name
|
||||
}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csidriverspec.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csidriverspec.go
generated
vendored
@ -22,7 +22,7 @@ import (
|
||||
v1 "k8s.io/api/storage/v1"
|
||||
)
|
||||
|
||||
// CSIDriverSpecApplyConfiguration represents an declarative configuration of the CSIDriverSpec type for use
|
||||
// CSIDriverSpecApplyConfiguration represents a declarative configuration of the CSIDriverSpec type for use
|
||||
// with apply.
|
||||
type CSIDriverSpecApplyConfiguration struct {
|
||||
AttachRequired *bool `json:"attachRequired,omitempty"`
|
||||
@ -35,7 +35,7 @@ type CSIDriverSpecApplyConfiguration struct {
|
||||
SELinuxMount *bool `json:"seLinuxMount,omitempty"`
|
||||
}
|
||||
|
||||
// CSIDriverSpecApplyConfiguration constructs an declarative configuration of the CSIDriverSpec type for use with
|
||||
// CSIDriverSpecApplyConfiguration constructs a declarative configuration of the CSIDriverSpec type for use with
|
||||
// apply.
|
||||
func CSIDriverSpec() *CSIDriverSpecApplyConfiguration {
|
||||
return &CSIDriverSpecApplyConfiguration{}
|
||||
|
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csinode.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csinode.go
generated
vendored
@ -27,7 +27,7 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
||||
)
|
||||
|
||||
// CSINodeApplyConfiguration represents an declarative configuration of the CSINode type for use
|
||||
// CSINodeApplyConfiguration represents a declarative configuration of the CSINode type for use
|
||||
// with apply.
|
||||
type CSINodeApplyConfiguration struct {
|
||||
v1.TypeMetaApplyConfiguration `json:",inline"`
|
||||
@ -35,7 +35,7 @@ type CSINodeApplyConfiguration struct {
|
||||
Spec *CSINodeSpecApplyConfiguration `json:"spec,omitempty"`
|
||||
}
|
||||
|
||||
// CSINode constructs an declarative configuration of the CSINode type for use with
|
||||
// CSINode constructs a declarative configuration of the CSINode type for use with
|
||||
// apply.
|
||||
func CSINode(name string) *CSINodeApplyConfiguration {
|
||||
b := &CSINodeApplyConfiguration{}
|
||||
@ -245,3 +245,9 @@ func (b *CSINodeApplyConfiguration) WithSpec(value *CSINodeSpecApplyConfiguratio
|
||||
b.Spec = value
|
||||
return b
|
||||
}
|
||||
|
||||
// GetName retrieves the value of the Name field in the declarative configuration.
|
||||
func (b *CSINodeApplyConfiguration) GetName() *string {
|
||||
b.ensureObjectMetaApplyConfigurationExists()
|
||||
return b.Name
|
||||
}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csinodedriver.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csinodedriver.go
generated
vendored
@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1
|
||||
|
||||
// CSINodeDriverApplyConfiguration represents an declarative configuration of the CSINodeDriver type for use
|
||||
// CSINodeDriverApplyConfiguration represents a declarative configuration of the CSINodeDriver type for use
|
||||
// with apply.
|
||||
type CSINodeDriverApplyConfiguration struct {
|
||||
Name *string `json:"name,omitempty"`
|
||||
@ -27,7 +27,7 @@ type CSINodeDriverApplyConfiguration struct {
|
||||
Allocatable *VolumeNodeResourcesApplyConfiguration `json:"allocatable,omitempty"`
|
||||
}
|
||||
|
||||
// CSINodeDriverApplyConfiguration constructs an declarative configuration of the CSINodeDriver type for use with
|
||||
// CSINodeDriverApplyConfiguration constructs a declarative configuration of the CSINodeDriver type for use with
|
||||
// apply.
|
||||
func CSINodeDriver() *CSINodeDriverApplyConfiguration {
|
||||
return &CSINodeDriverApplyConfiguration{}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csinodespec.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csinodespec.go
generated
vendored
@ -18,13 +18,13 @@ limitations under the License.
|
||||
|
||||
package v1
|
||||
|
||||
// CSINodeSpecApplyConfiguration represents an declarative configuration of the CSINodeSpec type for use
|
||||
// CSINodeSpecApplyConfiguration represents a declarative configuration of the CSINodeSpec type for use
|
||||
// with apply.
|
||||
type CSINodeSpecApplyConfiguration struct {
|
||||
Drivers []CSINodeDriverApplyConfiguration `json:"drivers,omitempty"`
|
||||
}
|
||||
|
||||
// CSINodeSpecApplyConfiguration constructs an declarative configuration of the CSINodeSpec type for use with
|
||||
// CSINodeSpecApplyConfiguration constructs a declarative configuration of the CSINodeSpec type for use with
|
||||
// apply.
|
||||
func CSINodeSpec() *CSINodeSpecApplyConfiguration {
|
||||
return &CSINodeSpecApplyConfiguration{}
|
||||
|
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/csistoragecapacity.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/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/v1/storageclass.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/storageclass.go
generated
vendored
@ -29,7 +29,7 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
||||
)
|
||||
|
||||
// StorageClassApplyConfiguration represents an declarative configuration of the StorageClass type for use
|
||||
// StorageClassApplyConfiguration represents a declarative configuration of the StorageClass type for use
|
||||
// with apply.
|
||||
type StorageClassApplyConfiguration struct {
|
||||
v1.TypeMetaApplyConfiguration `json:",inline"`
|
||||
@ -43,7 +43,7 @@ type StorageClassApplyConfiguration struct {
|
||||
AllowedTopologies []applyconfigurationscorev1.TopologySelectorTermApplyConfiguration `json:"allowedTopologies,omitempty"`
|
||||
}
|
||||
|
||||
// StorageClass constructs an declarative configuration of the StorageClass type for use with
|
||||
// StorageClass constructs a declarative configuration of the StorageClass type for use with
|
||||
// apply.
|
||||
func StorageClass(name string) *StorageClassApplyConfiguration {
|
||||
b := &StorageClassApplyConfiguration{}
|
||||
@ -314,3 +314,9 @@ func (b *StorageClassApplyConfiguration) WithAllowedTopologies(values ...*applyc
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// GetName retrieves the value of the Name field in the declarative configuration.
|
||||
func (b *StorageClassApplyConfiguration) GetName() *string {
|
||||
b.ensureObjectMetaApplyConfigurationExists()
|
||||
return b.Name
|
||||
}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/tokenrequest.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/tokenrequest.go
generated
vendored
@ -18,14 +18,14 @@ limitations under the License.
|
||||
|
||||
package v1
|
||||
|
||||
// TokenRequestApplyConfiguration represents an declarative configuration of the TokenRequest type for use
|
||||
// TokenRequestApplyConfiguration represents a declarative configuration of the TokenRequest type for use
|
||||
// with apply.
|
||||
type TokenRequestApplyConfiguration struct {
|
||||
Audience *string `json:"audience,omitempty"`
|
||||
ExpirationSeconds *int64 `json:"expirationSeconds,omitempty"`
|
||||
}
|
||||
|
||||
// TokenRequestApplyConfiguration constructs an declarative configuration of the TokenRequest type for use with
|
||||
// TokenRequestApplyConfiguration constructs a declarative configuration of the TokenRequest type for use with
|
||||
// apply.
|
||||
func TokenRequest() *TokenRequestApplyConfiguration {
|
||||
return &TokenRequestApplyConfiguration{}
|
||||
|
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumeattachment.go
generated
vendored
10
vendor/k8s.io/client-go/applyconfigurations/storage/v1/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
|
||||
}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumeattachmentsource.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumeattachmentsource.go
generated
vendored
@ -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/v1/volumeattachmentspec.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumeattachmentspec.go
generated
vendored
@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1
|
||||
|
||||
// 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{}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumeattachmentstatus.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumeattachmentstatus.go
generated
vendored
@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1
|
||||
|
||||
// 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{}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumeerror.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/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{}
|
||||
|
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumenoderesources.go
generated
vendored
4
vendor/k8s.io/client-go/applyconfigurations/storage/v1/volumenoderesources.go
generated
vendored
@ -18,13 +18,13 @@ limitations under the License.
|
||||
|
||||
package v1
|
||||
|
||||
// VolumeNodeResourcesApplyConfiguration represents an declarative configuration of the VolumeNodeResources type for use
|
||||
// VolumeNodeResourcesApplyConfiguration represents a declarative configuration of the VolumeNodeResources type for use
|
||||
// with apply.
|
||||
type VolumeNodeResourcesApplyConfiguration struct {
|
||||
Count *int32 `json:"count,omitempty"`
|
||||
}
|
||||
|
||||
// VolumeNodeResourcesApplyConfiguration constructs an declarative configuration of the VolumeNodeResources type for use with
|
||||
// VolumeNodeResourcesApplyConfiguration constructs a declarative configuration of the VolumeNodeResources type for use with
|
||||
// apply.
|
||||
func VolumeNodeResources() *VolumeNodeResourcesApplyConfiguration {
|
||||
return &VolumeNodeResourcesApplyConfiguration{}
|
||||
|
Reference in New Issue
Block a user