Instancing a custom environment within seconds is one of the many wonders of running containers. Having to wait for the image and its layers to download & decompress the first time is the current price of admission.
Project Teleport removes the cost of download and decompression by mounting pre-expanded layers from the Azure Container Registry to Teleport enabled Azure container hosts.
Dedicated VM | Teleport w/ACR Tasks |
---|---|
For more background, please see Azure Container Registry Adds Teleportation
- Sign Up for the Teleport Preview
- Getting Started with Teleportation
- Supported Services
- Preview Constraints
- Getting Support
In these early stages, we're looking for direct feedback. To request access, please sign up here: aka.ms/teleport/signup
To gain access to the Azure Teleporters, please signup here
The easiest way to see the advantages of Teleport, is running a command with the az-cli image. The following can be run in the Azure cloud shell
-
Setup environment vars for your registry
export ACR_NAME=demo42t #[registryName] export LOCATION=southcentralus export RESOURCE_GROUP=$ACR_NAME-teleport export ACR_USER=${ACR_NAME} export ACR_PWD="$(az acr credential show -n ${ACR_NAME} --query passwords[0].value -o tsv)"
-
Build the az cli
az acr build \ --registry ${ACR_NAME} \ -t azure-cli:teleport \ https://github.com/Azure/azure-cli.git
-
Run a comparison with ACI
az group create -n ${RESOURCE_GROUP} -l ${LOCATION} time az container create \ --resource-group ${RESOURCE_GROUP} \ --name az-cli \ --image ${ACR_NAME}.azurecr.io/azure-cli:teleport \ --command-line "az" \ --registry-login-server ${ACR_NAME}.azurecr.io \ --registry-username $ACR_USER \ --registry-password $ACR_PWD \ --restart-policy Never az container delete \ --resource-group ${RESOURCE_GROUP} \ --name az-cli \ -y
Note the execution time:
real 2m9.726s # <-- execution time user 0m0.844s sys 0m0.500s
-
Teleport with ACR Tasks
az acr run \ -r ${ACR_NAME} \ --cmd "orca run {{.Run.Registry}}/azure-cli:teleport az" /dev/null
Note the execution time:
2019/11/04 02:53:17 Step ID: acb_step_0 marked as successful (elapsed time in seconds: 9.68) # <-- execution time
See teleport-samples for many more examples of container teleportation.
Preview 1 focuses on running containers within ACR Tasks. Additional services and scenarios will come online as we incorporate more feedback.
While ACR Tasks doesn't yet support teleporting base layers, you can still integrate Teleport into build scenarios for pre & post container build steps.
ACR Task Teleportation scenarios include:
- Running a batch job, such as cleaning up older images within acr
- A custom deployment script, requiring a new, beta or custom version of Helm, Kubectl or some other runtime that's not on a hosted release server
- Custom transforms to your code, prior to using ACR Tasks for container building.
Preview 1 has the following constraints. Your feedback will help us prioritize this list.
- Limited to running images with ACR Tasks
- ACR Task image building is not yet supported. However, you can use teleport for pre/post build steps.
- Registries must exist in the following regions:
Region Code East US EUS East US 2 EUS2 South Central US SCUS West US WUS West US 2 WUS2 West Europe WEU - Additional regions, including other continents will come online as we get more feedback.
- ACR Import does not yet trigger layer expansion. Images must be pushed with
docker push
, built withaz acr build
, or built with acr task triggers. - Geo-replicated registries require translocation. For preview 1, only the master region of a geo-replicated registry will support teleportation.
- Replica regions will function as normal, pulling compressed blobs
- Linux images are currently supported with Windows images coming in a future release.
- ACR Webhook Push notifications occur when the image manifest and compressed blobs are completed. However, layer expansion will take several additional seconds, depending on the size and quantify of layers. We are considering various options when layer expansion has completed within each region, inlcuding regionalized
layer-expanded
notifications.
-
Q: run some baseline teleport examples
-
Q: know when an image is expanded, and ready for teleportation?
- A: ACR will support a new notification event, as well as CLI support. For Preview 1, you can run the following script, passing in 3 arguments for each image you'd like to check, with credentials saved to environment variables.
./check-expansion.sh [registryName] [repoName] [tag] ./check-expansion.sh demo42t hello-world 1.0
-
Q: know if a repository is enabled for teleportation?
- A: Teleport must be enabled by the ACR Product team. To verify a repository is enabled, use
az acr repository show
, looking for theteleportEnabled
attribute.
az acr repository show \ --repository azure-vote-front \ -o jsonc { "changeableAttributes": { "deleteEnabled": true, "listEnabled": true, "readEnabled": true, "teleportEnabled": true, "writeEnabled": true
- A: Teleport must be enabled by the ACR Product team. To verify a repository is enabled, use