update kube dependencies to v1.24.0 release
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
5
vendor/k8s.io/client-go/applyconfigurations/meta/v1/deleteoptions.go
generated
vendored
5
vendor/k8s.io/client-go/applyconfigurations/meta/v1/deleteoptions.go
generated
vendored
@@ -36,7 +36,10 @@ type DeleteOptionsApplyConfiguration struct {
|
||||
// DeleteOptionsApplyConfiguration constructs an declarative configuration of the DeleteOptions type for use with
|
||||
// apply.
|
||||
func DeleteOptions() *DeleteOptionsApplyConfiguration {
|
||||
return &DeleteOptionsApplyConfiguration{}
|
||||
b := &DeleteOptionsApplyConfiguration{}
|
||||
b.WithKind("DeleteOptions")
|
||||
b.WithAPIVersion("meta.k8s.io/v1")
|
||||
return b
|
||||
}
|
||||
|
||||
// WithKind sets the Kind field in the declarative configuration to the given value
|
||||
|
18
vendor/k8s.io/client-go/applyconfigurations/meta/v1/objectmeta.go
generated
vendored
18
vendor/k8s.io/client-go/applyconfigurations/meta/v1/objectmeta.go
generated
vendored
@@ -29,7 +29,6 @@ type ObjectMetaApplyConfiguration struct {
|
||||
Name *string `json:"name,omitempty"`
|
||||
GenerateName *string `json:"generateName,omitempty"`
|
||||
Namespace *string `json:"namespace,omitempty"`
|
||||
SelfLink *string `json:"selfLink,omitempty"`
|
||||
UID *types.UID `json:"uid,omitempty"`
|
||||
ResourceVersion *string `json:"resourceVersion,omitempty"`
|
||||
Generation *int64 `json:"generation,omitempty"`
|
||||
@@ -40,7 +39,6 @@ type ObjectMetaApplyConfiguration struct {
|
||||
Annotations map[string]string `json:"annotations,omitempty"`
|
||||
OwnerReferences []OwnerReferenceApplyConfiguration `json:"ownerReferences,omitempty"`
|
||||
Finalizers []string `json:"finalizers,omitempty"`
|
||||
ClusterName *string `json:"clusterName,omitempty"`
|
||||
}
|
||||
|
||||
// ObjectMetaApplyConfiguration constructs an declarative configuration of the ObjectMeta type for use with
|
||||
@@ -73,14 +71,6 @@ func (b *ObjectMetaApplyConfiguration) WithNamespace(value string) *ObjectMetaAp
|
||||
return b
|
||||
}
|
||||
|
||||
// WithSelfLink sets the SelfLink field in the declarative configuration to the given value
|
||||
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
||||
// If called multiple times, the SelfLink field is set to the value of the last call.
|
||||
func (b *ObjectMetaApplyConfiguration) WithSelfLink(value string) *ObjectMetaApplyConfiguration {
|
||||
b.SelfLink = &value
|
||||
return b
|
||||
}
|
||||
|
||||
// WithUID sets the UID field in the declarative configuration to the given value
|
||||
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
||||
// If called multiple times, the UID field is set to the value of the last call.
|
||||
@@ -179,11 +169,3 @@ func (b *ObjectMetaApplyConfiguration) WithFinalizers(values ...string) *ObjectM
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// WithClusterName sets the ClusterName field in the declarative configuration to the given value
|
||||
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
||||
// If called multiple times, the ClusterName field is set to the value of the last call.
|
||||
func (b *ObjectMetaApplyConfiguration) WithClusterName(value string) *ObjectMetaApplyConfiguration {
|
||||
b.ClusterName = &value
|
||||
return b
|
||||
}
|
||||
|
Reference in New Issue
Block a user