Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
In deze quickstart gebruik je de Python SDK om een sandbox-groep te provisioneren, een sandbox te starten, een commando uit te voeren en alle aangemaakte resources op te schonen.
Important
Azure Container Apps Sandboxes zijn momenteel in preview. Sandboxes die tijdens de preview zijn gemaakt, zijn mogelijk niet compatibel met toekomstige releases en moeten mogelijk opnieuw worden gemaakt.
Prerequisites
- Een Azure-abonnement met toestemming om resourcegroepen aan te maken.
- Azure CLI (
az) geïnstalleerd en ingelogd. - UV met Python 3.13+.
Uw omgeving instellen
Installeer de SDK, log in bij Azure en schrijf een .env bestand voor de scripts in deze quickstart.
uv venv
uv pip install azure-containerapps-sandbox azure-mgmt-resource azure-mgmt-authorization
# Sign in so DefaultAzureCredential picks up your identity
az login
cat > .env <<EOF
AZURE_SUBSCRIPTION_ID=$(az account show --query id -o tsv)
AZURE_RESOURCE_GROUP=my-rg
AZURE_SANDBOX_GROUP=my-sandbox-group
AZURE_REGION=eastus2
AZURE_PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv)
EOF
Maak de resourcegroep en sandboxgroep aan, en verleen jezelf toegang tot dataplane. Sla op als setup.py:
import os, uuid
from azure.identity import DefaultAzureCredential
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.authorization import AuthorizationManagementClient
from azure.containerapps.sandbox import SandboxGroupManagementClient
credential = DefaultAzureCredential()
sub = os.environ["AZURE_SUBSCRIPTION_ID"]
rg = os.environ["AZURE_RESOURCE_GROUP"]
group = os.environ["AZURE_SANDBOX_GROUP"]
region = os.environ["AZURE_REGION"]
ResourceManagementClient(credential, sub).resource_groups.create_or_update(
rg, {"location": region},
)
SandboxGroupManagementClient(
credential, subscription_id=sub, resource_group=rg,
).begin_create_group(group, location=region).result()
# Container Apps SandboxGroup Data Owner (built-in role)
ROLE_DEF_ID = "c24cf47c-5077-412d-a19c-45202126392c"
scope = f"/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.App/sandboxGroups/{group}"
AuthorizationManagementClient(credential, sub).role_assignments.create(
scope=scope,
role_assignment_name=str(uuid.uuid4()),
parameters={
"properties": {
"roleDefinitionId": f"/subscriptions/{sub}/providers/Microsoft.Authorization/roleDefinitions/{ROLE_DEF_ID}",
"principalId": os.environ["AZURE_PRINCIPAL_ID"],
"principalType": "User",
}
},
)
print(f"Setup complete: rg={rg}, sandbox_group={group}, role granted.")
uv run --env-file .env python setup.py
Roltoewijzingen duren 30 tot 60 seconden om zich voort te planten. Als je main.py een 403 teruggeeft, wacht dan even en probeer het opnieuw.
Maak en run een sandbox
Sla op als main.py:
import os
from azure.identity import DefaultAzureCredential
from azure.containerapps.sandbox import SandboxGroupClient, endpoint_for_region
credential = DefaultAzureCredential()
client = SandboxGroupClient(
endpoint_for_region(os.environ["AZURE_REGION"]), credential,
subscription_id=os.environ["AZURE_SUBSCRIPTION_ID"],
resource_group=os.environ["AZURE_RESOURCE_GROUP"],
sandbox_group=os.environ["AZURE_SANDBOX_GROUP"],
)
# Create a sandbox
sandbox = client.begin_create_sandbox(disk="ubuntu").result()
# Run a command
result = sandbox.exec("echo 'Hello from Azure Container Apps Sandbox.'")
print(result.stdout)
# Clean up
sandbox.delete()
Voer het script uit:
uv run --env-file .env python main.py
De hulpbronnen opschonen
Om de sandbox-groep en de resource-groep te verwijderen, sla de volgende code op als teardown.py:
import os
from azure.identity import DefaultAzureCredential
from azure.mgmt.resource import ResourceManagementClient
from azure.containerapps.sandbox import SandboxGroupManagementClient
credential = DefaultAzureCredential()
sub = os.environ["AZURE_SUBSCRIPTION_ID"]
rg = os.environ["AZURE_RESOURCE_GROUP"]
SandboxGroupManagementClient(
credential, subscription_id=sub, resource_group=rg,
).begin_delete_group(os.environ["AZURE_SANDBOX_GROUP"]).result()
ResourceManagementClient(credential, sub).resource_groups.begin_delete(rg).result()
print(f"Teardown complete: {rg} deleted.")
Voer het opruimscript uit.
uv run --env-file .env python teardown.py