Show / Hide Table of Contents

Class KubernetesClusterNodePoolArgs

Inheritance
System.Object
InputArgs
ResourceArgs
KubernetesClusterNodePoolArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.ContainerService
Assembly: Pulumi.Azure.dll
Syntax
public sealed class KubernetesClusterNodePoolArgs : ResourceArgs

Constructors

View Source

KubernetesClusterNodePoolArgs()

Declaration
public KubernetesClusterNodePoolArgs()

Properties

View Source

AvailabilityZones

A list of Availability Zones where the Nodes in this Node Pool should be created in.

Declaration
public InputList<string> AvailabilityZones { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

EnableAutoScaling

Whether to enable auto-scaler. Defaults to false.

Declaration
public Input<bool> EnableAutoScaling { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

EnableNodePublicIp

Should each node have a Public IP Address? Defaults to false.

Declaration
public Input<bool> EnableNodePublicIp { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

KubernetesClusterId

The ID of the Kubernetes Cluster where this Node Pool should exist. Changing this forces a new resource to be created.

Declaration
public Input<string> KubernetesClusterId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MaxCount

The maximum number of nodes which should exist within this Node Pool. Valid values are between 1 and 100 and must be greater than or equal to min_count.

Declaration
public Input<int> MaxCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MaxPods

The maximum number of pods that can run on each agent. Changing this forces a new resource to be created.

Declaration
public Input<int> MaxPods { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MinCount

The minimum number of nodes which should exist within this Node Pool. Valid values are between 1 and 100 and must be less than or equal to max_count.

Declaration
public Input<int> MinCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

The name of the Node Pool which should be created within the Kubernetes Cluster. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NodeCount

The initial number of nodes which should exist within this Node Pool. Valid values are between 1 and 100 and must be a value in the range min_count - max_count.

Declaration
public Input<int> NodeCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

NodeLabels

A map of Kubernetes labels which should be applied to nodes in this Node Pool.

Declaration
public InputMap<string> NodeLabels { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

NodeTaints

A list of Kubernetes taints which should be applied to nodes in the agent pool (e.g key=value:NoSchedule).

Declaration
public InputList<string> NodeTaints { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

OsDiskSizeGb

The Agent Operating System disk size in GB. Changing this forces a new resource to be created.

Declaration
public Input<int> OsDiskSizeGb { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

OsType

The Operating System which should be used for this Node Pool. Changing this forces a new resource to be created. Possible values are Linux and Windows. Defaults to Linux.

Declaration
public Input<string> OsType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

VmSize

The SKU which should be used for the Virtual Machines used in this Node Pool. Changing this forces a new resource to be created.

Declaration
public Input<string> VmSize { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VnetSubnetId

The ID of the Subnet where this Node Pool should exist.

Declaration
public Input<string> VnetSubnetId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.