Show / Hide Table of Contents

Class NodeGroupAutoscalingPolicyArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NodeGroupAutoscalingPolicyArgs
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.Gcp.Compute.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class NodeGroupAutoscalingPolicyArgs : ResourceArgs

Constructors

View Source

NodeGroupAutoscalingPolicyArgs()

Declaration
public NodeGroupAutoscalingPolicyArgs()

Properties

View Source

MaxNodes

Maximum size of the node group. Set to a value less than or equal to 100 and greater than or equal to min-nodes.

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

MinNodes

Minimum size of the node group. Must be less than or equal to max-nodes. The default value is 0.

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

Mode

The autoscaling mode. Set to one of the following:

  • OFF: Disables the autoscaler.
  • ON: Enables scaling in and scaling out.
  • ONLY_SCALE_OUT: Enables only scaling out. You must use this mode if your node groups are configured to restart their hosted VMs on minimal servers.
Declaration
public Input<string> Mode { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.