65 lines
3.3 KiB
Go
65 lines
3.3 KiB
Go
/*
|
|
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 (
|
|
intstr "k8s.io/apimachinery/pkg/util/intstr"
|
|
)
|
|
|
|
// RollingUpdateStatefulSetStrategyApplyConfiguration represents a declarative configuration of the RollingUpdateStatefulSetStrategy type for use
|
|
// with apply.
|
|
//
|
|
// RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.
|
|
type RollingUpdateStatefulSetStrategyApplyConfiguration struct {
|
|
// Partition indicates the ordinal at which the StatefulSet should be partitioned
|
|
// for updates. During a rolling update, all pods from ordinal Replicas-1 to
|
|
// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
|
|
// This is helpful in being able to do a canary based deployment. The default value is 0.
|
|
Partition *int32 `json:"partition,omitempty"`
|
|
// The maximum number of pods that can be unavailable during the update.
|
|
// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
|
|
// Absolute number is calculated from percentage by rounding up. This can not be 0.
|
|
// Defaults to 1. This field is beta-level and is enabled by default. The field applies to all pods in the range 0 to
|
|
// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
|
|
// will be counted towards MaxUnavailable.
|
|
// This setting might not be effective for the OrderedReady podManagementPolicy. That policy ensures pods are created and become ready one at a time.
|
|
MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty"`
|
|
}
|
|
|
|
// RollingUpdateStatefulSetStrategyApplyConfiguration constructs a declarative configuration of the RollingUpdateStatefulSetStrategy type for use with
|
|
// apply.
|
|
func RollingUpdateStatefulSetStrategy() *RollingUpdateStatefulSetStrategyApplyConfiguration {
|
|
return &RollingUpdateStatefulSetStrategyApplyConfiguration{}
|
|
}
|
|
|
|
// WithPartition sets the Partition 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 Partition field is set to the value of the last call.
|
|
func (b *RollingUpdateStatefulSetStrategyApplyConfiguration) WithPartition(value int32) *RollingUpdateStatefulSetStrategyApplyConfiguration {
|
|
b.Partition = &value
|
|
return b
|
|
}
|
|
|
|
// WithMaxUnavailable sets the MaxUnavailable 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 MaxUnavailable field is set to the value of the last call.
|
|
func (b *RollingUpdateStatefulSetStrategyApplyConfiguration) WithMaxUnavailable(value intstr.IntOrString) *RollingUpdateStatefulSetStrategyApplyConfiguration {
|
|
b.MaxUnavailable = &value
|
|
return b
|
|
}
|