Skip to main content

Tools for deploying to AWS via CloudFormation and Serverless framework that support a pull request based workflow

Project description

Nameless Deploy Tools

Build Status Coverage Status Ruff

Released version 1.325

Nameless deploy tools are a set of tools to implement a true Infrastructure As Code workflow with various cloud infrastructure management tools. Currently supported tools are:

  • CloudFormation
  • AWS CDK
  • Serverless Framework
  • Terraform
  • Azure Resource Manager (with YAML syntax)
  • Bicep

Why Nameless?

A common analogy for cloud infrastructure has been to move from having pets with names that need lots of looking after, to cattle that has at most id's. It's time to move to the industrial age from the agrarian era. The infrastructure our applications runs now comes and goes, and we know at most some statistical information about the actual executions. Run times, memory usage, used bandwidth and the like. We no longer know even the id's of the things that actually run the code. Hence - nameless.

Rationale

We at Nitor are software engineers with mostly a developer or architect background, but a lot of us have had to work closely with various Operations teams around the world. DevOps has a natural appeal to us and immediately "infrastructure as code" meant for us that we should apply the best development practices to infrastructure development. It starts with version control and continues with testing new features in isolation and a workflow that supports this. Our teams usually take into use a feature branch workflow if it is feasible, and we expect all the tools and practices to support this. For infrastructure this type of branching means that you should be able to spin up enough of the infrastructure to be able to verify the changes you want to implement in production. Also, the testing environment should be close enough to the target environment for the results to be valid. So the differences between testing and production environments should be minimized and reviewable.

With the popular tools like Ansible, Terraform, Chef etc. you need to come up with and implement the ways to achieve the goals above. As far as I know, no tool besides ndt has at its core a thought-out way of a branching infrastructure development model.

What it is

nameless-deploy-tools works by defining Amazon Machine Images, Docker containers, Serverless services and deploying CloudFormation stacks of resources. CloudFormation stacks can also be defined with AWS CDK applications. All of the above can also be deployed using Terraform.

Installation

Requires Python 3.9 or newer.

Use pipx or uv to install it globally in an isolated environment. pipx is the older and stable tool, uv is a new, much faster version.

pipx install nameless-deploy-tools
# or
uv tool install nameless-deploy-tools

Directly installing with pip is no longer supported by most Python distributions.

Getting started

To use nameless-deploy-tools you need to set up a project repository that describes the images you want to build, and the stacks you want to deploy them in. See ndt-project-template for an example.

Here are few commands you can use. All of these are run in your project repository root. You need to have AWS credentials for command line access set up.

  • To bake a new version of an image: ndt bake-image <image-name>
  • To build a new Docker container image ndt bake-docker <component> <docker-name>
  • To deploy a stack:
    • with a known AMI id: ndt deploy-stack <image-name> <stack-name> <AMI-id>
    • with the newest AMI id by a given bake job: ndt deploy-stack <image-name> <stack-name> "" <bake-job-name>
  • To undeploy a stack: ndt undeploy-stack <image-name> <stack-name>

For full list of commands see here

Faster shell complete

You can additionally use a faster register-complete by running ./faster_register_complete.sh. This compiles C++ programs from the files n_utils/nameless-dt-register-complete.cpp and n_utils/nameless-dt-print-aws-profiles.cpp, and replaces the Python versions of nameless-dt-register-complete and nameless-dt-print-aws-profiles with these much faster compiled binaries.

Documentation

Versioning

This library uses a simplified semantic versioning scheme: major version change for changes that are not backwards compatible (not expecting these) and the minor version for all backwards compatible changes. We won't make the distinction between new functionality and bugfixes, since we don't think it matters and is not a thing worth wasting time on. We will release often and if we need changes that are not comptatible, we will fork the next major version and release alphas versions of that until we are happy to release the next major version and try and have a painless upgrade path.

Development

uv is the recommended way to handle virtual environments for development.

Create a venv and install all dependencies:

uv sync --all-extras

You can then run commands directly with the venv using uv run, or activate the venv manually first. The uv default venv location is .venv.

source .venv/bin/activate
# or Windows
.venv\Scripts\activate

Dependencies

Python dependencies are specified in pyproject.toml. The requirements.txt file is generated by pip compile and should not be modified manually.

Use the provided shell script to update the requirements file. First install uv (recommended), or alternatively pip-tools using pipx. Then run:

./compile-requirements.sh
# See help
./compile-requirements.sh -h

Running tests

Using uv

uv run python -m pytest -v .

Inside active virtual env

Install test requirements:

pip install -r dev-requirements.txt

Run tests with Pytest:

python -m pytest -v .

Code formatting and linting

Code formatting and linting with ruff.

These are configured with a custom line length limit of 120. The configs can be found in pyproject.toml.

Usage:

ruff format
ruff check --fix

Using with pre-commit:

# setup to be run automatically on git commit
pre-commit install

# run manually
pre-commit run --all-files

Release

Use the provided shell script. Note that you need to have a venv with the extra dependencies installed active when running the script.

./release.sh
# See help
./release.sh -h

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nameless_deploy_tools-1.325.tar.gz (182.9 kB view details)

Uploaded Source

Built Distribution

nameless_deploy_tools-1.325-py3-none-any.whl (248.2 kB view details)

Uploaded Python 3

File details

Details for the file nameless_deploy_tools-1.325.tar.gz.

File metadata

  • Download URL: nameless_deploy_tools-1.325.tar.gz
  • Upload date:
  • Size: 182.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for nameless_deploy_tools-1.325.tar.gz
Algorithm Hash digest
SHA256 7c2703b99c249fd45c60b6e0a9f7c1190e9dcdd1a8c3d1f76c4c969ea759816c
MD5 ef331e66f4109c2da00f3a08f57217ec
BLAKE2b-256 a008a880691b05f12ab6f65e385b56ca3343d70380464dfe79ede2b5ac239564

See more details on using hashes here.

File details

Details for the file nameless_deploy_tools-1.325-py3-none-any.whl.

File metadata

File hashes

Hashes for nameless_deploy_tools-1.325-py3-none-any.whl
Algorithm Hash digest
SHA256 48f922dfc5e8f43b38fcf146600b9b13b379666ab3307f244a30c0f6b4b42e28
MD5 93198958cacb1f171c83a12d241de14a
BLAKE2b-256 843abd06c2a360ff6835e11dad1f4e545591dad10efb40d0b04246d630e906b5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page