castai.GkeCluster
Explore with Pulumi AI
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
- Project
Id string - GCP project id
- Credentials
Json string - GCP credentials.json from ServiceAccount with credentials for CAST AI
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- Gke
Cluster stringId - The ID of this resource.
- Name string
- GKE cluster name
- Timeouts
Gke
Cluster Timeouts
- Location string
- GCP cluster zone in case of zonal or region in case of regional cluster
- Project
Id string - GCP project id
- Credentials
Json string - GCP credentials.json from ServiceAccount with credentials for CAST AI
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- Gke
Cluster stringId - The ID of this resource.
- Name string
- GKE cluster name
- Timeouts
Gke
Cluster Timeouts Args
- location String
- GCP cluster zone in case of zonal or region in case of regional cluster
- project
Id String - GCP project id
- credentials
Json String - GCP credentials.json from ServiceAccount with credentials for CAST AI
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke
Cluster StringId - The ID of this resource.
- name String
- GKE cluster name
- timeouts
Gke
Cluster Timeouts
- location string
- GCP cluster zone in case of zonal or region in case of regional cluster
- project
Id string - GCP project id
- credentials
Json string - GCP credentials.json from ServiceAccount with credentials for CAST AI
- delete
Nodes booleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke
Cluster stringId - The ID of this resource.
- name string
- GKE cluster name
- timeouts
Gke
Cluster Timeouts
- 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_ boolon_ disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke_
cluster_ strid - The ID of this resource.
- name str
- GKE cluster name
- timeouts
Gke
Cluster Timeouts Args
- location String
- GCP cluster zone in case of zonal or region in case of regional cluster
- project
Id String - GCP project id
- credentials
Json String - GCP credentials.json from ServiceAccount with credentials for CAST AI
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke
Cluster StringId - 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:
- Cluster
Token string - CAST.AI agent cluster token
- Credentials
Id string - CAST AI credentials id for cluster
- Id string
- The provider-assigned unique ID for this managed resource.
- Cluster
Token string - CAST.AI agent cluster token
- Credentials
Id string - CAST AI credentials id for cluster
- Id string
- The provider-assigned unique ID for this managed resource.
- cluster
Token String - CAST.AI agent cluster token
- credentials
Id String - CAST AI credentials id for cluster
- id String
- The provider-assigned unique ID for this managed resource.
- cluster
Token string - CAST.AI agent cluster token
- credentials
Id 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.
- cluster
Token String - CAST.AI agent cluster token
- credentials
Id 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.
- Cluster
Token string - CAST.AI agent cluster token
- Credentials
Id string - CAST AI credentials id for cluster
- Credentials
Json string - GCP credentials.json from ServiceAccount with credentials for CAST AI
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- Gke
Cluster stringId - 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
- Project
Id string - GCP project id
- Timeouts
Gke
Cluster Timeouts
- Cluster
Token string - CAST.AI agent cluster token
- Credentials
Id string - CAST AI credentials id for cluster
- Credentials
Json string - GCP credentials.json from ServiceAccount with credentials for CAST AI
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- Gke
Cluster stringId - 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
- Project
Id string - GCP project id
- Timeouts
Gke
Cluster Timeouts Args
- cluster
Token String - CAST.AI agent cluster token
- credentials
Id String - CAST AI credentials id for cluster
- credentials
Json String - GCP credentials.json from ServiceAccount with credentials for CAST AI
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke
Cluster StringId - 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
- project
Id String - GCP project id
- timeouts
Gke
Cluster Timeouts
- cluster
Token string - CAST.AI agent cluster token
- credentials
Id string - CAST AI credentials id for cluster
- credentials
Json string - GCP credentials.json from ServiceAccount with credentials for CAST AI
- delete
Nodes booleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke
Cluster stringId - 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
- project
Id string - GCP project id
- timeouts
Gke
Cluster Timeouts
- 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_ boolon_ disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke_
cluster_ strid - 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
Gke
Cluster Timeouts Args
- cluster
Token String - CAST.AI agent cluster token
- credentials
Id String - CAST AI credentials id for cluster
- credentials
Json String - GCP credentials.json from ServiceAccount with credentials for CAST AI
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect
- gke
Cluster StringId - 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
- project
Id String - GCP project id
- timeouts Property Map
Supporting Types
GkeClusterTimeouts, GkeClusterTimeoutsArgs
Package Details
- Repository
- castai castai/terraform-provider-castai
- License
- Notes
- This Pulumi package is based on the
castai
Terraform Provider.