Skip to main content

Kurtosis Go SDK

This guide provides instructions and code snippets to help you get started with the Kurtosis Go SDK. It enables you to create and manage enclaves programmatically, without having to rely on the Kurtosis Enclave Manager (UI) or the Kurtosis CLI.

The main way to interact with objects from the Kurtosis ecosystem is by getting its context. There are three main contexts:

  1. KurtosisContext: contains methods for interacting with Kurtosis Engine, allowing manipulation of enclaves.
  2. EnclaveContext: contains methods for interacting with an enclave, allowing execution of Starlark scripts.
  3. ServiceContext: contains methods for interacting with a service, allowing inspecting its details.

This guide will also help you create and get these contexts.

Setting Up

To use the Kurtosis Go SDK, you need to add it as a dependency to your Go module. You can do this with the following go get command:

$ go get github.com/kurtosis-tech/kurtosis/api/golang

Please ensure that you have a running Kurtosis Engine instance before executing your code. You can check the status of the Kurtosis Engine using the following command:

$ kurtosis engine status

Make note of the Engine's version and status information.

Creating an Enclave

The first step is to obtain a Kurtosis Context, which represents a Kurtosis instance in your Go code:

kurtosisCtx, err := kurtosis_context.NewKurtosisContextFromLocalEngine()

Next, you can use the Kurtosis Context to create an enclave, which will provide an Enclave Context for managing the enclave:

enclaveName := "my-enclave"
enclaveCtx, err := kurtosisCtx.CreateEnclave(ctx, enclaveName)

Configure for Starlark Runs

Using the Enclave Context, you can perform actions like adding services using Starlark scripts:

starlarkRunConfig := starlark_run_config.NewRunStarlarkConfig()
starlarkScript := `
def run(plan):
serviceConfig := ServiceConfig{
Image: "httpd",
}
plan.AddService(name: "my-service", config: serviceConfig)
`
starlarkRunResult, err := enclaveCtx.RunStarlarkScriptBlocking(ctx, starlarkScript, starlarkRunConfig)

Interacting with services

After adding a service, you can interact with it by obtaining a service context and running commands:

serviceCtx, err := enclaveCtx.GetServiceContext("my-service")
code, output, err := serviceCtx.ExecCommand([]string{"ls"})

For ephemeral enclaves, such as those used in end-to-end testing, you can destroy the created enclave:

err := kurtosisCtx.DestroyEnclave(ctx, enclaveName)

These instructions should help you get started with using the Kurtosis Go SDK to create and manage enclaves for your projects. If you need further assistance or ahve questions, please open a Github Discussion or ping us in Discord.