1. Packages
  2. Castai Provider
  3. API Docs
  4. GkeCluster
castai 7.44.0 published on Friday, Mar 21, 2025 by castai

castai.GkeCluster

Explore with Pulumi AI

castai logo
castai 7.44.0 published on Friday, Mar 21, 2025 by castai

    GKE cluster resource allows connecting an existing GKE cluster to CAST AI.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as castai from "@pulumi/castai";
    
    const _this = new castai.GkeCluster("this", {
        projectId: _var.project_id,
        location: module.gke.location,
        deleteNodesOnDisconnect: _var.delete_nodes_on_disconnect,
        credentialsJson: _var.gke_credentials,
    });
    
    import pulumi
    import pulumi_castai as castai
    
    this = castai.GkeCluster("this",
        project_id=var["project_id"],
        location=module["gke"]["location"],
        delete_nodes_on_disconnect=var["delete_nodes_on_disconnect"],
        credentials_json=var["gke_credentials"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/castai/v7/castai"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := castai.NewGkeCluster(ctx, "this", &castai.GkeClusterArgs{
    			ProjectId:               pulumi.Any(_var.Project_id),
    			Location:                pulumi.Any(module.Gke.Location),
    			DeleteNodesOnDisconnect: pulumi.Any(_var.Delete_nodes_on_disconnect),
    			CredentialsJson:         pulumi.Any(_var.Gke_credentials),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Castai = Pulumi.Castai;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new Castai.GkeCluster("this", new()
        {
            ProjectId = @var.Project_id,
            Location = module.Gke.Location,
            DeleteNodesOnDisconnect = @var.Delete_nodes_on_disconnect,
            CredentialsJson = @var.Gke_credentials,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.castai.GkeCluster;
    import com.pulumi.castai.GkeClusterArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var this_ = new GkeCluster("this", GkeClusterArgs.builder()
                .projectId(var_.project_id())
                .location(module.gke().location())
                .deleteNodesOnDisconnect(var_.delete_nodes_on_disconnect())
                .credentialsJson(var_.gke_credentials())
                .build());
    
        }
    }
    
    resources:
      this:
        type: castai:GkeCluster
        properties:
          projectId: ${var.project_id}
          location: ${module.gke.location}
          deleteNodesOnDisconnect: ${var.delete_nodes_on_disconnect}
          credentialsJson: ${var.gke_credentials}
    

    Create GkeCluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GkeCluster(name: string, args: GkeClusterArgs, opts?: CustomResourceOptions);
    @overload
    def GkeCluster(resource_name: str,
                   args: GkeClusterArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def GkeCluster(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   location: Optional[str] = None,
                   project_id: Optional[str] = None,
                   credentials_json: Optional[str] = None,
                   delete_nodes_on_disconnect: Optional[bool] = None,
                   gke_cluster_id: Optional[str] = None,
                   name: Optional[str] = None,
                   timeouts: Optional[GkeClusterTimeoutsArgs] = None)
    func NewGkeCluster(ctx *Context, name string, args GkeClusterArgs, opts ...ResourceOption) (*GkeCluster, error)
    public GkeCluster(string name, GkeClusterArgs args, CustomResourceOptions? opts = null)
    public GkeCluster(String name, GkeClusterArgs args)
    public GkeCluster(String name, GkeClusterArgs args, CustomResourceOptions options)
    
    type: castai:GkeCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GkeClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GkeClusterArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GkeClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GkeClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GkeClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var gkeClusterResource = new Castai.GkeCluster("gkeClusterResource", new()
    {
        Location = "string",
        ProjectId = "string",
        CredentialsJson = "string",
        DeleteNodesOnDisconnect = false,
        GkeClusterId = "string",
        Name = "string",
        Timeouts = new Castai.Inputs.GkeClusterTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := castai.NewGkeCluster(ctx, "gkeClusterResource", &castai.GkeClusterArgs{
    Location: pulumi.String("string"),
    ProjectId: pulumi.String("string"),
    CredentialsJson: pulumi.String("string"),
    DeleteNodesOnDisconnect: pulumi.Bool(false),
    GkeClusterId: pulumi.String("string"),
    Name: pulumi.String("string"),
    Timeouts: &.GkeClusterTimeoutsArgs{
    Create: pulumi.String("string"),
    Delete: pulumi.String("string"),
    Update: pulumi.String("string"),
    },
    })
    
    var gkeClusterResource = new GkeCluster("gkeClusterResource", GkeClusterArgs.builder()
        .location("string")
        .projectId("string")
        .credentialsJson("string")
        .deleteNodesOnDisconnect(false)
        .gkeClusterId("string")
        .name("string")
        .timeouts(GkeClusterTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    gke_cluster_resource = castai.GkeCluster("gkeClusterResource",
        location="string",
        project_id="string",
        credentials_json="string",
        delete_nodes_on_disconnect=False,
        gke_cluster_id="string",
        name="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const gkeClusterResource = new castai.GkeCluster("gkeClusterResource", {
        location: "string",
        projectId: "string",
        credentialsJson: "string",
        deleteNodesOnDisconnect: false,
        gkeClusterId: "string",
        name: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: castai:GkeCluster
    properties:
        credentialsJson: string
        deleteNodesOnDisconnect: false
        gkeClusterId: string
        location: string
        name: string
        projectId: string
        timeouts:
            create: string
            delete: string
            update: string
    

    GkeCluster Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The GkeCluster resource accepts the following input properties:

    Location string
    GCP cluster zone in case of zonal or region in case of regional cluster
    ProjectId string
    GCP project id
    CredentialsJson string
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    DeleteNodesOnDisconnect bool
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    GkeClusterId string
    The ID of this resource.
    Name string
    GKE cluster name
    Timeouts GkeClusterTimeouts
    Location string
    GCP cluster zone in case of zonal or region in case of regional cluster
    ProjectId string
    GCP project id
    CredentialsJson string
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    DeleteNodesOnDisconnect bool
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    GkeClusterId string
    The ID of this resource.
    Name string
    GKE cluster name
    Timeouts GkeClusterTimeoutsArgs
    location String
    GCP cluster zone in case of zonal or region in case of regional cluster
    projectId String
    GCP project id
    credentialsJson String
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    deleteNodesOnDisconnect Boolean
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gkeClusterId String
    The ID of this resource.
    name String
    GKE cluster name
    timeouts GkeClusterTimeouts
    location string
    GCP cluster zone in case of zonal or region in case of regional cluster
    projectId string
    GCP project id
    credentialsJson string
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    deleteNodesOnDisconnect boolean
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gkeClusterId string
    The ID of this resource.
    name string
    GKE cluster name
    timeouts GkeClusterTimeouts
    location str
    GCP cluster zone in case of zonal or region in case of regional cluster
    project_id str
    GCP project id
    credentials_json str
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    delete_nodes_on_disconnect bool
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gke_cluster_id str
    The ID of this resource.
    name str
    GKE cluster name
    timeouts GkeClusterTimeoutsArgs
    location String
    GCP cluster zone in case of zonal or region in case of regional cluster
    projectId String
    GCP project id
    credentialsJson String
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    deleteNodesOnDisconnect Boolean
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gkeClusterId String
    The ID of this resource.
    name String
    GKE cluster name
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GkeCluster resource produces the following output properties:

    ClusterToken string
    CAST.AI agent cluster token
    CredentialsId string
    CAST AI credentials id for cluster
    Id string
    The provider-assigned unique ID for this managed resource.
    ClusterToken string
    CAST.AI agent cluster token
    CredentialsId string
    CAST AI credentials id for cluster
    Id string
    The provider-assigned unique ID for this managed resource.
    clusterToken String
    CAST.AI agent cluster token
    credentialsId String
    CAST AI credentials id for cluster
    id String
    The provider-assigned unique ID for this managed resource.
    clusterToken string
    CAST.AI agent cluster token
    credentialsId string
    CAST AI credentials id for cluster
    id string
    The provider-assigned unique ID for this managed resource.
    cluster_token str
    CAST.AI agent cluster token
    credentials_id str
    CAST AI credentials id for cluster
    id str
    The provider-assigned unique ID for this managed resource.
    clusterToken String
    CAST.AI agent cluster token
    credentialsId String
    CAST AI credentials id for cluster
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GkeCluster Resource

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

    public static get(name: string, id: Input<ID>, state?: GkeClusterState, opts?: CustomResourceOptions): GkeCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_token: Optional[str] = None,
            credentials_id: Optional[str] = None,
            credentials_json: Optional[str] = None,
            delete_nodes_on_disconnect: Optional[bool] = None,
            gke_cluster_id: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project_id: Optional[str] = None,
            timeouts: Optional[GkeClusterTimeoutsArgs] = None) -> GkeCluster
    func GetGkeCluster(ctx *Context, name string, id IDInput, state *GkeClusterState, opts ...ResourceOption) (*GkeCluster, error)
    public static GkeCluster Get(string name, Input<string> id, GkeClusterState? state, CustomResourceOptions? opts = null)
    public static GkeCluster get(String name, Output<String> id, GkeClusterState state, CustomResourceOptions options)
    resources:  _:    type: castai:GkeCluster    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ClusterToken string
    CAST.AI agent cluster token
    CredentialsId string
    CAST AI credentials id for cluster
    CredentialsJson string
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    DeleteNodesOnDisconnect bool
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    GkeClusterId string
    The ID of this resource.
    Location string
    GCP cluster zone in case of zonal or region in case of regional cluster
    Name string
    GKE cluster name
    ProjectId string
    GCP project id
    Timeouts GkeClusterTimeouts
    ClusterToken string
    CAST.AI agent cluster token
    CredentialsId string
    CAST AI credentials id for cluster
    CredentialsJson string
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    DeleteNodesOnDisconnect bool
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    GkeClusterId string
    The ID of this resource.
    Location string
    GCP cluster zone in case of zonal or region in case of regional cluster
    Name string
    GKE cluster name
    ProjectId string
    GCP project id
    Timeouts GkeClusterTimeoutsArgs
    clusterToken String
    CAST.AI agent cluster token
    credentialsId String
    CAST AI credentials id for cluster
    credentialsJson String
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    deleteNodesOnDisconnect Boolean
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gkeClusterId String
    The ID of this resource.
    location String
    GCP cluster zone in case of zonal or region in case of regional cluster
    name String
    GKE cluster name
    projectId String
    GCP project id
    timeouts GkeClusterTimeouts
    clusterToken string
    CAST.AI agent cluster token
    credentialsId string
    CAST AI credentials id for cluster
    credentialsJson string
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    deleteNodesOnDisconnect boolean
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gkeClusterId string
    The ID of this resource.
    location string
    GCP cluster zone in case of zonal or region in case of regional cluster
    name string
    GKE cluster name
    projectId string
    GCP project id
    timeouts GkeClusterTimeouts
    cluster_token str
    CAST.AI agent cluster token
    credentials_id str
    CAST AI credentials id for cluster
    credentials_json str
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    delete_nodes_on_disconnect bool
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gke_cluster_id str
    The ID of this resource.
    location str
    GCP cluster zone in case of zonal or region in case of regional cluster
    name str
    GKE cluster name
    project_id str
    GCP project id
    timeouts GkeClusterTimeoutsArgs
    clusterToken String
    CAST.AI agent cluster token
    credentialsId String
    CAST AI credentials id for cluster
    credentialsJson String
    GCP credentials.json from ServiceAccount with credentials for CAST AI
    deleteNodesOnDisconnect Boolean
    Should CAST AI remove nodes managed by CAST.AI on disconnect
    gkeClusterId String
    The ID of this resource.
    location String
    GCP cluster zone in case of zonal or region in case of regional cluster
    name String
    GKE cluster name
    projectId String
    GCP project id
    timeouts Property Map

    Supporting Types

    GkeClusterTimeouts, GkeClusterTimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Package Details

    Repository
    castai castai/terraform-provider-castai
    License
    Notes
    This Pulumi package is based on the castai Terraform Provider.
    castai logo
    castai 7.44.0 published on Friday, Mar 21, 2025 by castai