Class KubernetesClusterNodePoolState
Inherited Members
Namespace: Pulumi.Azure.ContainerService
Assembly: Pulumi.Azure.dll
Syntax
public sealed class KubernetesClusterNodePoolState : ResourceArgs
Constructors
View SourceKubernetesClusterNodePoolState()
Declaration
public KubernetesClusterNodePoolState()
Properties
View SourceAvailabilityZones
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> |
EnableAutoScaling
Whether to enable auto-scaler. Defaults to false.
Declaration
public Input<bool> EnableAutoScaling { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
Tags
A mapping of tags to assign to the resource.
Declaration
public InputMap<string> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
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> |
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> |