Skip to content

exotaskImageBundle

Gets the list of exo-task images in the bundle along with information on how to download the images.

Arguments

Argument Type Description
input GetExotaskImageBundleInput Input for getting an Exocompute container image bundle.

Returns

GetExotaskImageBundleReply!

Sample

query {
  exotaskImageBundle {
    bundleVersion
    eksVersion
    repoUrl
  }
}
{}
{
  "data": {
    "exotaskImageBundle": {
      "bundleVersion": "example-string",
      "eksVersion": "example-string",
      "repoUrl": "example-string",
      "awsImages": {
        "bundleVersion": "example-string",
        "eksVersion": "example-string",
        "repoUrl": "example-string",
        "supportedEksVersions": [
          "example-string"
        ]
      },
      "azureImages": {
        "bundleVersion": "example-string",
        "repoUrl": "example-string"
      }
    }
  }
}