Getting started
3 minute read
Using the LocalStack Cloud Pods command-line interface (CLI) via the pod
command enables you to create and manage cloud pods directly from your terminal. The Cloud Pods CLI is particularly useful in these scenarios:
- Saving a snapshot of your active and running LocalStack instance.
- Sharing your snapshots with teams using LocalStack’s collaboration features.
- Pulling snapshots to a running instance without needing to restart it.
Installation
The LocalStack Cloud Pods CLI is included in the LocalStack CLI installation, so there’s no need for additional installations to begin using it. If you’re a licensed user, we suggest setting the LOCALSTACK_AUTH_TOKEN
as an environment variable. This enables you to access the complete range of LocalStack Cloud Pods features.
You can access the Cloud Pods CLI by running the pod
command from your terminal.
$ localstack pod --help
Usage: localstack pod [OPTIONS] COMMAND [ARGS]...
Manage the state of your instance via Cloud Pods.
Options:
-h, --help Show this message and exit.
Commands:
delete Delete a Cloud Pod
inspect
list List all available Cloud Pods
load
remote Manage cloud pod remotes
save Create a new Cloud Pod
versions
Getting started
This guide is designed for users new to Cloud Pods and assumes basic knowledge of the LocalStack CLI and our awslocal
wrapper script.
Start your LocalStack container using your preferred method. We will demonstrate how you can save a snapshot of your active LocalStack instance into your LocalStack account, and pull it to a running instance.
Create AWS resources
You can use the awslocal
CLI to create new AWS resources within your active LocalStack instance. For example, you can create an S3 bucket and add data to it using the awslocal
CLI:
$ awslocal s3 mb s3://test
$ echo "hello world" > /tmp/hello-world
$ awslocal s3 cp /tmp/hello-world s3://test/hello-world
$ awslocal s3 ls s3://test/
Save your Cloud Pod state
You can now your Pod state using the save
command, specifying the desired Cloud Pod name as the first argument. This action will save the pod and register it with the LocalStack Web Application:
$ localstack pod save s3-test
Cloud Pod `s3-test` successfully created โ
Version: 1
Remote: platform
Services: s3
Optionally, you can include a message with the saved Cloud Pod using the --message
flag.
You can access the list of available Cloud Pods for both you and your organization by utilizing the list
command:
$ localstack pod list
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโณโโโโโโโโโโโโโโ
โ Name โ Max Version โ Last Change โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ s3-test โ 1 โ n/a โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโดโโโโโโโโโโโโโโ
Inspect the contents of a Cloud Pod
You can inspect the contents of a Cloud Pod using the inspect
command:
$ localstack pod inspect s3-test --format json
{
"000000000000": {
"S3": {
"global": {
"listBuckets": {
"Buckets": [
{
"Name": "test",
"CreationDate": "2023-10-03T07:19:31.000Z"
}
],
}
}
}
}
}
Pull your Pod state
On a separate machine, start LocalStack while ensuring the auth token is properly configured. Then, retrieve the previously created Cloud Pod by employing the load
command, specifying the Cloud Pod name as the first argument:
$ localstack pod load s3-test
Cloud Pod s3-test successfully loaded
You can examine the S3 buckets within the Cloud Pod:
$ awslocal s3 ls s3://test/
2022-10-04 22:33:54 12 hello-world
For comprehensive instructions, navigate to our Command-Line Interface (CLI) Guide. To access your Cloud Pods through the LocalStack Web Application, navigate to the Cloud Pods browser.