Skip to content

exocomputeClusterConnect

Connects an Exocompute cluster to RSC and retrieves the Kubernetes configuration YAML file.

Arguments

Argument Type Description
input (required) ExocomputeClusterConnectInput! Input to connect a customer-managed cluster to RSC.

Returns

ExocomputeClusterConnectReply!

Sample

mutation ExocomputeClusterConnect($input: ExocomputeClusterConnectInput!) {
  exocomputeClusterConnect(input: $input) {
    clusterSetupYaml
    clusterUuid
  }
}
{
  "input": {
    "cloudType": "AWS",
    "exocomputeConfigId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "exocomputeClusterConnect": {
      "clusterSetupYaml": "example-string",
      "clusterUuid": "00000000-0000-0000-0000-000000000000"
    }
  }
}