Skip to content

Commit 4ae8958

Browse files
committed
Migrate samples to localstack/localstack-azure image
The Azure emulator image was renamed from localstack/localstack-azure-alpha to localstack/localstack-azure (localstack-pro SMF-642). Update all sample READMEs, docs/LOCALSTACK.md, run-samples.sh, and the CI workflow to pull/run the new name. The old name is still published in parallel during the grace period, so this can land independently.
1 parent 6503865 commit 4ae8958

40 files changed

Lines changed: 112 additions & 112 deletions

File tree

.github/workflows/run-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
contents: read
8686

8787
env:
88-
IMAGE_NAME: localstack/localstack-azure-alpha
88+
IMAGE_NAME: localstack/localstack-azure
8989
DEFAULT_TAG: latest
9090

9191
steps:

docs/LOCALSTACK.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Refer to the LocalStack Auth Token documentation (e.g. the [Auth Token guide](ht
1212

1313
## 1. Pull the Azure Image
1414
```bash
15-
docker pull localstack/localstack-azure-alpha
15+
docker pull localstack/localstack-azure
1616
```
1717

1818
## 2. Choose a Startup Method
@@ -32,7 +32,7 @@ Make sure the `localstack` CLI is installed (`pip install localstack` or `brew i
3232
export LOCALSTACK_AUTH_TOKEN=<your_auth_token>
3333

3434
# Start the LocalStack Azure emulator
35-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
35+
IMAGE_NAME=localstack/localstack-azure localstack start -d
3636
localstack wait -t 60
3737

3838
# Route all Azure CLI calls to the LocalStack Azure emulator
@@ -61,7 +61,7 @@ docker run \
6161
-v /var/run/docker.sock:/var/run/docker.sock \
6262
-v ~/.localstack/volume:/var/lib/localstack \
6363
-e LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN:?} \
64-
localstack/localstack-azure-alpha
64+
localstack/localstack-azure
6565
```
6666

6767
Notes:
@@ -81,7 +81,7 @@ version: "3.8"
8181
services:
8282
localstack:
8383
container_name: localstack-main
84-
image: localstack/localstack-azure-alpha
84+
image: localstack/localstack-azure
8585
ports:
8686
- "127.0.0.1:4566:4566"
8787
environment:

run-samples.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ fi
109109
# 4. Start LocalStack
110110
if ! localstack status | grep -q "running"; then
111111
echo "Starting LocalStack Azure emulator..."
112-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
112+
IMAGE_NAME=localstack/localstack-azure localstack start -d
113113
localstack wait -t 60
114114
else
115115
echo "LocalStack is already running."

samples/aci-blob-storage/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The following diagram illustrates the architecture of the solution:
2828

2929
```bash
3030
# Start the LocalStack Azure emulator
31-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
31+
IMAGE_NAME=localstack/localstack-azure localstack start -d
3232
localstack wait -t 60
3333

3434
# Route all Azure CLI calls to the LocalStack Azure emulator

samples/function-app-front-door/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The following diagrams visualize each scenario provisioned by `deploy_all.sh`. T
6969
1. **Start the LocalStack Azure emulator**
7070
```bash
7171
# Start the LocalStack Azure emulator
72-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
72+
IMAGE_NAME=localstack/localstack-azure localstack start -d
7373
localstack wait -t 60
7474

7575
# Route all Azure CLI calls to the LocalStack Azure emulator

samples/function-app-managed-identity/python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ The LocalStack emulator emulates the following services, which are necessary at
5353

5454
## Deployment
5555

56-
Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute:
56+
Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute:
5757

5858
```bash
59-
docker pull localstack/localstack-azure-alpha
59+
docker pull localstack/localstack-azure
6060
```
6161

6262
Start the LocalStack Azure emulator by running:
@@ -66,7 +66,7 @@ Start the LocalStack Azure emulator by running:
6666
export LOCALSTACK_AUTH_TOKEN=<your_auth_token>
6767

6868
# Start the LocalStack Azure emulator
69-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
69+
IMAGE_NAME=localstack/localstack-azure localstack start -d
7070
localstack wait -t 60
7171

7272
# Route all Azure CLI calls to the LocalStack Azure emulator

samples/function-app-managed-identity/python/bicep/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ The [deploy.sh](deploy.sh) script executes the following steps:
7474
7575
## Deployment
7676

77-
You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command:
77+
You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command:
7878

7979
```bash
80-
docker pull localstack/localstack-azure-alpha
80+
docker pull localstack/localstack-azure
8181
```
8282

8383
Start the LocalStack Azure emulator using the localstack CLI, execute the following command:
@@ -87,7 +87,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow
8787
export LOCALSTACK_AUTH_TOKEN=<your_auth_token>
8888

8989
# Start the LocalStack Azure emulator
90-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
90+
IMAGE_NAME=localstack/localstack-azure localstack start -d
9191
localstack wait -t 60
9292

9393
# Route all Azure CLI calls to the LocalStack Azure emulator

samples/function-app-managed-identity/python/scripts/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ These scripts eliminate manual configuration steps and enable one-command deploy
5151

5252
## Deployment
5353

54-
You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command:
54+
You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command:
5555

5656
```bash
57-
docker pull localstack/localstack-azure-alpha
57+
docker pull localstack/localstack-azure
5858
```
5959

6060
Start the LocalStack Azure emulator using the localstack CLI, execute the following command:
@@ -64,7 +64,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow
6464
export LOCALSTACK_AUTH_TOKEN=<your_auth_token>
6565

6666
# Start the LocalStack Azure emulator
67-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
67+
IMAGE_NAME=localstack/localstack-azure localstack start -d
6868
localstack wait -t 60
6969

7070
# Route all Azure CLI calls to the LocalStack Azure emulator

samples/function-app-managed-identity/python/terraform/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ provider "azurerm" {
7979

8080
## Deployment
8181

82-
You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command:
82+
You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command:
8383

8484
```bash
85-
docker pull localstack/localstack-azure-alpha
85+
docker pull localstack/localstack-azure
8686
```
8787

8888
Start the LocalStack Azure emulator using the localstack CLI, execute the following command:
@@ -92,7 +92,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow
9292
export LOCALSTACK_AUTH_TOKEN=<your_auth_token>
9393

9494
# Start the LocalStack Azure emulator
95-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
95+
IMAGE_NAME=localstack/localstack-azure localstack start -d
9696
localstack wait -t 60
9797

9898
# Route all Azure CLI calls to the LocalStack Azure emulator

samples/function-app-service-bus/dotnet/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ The solution is composed of the following Azure resources:
5555

5656
## Deployment
5757

58-
Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute:
58+
Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute:
5959

6060
```bash
61-
docker pull localstack/localstack-azure-alpha
61+
docker pull localstack/localstack-azure
6262
```
6363

6464
Start the LocalStack Azure emulator by running:
@@ -68,7 +68,7 @@ Start the LocalStack Azure emulator by running:
6868
export LOCALSTACK_AUTH_TOKEN=<your_auth_token>
6969

7070
# Start the LocalStack Azure emulator
71-
IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d
71+
IMAGE_NAME=localstack/localstack-azure localstack start -d
7272
localstack wait -t 60
7373

7474
# Route all Azure CLI calls to the LocalStack Azure emulator

0 commit comments

Comments
 (0)