Freigeben über


UpgradeChannel Struct

Definition

The upgrade channel for auto upgrade. The default is 'none'. For more information see setting the AKS cluster auto-upgrade channel. Serialized Name: UpgradeChannel

public readonly struct UpgradeChannel : IEquatable<Azure.ResourceManager.ContainerService.Models.UpgradeChannel>
type UpgradeChannel = struct
Public Structure UpgradeChannel
Implements IEquatable(Of UpgradeChannel)
Inheritance
UpgradeChannel
Implements

Constructors

Name Description
UpgradeChannel(String)

Initializes a new instance of UpgradeChannel.

Properties

Name Description
NodeImage

Automatically upgrade the node image to the latest version available. Consider using nodeOSUpgradeChannel instead as that allows you to configure node OS patching separate from Kubernetes version patching Serialized Name: UpgradeChannel.node-image

None

Disables auto-upgrades and keeps the cluster at its current version of Kubernetes. Serialized Name: UpgradeChannel.none

Patch

Automatically upgrade the cluster to the latest supported patch version when it becomes available while keeping the minor version the same. For example, if a cluster is running version 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster is upgraded to 1.17.9. Serialized Name: UpgradeChannel.patch

Rapid

Automatically upgrade the cluster to the latest supported patch release on the latest supported minor version. In cases where the cluster is at a version of Kubernetes that is at an N-2 minor version where N is the latest supported minor version, the cluster first upgrades to the latest supported patch version on N-1 minor version. For example, if a cluster is running version 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster first is upgraded to 1.18.6, then is upgraded to 1.19.1. Serialized Name: UpgradeChannel.rapid

Stable

Automatically upgrade the cluster to the latest supported patch release on minor version N-1, where N is the latest supported minor version. For example, if a cluster is running version 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster is upgraded to 1.18.6. Serialized Name: UpgradeChannel.stable

Methods

Name Description
Equals(UpgradeChannel)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Name Description
Equality(UpgradeChannel, UpgradeChannel)

Determines if two UpgradeChannel values are the same.

Implicit(String to UpgradeChannel)

Converts a String to a UpgradeChannel.

Inequality(UpgradeChannel, UpgradeChannel)

Determines if two UpgradeChannel values are not the same.

Applies to