A Python CLI library for automated cloud deployment to Azure (ACI + ACR)
Project description
☁️ cloud_auto_deployor
cloud_auto_deployor is a Python package that simplifies end-to-end deployment of test automation projects to Azure using Docker and Azure Container Instances (ACI).
Ideal for local developers, QA teams, and CI/CD use cases.
Features
- Auto-builds Docker image from your automation project
- Pushes the image to Azure Container Registry (ACR)
- Deploys the container to Azure Container Instance (ACI)
- Automatically runs your test suite (e.g. Pytest) in the container
- No manual Azure Portal steps required
Installation
pip install cloud-auto-deployor
Make sure you have
DockerandAzure CLIinstalled and logged in (az login).
Setup
Your test automation project should include:
demo_project/
├── Dockerfile
├── requirements.txt
├── tests/
│ └── test_example.py
├── run_tests.py # Triggers pytest
└── config.json # Azure details (see below)
Example config.json
{
"resource_group": "<your_resource_group>",
"acr_name": "<your_acr_name>",
"image_name": "<your_image_name>",
"image_tag": "v1",
"container_name": "<your_container_name>",
"location": "<your_region>"
}
Usage
From your test project root (where config.json lives), run:
python -m cloud_auto_deployor.main
What happens:
- Reads
config.json - Builds Docker image using your Dockerfile
- Pushes to ACR (auto-creates if needed)
- Deploys container instance (ACI)
- Automatically triggers
run_tests.pyto run your tests - ✅ Results appear in Azure Portal Logs
Sample run_tests.py
import pytest
import os
import sys
def run_tests():
sys.path.insert(0, os.getcwd())
exit_code = pytest.main(["-vv", "tests/"])
return exit_code
if __name__ == "__main__":
run_tests()
Uninstall / Clean Up
To remove the container:
az container delete \
--name <your_container_name> \
--resource-group <your_resource_group> \
--yes
To remove the image from ACR:
az acr repository delete \
--name <your_acr_name> \
--image <your_image_name>:<your_image_tag> \
--yes
Delete Entire Resource Group
az group delete --name <your_resource_group> --yes --no-wait Explanation: • --name: Name of your resource group (e.g., demo-deploy-group) • --yes: Auto-confirms the deletion prompt • --no-wait: Returns immediately without waiting for the deletion to complete (optional)
Author
Developed by Raja Periyasamy – Automation Lead | Azure DevOps Follower
📧 cloudautodeployer@gmail.com
License
MIT License
Release Notes
v1.0.4
- Initial open-source release
- Supports end-to-end Docker → ACR → ACI automation
- Auto-triggers test execution from
run_tests.py - Removed tracked
config.json, now properly gitignored - Minor cleanup and security best practices applied
- read me file changes
- Azure resources delete expression syntax updated
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloud_auto_deployor-1.0.4.tar.gz.
File metadata
- Download URL: cloud_auto_deployor-1.0.4.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ce8db14960964706b8b0b950e6d6657f2c1171f85ff1e5222342dc6206ed4ee
|
|
| MD5 |
4938eb1f025d344418bdd74c0f125fed
|
|
| BLAKE2b-256 |
4feec6f79cce07013a00bf283edc2f11530de149afdd53f00a79df48517935c0
|
File details
Details for the file cloud_auto_deployor-1.0.4-py3-none-any.whl.
File metadata
- Download URL: cloud_auto_deployor-1.0.4-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
006dd13fa60e89d7609a2bc001840547d0fb2690af65ce70d582136362fbd98b
|
|
| MD5 |
07d2c493dedecf4e24676df0041aec08
|
|
| BLAKE2b-256 |
b68c8ed49cbd0ccaa416251920f3aa72ccee2900e3b79bc2c3006235ed640dc9
|