- 2.56.0 (latest)
- 2.55.0
- 2.54.0
- 2.52.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.40.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.27.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.2
- 2.4.1
- 2.3.8
public static final class NodePool.UpgradeSettings extends GeneratedMessageV3 implements NodePool.UpgradeSettingsOrBuilder
These upgrade settings control the level of parallelism and the level of disruption caused by an upgrade.
maxUnavailable controls the number of nodes that can be simultaneously unavailable.
maxSurge controls the number of additional nodes that can be added to the node pool temporarily for the time of the upgrade to increase the number of available nodes.
(maxUnavailable + maxSurge) determines the level of parallelism (how many nodes are being upgraded at the same time).
Note: upgrades inevitably introduce some disruption since workloads need to be moved from old nodes to new, upgraded ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the limits of PodDisruptionBudget, if it is configured.)
Consider a hypothetical node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the same time. This ensures that there are always at least 4 nodes available.
These upgrade settings configure the upgrade strategy for the node pool. Use strategy to switch between the strategies applied to the node pool.
If the strategy is ROLLING, use max_surge and max_unavailable to control the level of parallelism and the level of disruption caused by upgrade.
- maxSurge controls the number of additional nodes that can be added to the node pool temporarily for the time of the upgrade to increase the number of available nodes.
- maxUnavailable controls the number of nodes that can be simultaneously unavailable.
(maxUnavailable + maxSurge) determines the level of parallelism (how many nodes are being upgraded at the same time).
If the strategy is BLUE_GREEN, use blue_green_settings to configure the blue-green upgrade related settings.
- standard_rollout_policy is the default policy. The policy is used to control the way blue pool gets drained. The draining is executed in the batch mode. The batch size could be specified as either percentage of the node pool size or the number of nodes. batch_soak_duration is the soak time after each batch gets drained.
- node_pool_soak_duration is the soak time after all blue nodes are drained. After this period, the blue pool nodes will be deleted.
Protobuf type google.container.v1.NodePool.UpgradeSettings
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > NodePool.UpgradeSettingsImplements
NodePool.UpgradeSettingsOrBuilderStatic Fields
BLUE_GREEN_SETTINGS_FIELD_NUMBER
public static final int BLUE_GREEN_SETTINGS_FIELD_NUMBER
Field Value | |
---|---|
Type | Description |
int |
MAX_SURGE_FIELD_NUMBER
public static final int MAX_SURGE_FIELD_NUMBER
Field Value | |
---|---|
Type | Description |
int |
MAX_UNAVAILABLE_FIELD_NUMBER
public static final int MAX_UNAVAILABLE_FIELD_NUMBER
Field Value | |
---|---|
Type | Description |
int |
STRATEGY_FIELD_NUMBER
public static final int STRATEGY_FIELD_NUMBER
Field Value | |
---|---|
Type | Description |
int |
Static Methods
getDefaultInstance()
public static NodePool.UpgradeSettings getDefaultInstance()
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns | |
---|---|
Type | Description |
Descriptor |
newBuilder()
public static NodePool.UpgradeSettings.Builder newBuilder()
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings.Builder |
newBuilder(NodePool.UpgradeSettings prototype)
public static NodePool.UpgradeSettings.Builder newBuilder(NodePool.UpgradeSettings prototype)
Parameter | |
---|---|
Name | Description |
prototype | NodePool.UpgradeSettings |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings.Builder |
parseDelimitedFrom(InputStream input)
public static NodePool.UpgradeSettings parseDelimitedFrom(InputStream input)
Parameter | |
---|---|
Name | Description |
input | InputStream |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static NodePool.UpgradeSettings parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(byte[] data)
public static NodePool.UpgradeSettings parseFrom(byte[] data)
Parameter | |
---|---|
Name | Description |
data | byte[] |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static NodePool.UpgradeSettings parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
data | byte[] |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static NodePool.UpgradeSettings parseFrom(ByteString data)
Parameter | |
---|---|
Name | Description |
data | ByteString |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static NodePool.UpgradeSettings parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
data | ByteString |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static NodePool.UpgradeSettings parseFrom(CodedInputStream input)
Parameter | |
---|---|
Name | Description |
input | CodedInputStream |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static NodePool.UpgradeSettings parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(InputStream input)
public static NodePool.UpgradeSettings parseFrom(InputStream input)
Parameter | |
---|---|
Name | Description |
input | InputStream |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static NodePool.UpgradeSettings parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static NodePool.UpgradeSettings parseFrom(ByteBuffer data)
Parameter | |
---|---|
Name | Description |
data | ByteBuffer |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static NodePool.UpgradeSettings parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
data | ByteBuffer |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<NodePool.UpgradeSettings> parser()
Returns | |
---|---|
Type | Description |
Parser<UpgradeSettings> |
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter | |
---|---|
Name | Description |
obj | Object |
Returns | |
---|---|
Type | Description |
boolean |
getBlueGreenSettings()
public BlueGreenSettings getBlueGreenSettings()
Settings for blue-green upgrade strategy.
optional .google.container.v1.BlueGreenSettings blue_green_settings = 4;
Returns | |
---|---|
Type | Description |
BlueGreenSettings | The blueGreenSettings. |
getBlueGreenSettingsOrBuilder()
public BlueGreenSettingsOrBuilder getBlueGreenSettingsOrBuilder()
Settings for blue-green upgrade strategy.
optional .google.container.v1.BlueGreenSettings blue_green_settings = 4;
Returns | |
---|---|
Type | Description |
BlueGreenSettingsOrBuilder |
getDefaultInstanceForType()
public NodePool.UpgradeSettings getDefaultInstanceForType()
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings |
getMaxSurge()
public int getMaxSurge()
The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process.
int32 max_surge = 1;
Returns | |
---|---|
Type | Description |
int | The maxSurge. |
getMaxUnavailable()
public int getMaxUnavailable()
The maximum number of nodes that can be simultaneously unavailable during the upgrade process. A node is considered available if its status is Ready.
int32 max_unavailable = 2;
Returns | |
---|---|
Type | Description |
int | The maxUnavailable. |
getParserForType()
public Parser<NodePool.UpgradeSettings> getParserForType()
Returns | |
---|---|
Type | Description |
Parser<UpgradeSettings> |
getSerializedSize()
public int getSerializedSize()
Returns | |
---|---|
Type | Description |
int |
getStrategy()
public NodePoolUpdateStrategy getStrategy()
Update strategy of the node pool.
optional .google.container.v1.NodePoolUpdateStrategy strategy = 3;
Returns | |
---|---|
Type | Description |
NodePoolUpdateStrategy | The strategy. |
getStrategyValue()
public int getStrategyValue()
Update strategy of the node pool.
optional .google.container.v1.NodePoolUpdateStrategy strategy = 3;
Returns | |
---|---|
Type | Description |
int | The enum numeric value on the wire for strategy. |
hasBlueGreenSettings()
public boolean hasBlueGreenSettings()
Settings for blue-green upgrade strategy.
optional .google.container.v1.BlueGreenSettings blue_green_settings = 4;
Returns | |
---|---|
Type | Description |
boolean | Whether the blueGreenSettings field is set. |
hasStrategy()
public boolean hasStrategy()
Update strategy of the node pool.
optional .google.container.v1.NodePoolUpdateStrategy strategy = 3;
Returns | |
---|---|
Type | Description |
boolean | Whether the strategy field is set. |
hashCode()
public int hashCode()
Returns | |
---|---|
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns | |
---|---|
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Returns | |
---|---|
Type | Description |
boolean |
newBuilderForType()
public NodePool.UpgradeSettings.Builder newBuilderForType()
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected NodePool.UpgradeSettings.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter | |
---|---|
Name | Description |
parent | BuilderParent |
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter | |
---|---|
Name | Description |
unused | UnusedPrivateParameter |
Returns | |
---|---|
Type | Description |
Object |
toBuilder()
public NodePool.UpgradeSettings.Builder toBuilder()
Returns | |
---|---|
Type | Description |
NodePool.UpgradeSettings.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Parameter | |
---|---|
Name | Description |
output | CodedOutputStream |
Exceptions | |
---|---|
Type | Description |
IOException |