mirror of
https://github.com/kubernetes/client-go.git
synced 2025-07-02 01:42:19 +00:00
Adding implementation of KEP-3335, StatefulSetSlice
Kubernetes-commit: 7b3d77a41af88083ba14ffe2cc8ad3a66010c43b
This commit is contained in:
parent
1c7a870d4f
commit
eed251634d
39
applyconfigurations/apps/v1/statefulsetordinals.go
Normal file
39
applyconfigurations/apps/v1/statefulsetordinals.go
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
|
||||||
|
// StatefulSetOrdinalsApplyConfiguration represents an declarative configuration of the StatefulSetOrdinals type for use
|
||||||
|
// with apply.
|
||||||
|
type StatefulSetOrdinalsApplyConfiguration struct {
|
||||||
|
Start *int32 `json:"start,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// StatefulSetOrdinalsApplyConfiguration constructs an declarative configuration of the StatefulSetOrdinals type for use with
|
||||||
|
// apply.
|
||||||
|
func StatefulSetOrdinals() *StatefulSetOrdinalsApplyConfiguration {
|
||||||
|
return &StatefulSetOrdinalsApplyConfiguration{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithStart sets the Start 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 Start field is set to the value of the last call.
|
||||||
|
func (b *StatefulSetOrdinalsApplyConfiguration) WithStart(value int32) *StatefulSetOrdinalsApplyConfiguration {
|
||||||
|
b.Start = &value
|
||||||
|
return b
|
||||||
|
}
|
@ -37,6 +37,7 @@ type StatefulSetSpecApplyConfiguration struct {
|
|||||||
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"`
|
PersistentVolumeClaimRetentionPolicy *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration `json:"persistentVolumeClaimRetentionPolicy,omitempty"`
|
||||||
|
Ordinals *StatefulSetOrdinalsApplyConfiguration `json:"ordinals,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
|
||||||
@ -129,3 +130,11 @@ func (b *StatefulSetSpecApplyConfiguration) WithPersistentVolumeClaimRetentionPo
|
|||||||
b.PersistentVolumeClaimRetentionPolicy = value
|
b.PersistentVolumeClaimRetentionPolicy = value
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithOrdinals sets the Ordinals 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 Ordinals field is set to the value of the last call.
|
||||||
|
func (b *StatefulSetSpecApplyConfiguration) WithOrdinals(value *StatefulSetOrdinalsApplyConfiguration) *StatefulSetSpecApplyConfiguration {
|
||||||
|
b.Ordinals = value
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
39
applyconfigurations/apps/v1beta1/statefulsetordinals.go
Normal file
39
applyconfigurations/apps/v1beta1/statefulsetordinals.go
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
|
||||||
|
// StatefulSetOrdinalsApplyConfiguration represents an declarative configuration of the StatefulSetOrdinals type for use
|
||||||
|
// with apply.
|
||||||
|
type StatefulSetOrdinalsApplyConfiguration struct {
|
||||||
|
Start *int32 `json:"start,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// StatefulSetOrdinalsApplyConfiguration constructs an declarative configuration of the StatefulSetOrdinals type for use with
|
||||||
|
// apply.
|
||||||
|
func StatefulSetOrdinals() *StatefulSetOrdinalsApplyConfiguration {
|
||||||
|
return &StatefulSetOrdinalsApplyConfiguration{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithStart sets the Start 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 Start field is set to the value of the last call.
|
||||||
|
func (b *StatefulSetOrdinalsApplyConfiguration) WithStart(value int32) *StatefulSetOrdinalsApplyConfiguration {
|
||||||
|
b.Start = &value
|
||||||
|
return b
|
||||||
|
}
|
@ -37,6 +37,7 @@ type StatefulSetSpecApplyConfiguration struct {
|
|||||||
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"`
|
PersistentVolumeClaimRetentionPolicy *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration `json:"persistentVolumeClaimRetentionPolicy,omitempty"`
|
||||||
|
Ordinals *StatefulSetOrdinalsApplyConfiguration `json:"ordinals,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
|
||||||
@ -129,3 +130,11 @@ func (b *StatefulSetSpecApplyConfiguration) WithPersistentVolumeClaimRetentionPo
|
|||||||
b.PersistentVolumeClaimRetentionPolicy = value
|
b.PersistentVolumeClaimRetentionPolicy = value
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithOrdinals sets the Ordinals 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 Ordinals field is set to the value of the last call.
|
||||||
|
func (b *StatefulSetSpecApplyConfiguration) WithOrdinals(value *StatefulSetOrdinalsApplyConfiguration) *StatefulSetSpecApplyConfiguration {
|
||||||
|
b.Ordinals = value
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
39
applyconfigurations/apps/v1beta2/statefulsetordinals.go
Normal file
39
applyconfigurations/apps/v1beta2/statefulsetordinals.go
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
|
||||||
|
// StatefulSetOrdinalsApplyConfiguration represents an declarative configuration of the StatefulSetOrdinals type for use
|
||||||
|
// with apply.
|
||||||
|
type StatefulSetOrdinalsApplyConfiguration struct {
|
||||||
|
Start *int32 `json:"start,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// StatefulSetOrdinalsApplyConfiguration constructs an declarative configuration of the StatefulSetOrdinals type for use with
|
||||||
|
// apply.
|
||||||
|
func StatefulSetOrdinals() *StatefulSetOrdinalsApplyConfiguration {
|
||||||
|
return &StatefulSetOrdinalsApplyConfiguration{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithStart sets the Start 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 Start field is set to the value of the last call.
|
||||||
|
func (b *StatefulSetOrdinalsApplyConfiguration) WithStart(value int32) *StatefulSetOrdinalsApplyConfiguration {
|
||||||
|
b.Start = &value
|
||||||
|
return b
|
||||||
|
}
|
@ -37,6 +37,7 @@ type StatefulSetSpecApplyConfiguration struct {
|
|||||||
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"`
|
PersistentVolumeClaimRetentionPolicy *StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration `json:"persistentVolumeClaimRetentionPolicy,omitempty"`
|
||||||
|
Ordinals *StatefulSetOrdinalsApplyConfiguration `json:"ordinals,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
|
||||||
@ -129,3 +130,11 @@ func (b *StatefulSetSpecApplyConfiguration) WithPersistentVolumeClaimRetentionPo
|
|||||||
b.PersistentVolumeClaimRetentionPolicy = value
|
b.PersistentVolumeClaimRetentionPolicy = value
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithOrdinals sets the Ordinals 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 Ordinals field is set to the value of the last call.
|
||||||
|
func (b *StatefulSetSpecApplyConfiguration) WithOrdinals(value *StatefulSetOrdinalsApplyConfiguration) *StatefulSetSpecApplyConfiguration {
|
||||||
|
b.Ordinals = value
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
@ -1039,6 +1039,13 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
default: ""
|
default: ""
|
||||||
|
- name: io.k8s.api.apps.v1.StatefulSetOrdinals
|
||||||
|
map:
|
||||||
|
fields:
|
||||||
|
- name: start
|
||||||
|
type:
|
||||||
|
scalar: numeric
|
||||||
|
default: 0
|
||||||
- name: io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
- name: io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
||||||
map:
|
map:
|
||||||
fields:
|
fields:
|
||||||
@ -1054,6 +1061,9 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
- name: minReadySeconds
|
- name: minReadySeconds
|
||||||
type:
|
type:
|
||||||
scalar: numeric
|
scalar: numeric
|
||||||
|
- name: ordinals
|
||||||
|
type:
|
||||||
|
namedType: io.k8s.api.apps.v1.StatefulSetOrdinals
|
||||||
- name: persistentVolumeClaimRetentionPolicy
|
- name: persistentVolumeClaimRetentionPolicy
|
||||||
type:
|
type:
|
||||||
namedType: io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
namedType: io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
||||||
@ -1342,6 +1352,13 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
default: ""
|
default: ""
|
||||||
|
- name: io.k8s.api.apps.v1beta1.StatefulSetOrdinals
|
||||||
|
map:
|
||||||
|
fields:
|
||||||
|
- name: start
|
||||||
|
type:
|
||||||
|
scalar: numeric
|
||||||
|
default: 0
|
||||||
- name: io.k8s.api.apps.v1beta1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
- name: io.k8s.api.apps.v1beta1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
||||||
map:
|
map:
|
||||||
fields:
|
fields:
|
||||||
@ -1357,6 +1374,9 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
- name: minReadySeconds
|
- name: minReadySeconds
|
||||||
type:
|
type:
|
||||||
scalar: numeric
|
scalar: numeric
|
||||||
|
- name: ordinals
|
||||||
|
type:
|
||||||
|
namedType: io.k8s.api.apps.v1beta1.StatefulSetOrdinals
|
||||||
- name: persistentVolumeClaimRetentionPolicy
|
- name: persistentVolumeClaimRetentionPolicy
|
||||||
type:
|
type:
|
||||||
namedType: io.k8s.api.apps.v1beta1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
namedType: io.k8s.api.apps.v1beta1.StatefulSetPersistentVolumeClaimRetentionPolicy
|
||||||
@ -1843,6 +1863,13 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
type:
|
type:
|
||||||
scalar: string
|
scalar: string
|
||||||
default: ""
|
default: ""
|
||||||
|
- name: io.k8s.api.apps.v1beta2.StatefulSetOrdinals
|
||||||
|
map:
|
||||||
|
fields:
|
||||||
|
- name: start
|
||||||
|
type:
|
||||||
|
scalar: numeric
|
||||||
|
default: 0
|
||||||
- name: io.k8s.api.apps.v1beta2.StatefulSetPersistentVolumeClaimRetentionPolicy
|
- name: io.k8s.api.apps.v1beta2.StatefulSetPersistentVolumeClaimRetentionPolicy
|
||||||
map:
|
map:
|
||||||
fields:
|
fields:
|
||||||
@ -1858,6 +1885,9 @@ var schemaYAML = typed.YAMLObject(`types:
|
|||||||
- name: minReadySeconds
|
- name: minReadySeconds
|
||||||
type:
|
type:
|
||||||
scalar: numeric
|
scalar: numeric
|
||||||
|
- name: ordinals
|
||||||
|
type:
|
||||||
|
namedType: io.k8s.api.apps.v1beta2.StatefulSetOrdinals
|
||||||
- name: persistentVolumeClaimRetentionPolicy
|
- name: persistentVolumeClaimRetentionPolicy
|
||||||
type:
|
type:
|
||||||
namedType: io.k8s.api.apps.v1beta2.StatefulSetPersistentVolumeClaimRetentionPolicy
|
namedType: io.k8s.api.apps.v1beta2.StatefulSetPersistentVolumeClaimRetentionPolicy
|
||||||
|
@ -211,6 +211,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("StatefulSetOrdinals"):
|
||||||
|
return &applyconfigurationsappsv1.StatefulSetOrdinalsApplyConfiguration{}
|
||||||
case appsv1.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
case appsv1.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
||||||
return &applyconfigurationsappsv1.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
return &applyconfigurationsappsv1.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
||||||
case appsv1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
case appsv1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
||||||
@ -243,6 +245,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("StatefulSetOrdinals"):
|
||||||
|
return &applyconfigurationsappsv1beta1.StatefulSetOrdinalsApplyConfiguration{}
|
||||||
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
||||||
return &applyconfigurationsappsv1beta1.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
return &applyconfigurationsappsv1beta1.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
||||||
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
case appsv1beta1.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
||||||
@ -295,6 +299,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("StatefulSetOrdinals"):
|
||||||
|
return &appsv1beta2.StatefulSetOrdinalsApplyConfiguration{}
|
||||||
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetPersistentVolumeClaimRetentionPolicy"):
|
||||||
return &appsv1beta2.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
return &appsv1beta2.StatefulSetPersistentVolumeClaimRetentionPolicyApplyConfiguration{}
|
||||||
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
case v1beta2.SchemeGroupVersion.WithKind("StatefulSetSpec"):
|
||||||
|
Loading…
Reference in New Issue
Block a user