mirror of
https://github.com/kubernetes/client-go.git
synced 2025-06-25 06:31:35 +00:00
tests for statefulset PersistentVolumeClaimDeletePolicy api change
Kubernetes-commit: f1d5d4df5a786a3387e1f39f59941f2c6fb4299d
This commit is contained in:
parent
2a70348ebb
commit
475f2c775f
@ -0,0 +1,52 @@
|
|||||||
|
/*
|
||||||
|
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,6 +36,7 @@ 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
|
||||||
@ -120,3 +121,11 @@ 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
|
||||||
|
}
|
||||||
|
@ -0,0 +1,52 @@
|
|||||||
|
/*
|
||||||
|
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,6 +36,7 @@ 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
|
||||||
@ -120,3 +121,11 @@ 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
|
||||||
|
}
|
||||||
|
@ -0,0 +1,52 @@
|
|||||||
|
/*
|
||||||
|
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,6 +36,7 @@ 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
|
||||||
@ -120,3 +121,11 @@ 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,12 +907,24 @@ 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
|
||||||
@ -1195,12 +1207,24 @@ 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
|
||||||
@ -1681,12 +1705,24 @@ 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
|
||||||
|
@ -189,6 +189,8 @@ 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"):
|
||||||
@ -219,6 +221,8 @@ 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,6 +273,8 @@ 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