mirror of
https://github.com/kubernetes/client-go.git
synced 2025-08-30 04:26:44 +00:00
Revert "tests for statefulset PersistentVolumeClaimDeletePolicy api change"
This reverts commit b259686b367ffef89310a71875834a97befc5b4b. Change-Id: I25cc8ae8a9aa77d0bc483147d3f8fb65616a2b2b Kubernetes-commit: aeb82243fc863c44c3603f0d3bf4d8910774765e
This commit is contained in:
parent
d3b97581d2
commit
2406d2208b
@ -1,52 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright The Kubernetes Authors.
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
||||||
|
|
||||||
package v1
|
|
||||||
|
|
||||||
import (
|
|
||||||
v1 "k8s.io/api/apps/v1"
|
|
||||||
)
|
|
||||||
|
|
||||||
// StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration represents an declarative configuration of the StatefulSetPersistentVolumeClaimRetentionPolicy type for use
|
|
||||||
// with apply.
|
|
||||||
type StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration struct {
|
|
||||||
WhenDeleted *v1.PersistentVolumeClaimRetentionPolicyType `json:"whenDeleted,omitempty"`
|
|
||||||
WhenScaled *v1.PersistentVolumeClaimRetentionPolicyType `json:"whenScaled,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration constructs an declarative configuration of the StatefulSetPersistentVolumeClaimRetentionPolicy type for use with
|
|
||||||
// apply.
|
|
||||||
func StatefulSetPersistentVolumeClaimRetentionPolicy() *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
return &StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithWhenDeleted sets the WhenDeleted 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 WhenDeleted field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) WithWhenDeleted(value v1.PersistentVolumeClaimRetentionPolicyType) *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
b.WhenDeleted = &value
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithWhenScaled sets the WhenScaled 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 WhenScaled field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) WithWhenScaled(value v1.PersistentVolumeClaimRetentionPolicyType) *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
b.WhenScaled = &value
|
|
||||||
return b
|
|
||||||
}
|
|
@ -36,7 +36,6 @@ type StatefulSetSpecApplyConfiguration struct {
|
|||||||
UpdateStrategy *StatefulSetUpdateStrategyApplyConfiguration `json:"updateStrategy,omitempty"`
|
UpdateStrategy *StatefulSetUpdateStrategyApplyConfiguration `json:"updateStrategy,omitempty"`
|
||||||
RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty"`
|
RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty"`
|
||||||
MinReadySeconds *int32 `json:"minReadySeconds,omitempty"`
|
MinReadySeconds *int32 `json:"minReadySeconds,omitempty"`
|
||||||
PersistentVolumeClaimRetentionPolicy *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration `json:"persistentVolumeClaimRetentionPolicy,omitempty"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// StatefulSetSpecApplyConfiguration constructs an declarative configuration of the StatefulSetSpec type for use with
|
// StatefulSetSpecApplyConfiguration constructs an declarative configuration of the StatefulSetSpec type for use with
|
||||||
@ -121,11 +120,3 @@ func (b *StatefulSetSpecApplyConfiguration) WithMinReadySeconds(value int32) *St
|
|||||||
b.MinReadySeconds = &value
|
b.MinReadySeconds = &value
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithPersistentVolumeClaimRetentionPolicy sets the PersistentVolumeClaimRetentionPolicy 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 PersistentVolumeClaimRetentionPolicy field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetSpecApplyConfiguration) WithPersistentVolumeClaimRetentionPolicy(value *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) *StatefulSetSpecApplyConfiguration {
|
|
||||||
b.PersistentVolumeClaimRetentionPolicy = value
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright The Kubernetes Authors.
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
||||||
|
|
||||||
package v1beta1
|
|
||||||
|
|
||||||
import (
|
|
||||||
v1beta1 "k8s.io/api/apps/v1beta1"
|
|
||||||
)
|
|
||||||
|
|
||||||
// StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration represents an declarative configuration of the StatefulSetPersistentVolumeClaimRetentionPolicy type for use
|
|
||||||
// with apply.
|
|
||||||
type StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration struct {
|
|
||||||
WhenDeleted *v1beta1.PersistentVolumeClaimRetentionPolicyType `json:"whenDeleted,omitempty"`
|
|
||||||
WhenScaled *v1beta1.PersistentVolumeClaimRetentionPolicyType `json:"whenScaled,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration constructs an declarative configuration of the StatefulSetPersistentVolumeClaimRetentionPolicy type for use with
|
|
||||||
// apply.
|
|
||||||
func StatefulSetPersistentVolumeClaimRetentionPolicy() *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
return &StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithWhenDeleted sets the WhenDeleted 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 WhenDeleted field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) WithWhenDeleted(value v1beta1.PersistentVolumeClaimRetentionPolicyType) *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
b.WhenDeleted = &value
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithWhenScaled sets the WhenScaled 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 WhenScaled field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) WithWhenScaled(value v1beta1.PersistentVolumeClaimRetentionPolicyType) *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
b.WhenScaled = &value
|
|
||||||
return b
|
|
||||||
}
|
|
@ -36,7 +36,6 @@ type StatefulSetSpecApplyConfiguration struct {
|
|||||||
UpdateStrategy *StatefulSetUpdateStrategyApplyConfiguration `json:"updateStrategy,omitempty"`
|
UpdateStrategy *StatefulSetUpdateStrategyApplyConfiguration `json:"updateStrategy,omitempty"`
|
||||||
RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty"`
|
RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty"`
|
||||||
MinReadySeconds *int32 `json:"minReadySeconds,omitempty"`
|
MinReadySeconds *int32 `json:"minReadySeconds,omitempty"`
|
||||||
PersistentVolumeClaimRetentionPolicy *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration `json:"persistentVolumeClaimRetentionPolicy,omitempty"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// StatefulSetSpecApplyConfiguration constructs an declarative configuration of the StatefulSetSpec type for use with
|
// StatefulSetSpecApplyConfiguration constructs an declarative configuration of the StatefulSetSpec type for use with
|
||||||
@ -121,11 +120,3 @@ func (b *StatefulSetSpecApplyConfiguration) WithMinReadySeconds(value int32) *St
|
|||||||
b.MinReadySeconds = &value
|
b.MinReadySeconds = &value
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithPersistentVolumeClaimRetentionPolicy sets the PersistentVolumeClaimRetentionPolicy 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 PersistentVolumeClaimRetentionPolicy field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetSpecApplyConfiguration) WithPersistentVolumeClaimRetentionPolicy(value *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) *StatefulSetSpecApplyConfiguration {
|
|
||||||
b.PersistentVolumeClaimRetentionPolicy = value
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright The Kubernetes Authors.
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
||||||
|
|
||||||
package v1beta2
|
|
||||||
|
|
||||||
import (
|
|
||||||
v1beta2 "k8s.io/api/apps/v1beta2"
|
|
||||||
)
|
|
||||||
|
|
||||||
// StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration represents an declarative configuration of the StatefulSetPersistentVolumeClaimRetentionPolicy type for use
|
|
||||||
// with apply.
|
|
||||||
type StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration struct {
|
|
||||||
WhenDeleted *v1beta2.PersistentVolumeClaimRetentionPolicyType `json:"whenDeleted,omitempty"`
|
|
||||||
WhenScaled *v1beta2.PersistentVolumeClaimRetentionPolicyType `json:"whenScaled,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration constructs an declarative configuration of the StatefulSetPersistentVolumeClaimRetentionPolicy type for use with
|
|
||||||
// apply.
|
|
||||||
func StatefulSetPersistentVolumeClaimRetentionPolicy() *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
return &StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithWhenDeleted sets the WhenDeleted 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 WhenDeleted field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) WithWhenDeleted(value v1beta2.PersistentVolumeClaimRetentionPolicyType) *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
b.WhenDeleted = &value
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithWhenScaled sets the WhenScaled 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 WhenScaled field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) WithWhenScaled(value v1beta2.PersistentVolumeClaimRetentionPolicyType) *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration {
|
|
||||||
b.WhenScaled = &value
|
|
||||||
return b
|
|
||||||
}
|
|
@ -36,7 +36,6 @@ type StatefulSetSpecApplyConfiguration struct {
|
|||||||
UpdateStrategy *StatefulSetUpdateStrategyApplyConfiguration `json:"updateStrategy,omitempty"`
|
UpdateStrategy *StatefulSetUpdateStrategyApplyConfiguration `json:"updateStrategy,omitempty"`
|
||||||
RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty"`
|
RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty"`
|
||||||
MinReadySeconds *int32 `json:"minReadySeconds,omitempty"`
|
MinReadySeconds *int32 `json:"minReadySeconds,omitempty"`
|
||||||
PersistentVolumeClaimRetentionPolicy *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration `json:"persistentVolumeClaimRetentionPolicy,omitempty"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// StatefulSetSpecApplyConfiguration constructs an declarative configuration of the StatefulSetSpec type for use with
|
// StatefulSetSpecApplyConfiguration constructs an declarative configuration of the StatefulSetSpec type for use with
|
||||||
@ -121,11 +120,3 @@ func (b *StatefulSetSpecApplyConfiguration) WithMinReadySeconds(value int32) *St
|
|||||||
b.MinReadySeconds = &value
|
b.MinReadySeconds = &value
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithPersistentVolumeClaimRetentionPolicy sets the PersistentVolumeClaimRetentionPolicy 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 PersistentVolumeClaimRetentionPolicy field is set to the value of the last call.
|
|
||||||
func (b *StatefulSetSpecApplyConfiguration) WithPersistentVolumeClaimRetentionPolicy(value *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration) *StatefulSetSpecApplyConfiguration {
|
|
||||||
b.PersistentVolumeClaimRetentionPolicy = value
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
|
@ -907,24 +907,12 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
default: ""
|
default: ""
|
||||||
- name: io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
|
||||||
map:
|
|
||||||
fields:
|
|
||||||
- name: whenDeleted
|
|
||||||
type:
|
|
||||||
scalar: string
|
|
||||||
- name: whenScaled
|
|
||||||
type:
|
|
||||||
scalar: string
|
|
||||||
- name: io.k8s.api.apps.v1.StatefulSetSpec
|
- name: io.k8s.api.apps.v1.StatefulSetSpec
|
||||||
map:
|
map:
|
||||||
fields:
|
fields:
|
||||||
- name: minReadySeconds
|
- name: minReadySeconds
|
||||||
type:
|
type:
|
||||||
scalar: numeric
|
scalar: numeric
|
||||||
- name: persistentVolumeClaimRetentionPolicy
|
|
||||||
type:
|
|
||||||
namedType: io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
|
||||||
- name: podManagementPolicy
|
- name: podManagementPolicy
|
||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
@ -1206,24 +1194,12 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
default: ""
|
default: ""
|
||||||
- name: io.k8s.api.apps.v1beta1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
|
||||||
map:
|
|
||||||
fields:
|
|
||||||
- name: whenDeleted
|
|
||||||
type:
|
|
||||||
scalar: string
|
|
||||||
- name: whenScaled
|
|
||||||
type:
|
|
||||||
scalar: string
|
|
||||||
- name: io.k8s.api.apps.v1beta1.StatefulSetSpec
|
- name: io.k8s.api.apps.v1beta1.StatefulSetSpec
|
||||||
map:
|
map:
|
||||||
fields:
|
fields:
|
||||||
- name: minReadySeconds
|
- name: minReadySeconds
|
||||||
type:
|
type:
|
||||||
scalar: numeric
|
scalar: numeric
|
||||||
- name: persistentVolumeClaimRetentionPolicy
|
|
||||||
type:
|
|
||||||
namedType: io.k8s.api.apps.v1beta1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
|
||||||
- name: podManagementPolicy
|
- name: podManagementPolicy
|
||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
@ -1703,24 +1679,12 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
default: ""
|
default: ""
|
||||||
- name: io.k8s.api.apps.v1beta2.StatefulSetPersistentVolumeClaimRetentionPolicy
|
|
||||||
map:
|
|
||||||
fields:
|
|
||||||
- name: whenDeleted
|
|
||||||
type:
|
|
||||||
scalar: string
|
|
||||||
- name: whenScaled
|
|
||||||
type:
|
|
||||||
scalar: string
|
|
||||||
- name: io.k8s.api.apps.v1beta2.StatefulSetSpec
|
- name: io.k8s.api.apps.v1beta2.StatefulSetSpec
|
||||||
map:
|
map:
|
||||||
fields:
|
fields:
|
||||||
- name: minReadySeconds
|
- name: minReadySeconds
|
||||||
type:
|
type:
|
||||||
scalar: numeric
|
scalar: numeric
|
||||||
- name: persistentVolumeClaimRetentionPolicy
|
|
||||||
type:
|
|
||||||
namedType: io.k8s.api.apps.v1beta2.StatefulSetPersistentVolumeClaimRetentionPolicy
|
|
||||||
- name: podManagementPolicy
|
- name: podManagementPolicy
|
||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
|
@ -185,8 +185,6 @@ func ForKind(kind schema.GroupVersionKind) interface{} {
|
|||||||
return &applyconfigurationsappsv1.StatefulSetApplyConfiguration{}
|
return &applyconfigurationsappsv1.StatefulSetApplyConfiguration{}
|
||||||
case appsv1.SchemeGroupVersion.WithKind("StatefulSetCondition"):
|
case appsv1.SchemeGroupVersion.WithKind("StatefulSetCondition"):
|
||||||
return &applyconfigurationsappsv1.StatefulSetConditionApplyConfiguration{}
|
return &applyconfigurationsappsv1.StatefulSetConditionApplyConfiguration{}
|
||||||
case appsv1.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
|
||||||
return &applyconfigurationsappsv1.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
|
||||||
case appsv1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
case appsv1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
||||||
return &applyconfigurationsappsv1.StatefulSetSpecApplyConfiguration{}
|
return &applyconfigurationsappsv1.StatefulSetSpecApplyConfiguration{}
|
||||||
case appsv1.SchemeGroupVersion.WithKind("StatefulSetStatus"):
|
case appsv1.SchemeGroupVersion.WithKind("StatefulSetStatus"):
|
||||||
@ -217,8 +215,6 @@ func ForKind(kind schema.GroupVersionKind) interface{} {
|
|||||||
return &applyconfigurationsappsv1beta1.StatefulSetApplyConfiguration{}
|
return &applyconfigurationsappsv1beta1.StatefulSetApplyConfiguration{}
|
||||||
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetCondition"):
|
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetCondition"):
|
||||||
return &applyconfigurationsappsv1beta1.StatefulSetConditionApplyConfiguration{}
|
return &applyconfigurationsappsv1beta1.StatefulSetConditionApplyConfiguration{}
|
||||||
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
|
||||||
return &applyconfigurationsappsv1beta1.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
|
||||||
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
||||||
return &applyconfigurationsappsv1beta1.StatefulSetSpecApplyConfiguration{}
|
return &applyconfigurationsappsv1beta1.StatefulSetSpecApplyConfiguration{}
|
||||||
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetStatus"):
|
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetStatus"):
|
||||||
@ -269,8 +265,6 @@ func ForKind(kind schema.GroupVersionKind) interface{} {
|
|||||||
return &appsv1beta2.StatefulSetApplyConfiguration{}
|
return &appsv1beta2.StatefulSetApplyConfiguration{}
|
||||||
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetCondition"):
|
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetCondition"):
|
||||||
return &appsv1beta2.StatefulSetConditionApplyConfiguration{}
|
return &appsv1beta2.StatefulSetConditionApplyConfiguration{}
|
||||||
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
|
||||||
return &appsv1beta2.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
|
||||||
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
||||||
return &appsv1beta2.StatefulSetSpecApplyConfiguration{}
|
return &appsv1beta2.StatefulSetSpecApplyConfiguration{}
|
||||||
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetStatus"):
|
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetStatus"):
|
||||||
|
Loading…
Reference in New Issue
Block a user