mirror of
https://github.com/kubernetes/client-go.git
synced 2026-02-22 08:03:18 +00:00
76 lines
3.6 KiB
Go
76 lines
3.6 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 v1beta1
|
|
|
|
import (
|
|
intstr "k8s.io/apimachinery/pkg/util/intstr"
|
|
)
|
|
|
|
// RollingUpdateDeploymentApplyConfiguration represents a declarative configuration of the RollingUpdateDeployment type for use
|
|
// with apply.
|
|
//
|
|
// Spec to control the desired behavior of rolling update.
|
|
type RollingUpdateDeploymentApplyConfiguration struct {
|
|
// 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 down.
|
|
// This can not be 0 if MaxSurge is 0.
|
|
// Defaults to 25%.
|
|
// Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
|
|
// immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
|
|
// can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
|
|
// that the total number of pods available at all times during the update is at
|
|
// least 70% of desired pods.
|
|
MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty"`
|
|
// The maximum number of pods that can be scheduled above the desired number of
|
|
// pods.
|
|
// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
|
|
// This can not be 0 if MaxUnavailable is 0.
|
|
// Absolute number is calculated from percentage by rounding up.
|
|
// Defaults to 25%.
|
|
// Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
|
|
// the rolling update starts, such that the total number of old and new pods do not exceed
|
|
// 130% of desired pods. Once old pods have been killed,
|
|
// new ReplicaSet can be scaled up further, ensuring that total number of pods running
|
|
// at any time during the update is at most 130% of desired pods.
|
|
MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty"`
|
|
}
|
|
|
|
// RollingUpdateDeploymentApplyConfiguration constructs a declarative configuration of the RollingUpdateDeployment type for use with
|
|
// apply.
|
|
func RollingUpdateDeployment() *RollingUpdateDeploymentApplyConfiguration {
|
|
return &RollingUpdateDeploymentApplyConfiguration{}
|
|
}
|
|
|
|
// 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 *RollingUpdateDeploymentApplyConfiguration) WithMaxUnavailable(value intstr.IntOrString) *RollingUpdateDeploymentApplyConfiguration {
|
|
b.MaxUnavailable = &value
|
|
return b
|
|
}
|
|
|
|
// WithMaxSurge sets the MaxSurge 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 MaxSurge field is set to the value of the last call.
|
|
func (b *RollingUpdateDeploymentApplyConfiguration) WithMaxSurge(value intstr.IntOrString) *RollingUpdateDeploymentApplyConfiguration {
|
|
b.MaxSurge = &value
|
|
return b
|
|
}
|