Show / Hide Table of Contents

Class NodeGroup

Represents a NodeGroup resource to manage a group of sole-tenant nodes.

To get more information about NodeGroup, see:

  • API documentation
  • How-to Guides
  • Sole-Tenant Nodes

Warning: Due to limitations of the API, this provider cannot update the number of nodes in a node group and changes to node group size either through provider config or through external changes will cause the provider to delete and recreate the node group.

Example Usage - Node Group Basic

using Pulumi;
using Gcp = Pulumi.Gcp;

class MyStack : Stack
{
public MyStack()
{
    var central1a = Output.Create(Gcp.Compute.GetNodeTypes.InvokeAsync(new Gcp.Compute.GetNodeTypesArgs
    {
        Zone = "us-central1-a",
    }));
    var soletenant_tmpl = new Gcp.Compute.NodeTemplate("soletenant-tmpl", new Gcp.Compute.NodeTemplateArgs
    {
        Region = "us-central1",
        NodeType = central1a.Apply(central1a => central1a.Names[0]),
    });
    var nodes = new Gcp.Compute.NodeGroup("nodes", new Gcp.Compute.NodeGroupArgs
    {
        Zone = "us-central1-a",
        Description = "example gcp.compute.NodeGroup for the Google Provider",
        Size = 1,
        NodeTemplate = soletenant_tmpl.Id,
    });
}

}
Inheritance
System.Object
Resource
CustomResource
NodeGroup
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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
Assembly: Pulumi.Gcp.dll
Syntax
public class NodeGroup : CustomResource

Constructors

View Source

NodeGroup(String, NodeGroupArgs, CustomResourceOptions)

Create a NodeGroup resource with the given unique name, arguments, and options.

Declaration
public NodeGroup(string name, NodeGroupArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

NodeGroupArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

AutoscalingPolicy

If you use sole-tenant nodes for your workloads, you can use the node group autoscaler to automatically manage the sizes of your node groups. Structure is documented below.

Declaration
public Output<NodeGroupAutoscalingPolicy> AutoscalingPolicy { get; }
Property Value
Type Description
Output<NodeGroupAutoscalingPolicy>
View Source

CreationTimestamp

Creation timestamp in RFC3339 text format.

Declaration
public Output<string> CreationTimestamp { get; }
Property Value
Type Description
Output<System.String>
View Source

Description

An optional textual description of the resource.

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

Name

Name of the resource.

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

NodeTemplate

The URL of the node template to which this node group belongs.

Declaration
public Output<string> NodeTemplate { get; }
Property Value
Type Description
Output<System.String>
View Source

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Declaration
public Output<string> Project { get; }
Property Value
Type Description
Output<System.String>
View Source

SelfLink

The URI of the created resource.

Declaration
public Output<string> SelfLink { get; }
Property Value
Type Description
Output<System.String>
View Source

Size

The total number of nodes in the node group.

Declaration
public Output<int> Size { get; }
Property Value
Type Description
Output<System.Int32>
View Source

Zone

Zone where this node group is located

Declaration
public Output<string> Zone { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, NodeGroupState, CustomResourceOptions)

Get an existing NodeGroup resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static NodeGroup Get(string name, Input<string> id, NodeGroupState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

NodeGroupState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
NodeGroup
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.