AksNodePoolConfig Constructors
RecordConstructors1 member
Configuration for an AKS node pool.
Constructor(string, string, int, int, AksNodePoolMode)Section titled Constructor(string, string, int, int, AksNodePoolMode) Configuration for an AKS node pool.
public record AksNodePoolConfig{ public AksNodePoolConfig( string Name, string VmSize, int MinCount, int MaxCount, AksNodePoolMode Mode) { // ... }}Parameters
NamestringThe name of the node pool.VmSizestringThe VM size for nodes in the pool.MinCountintThe minimum number of nodes.MaxCountintThe maximum number of nodes.ModeAksNodePoolModeThe mode of the node pool.