This package is an integration module that is meant to be used with the inmanta orchestrator: https://docs.inmanta.com
It allows you to easily parametrize a model by defining slices, and then instantiating as many slices as you need to by simply creating json or yaml files in the project repository. This module aims at enabling its users to manage an infra in a "Git-Ops" fashion. Key ideas are:
- Declarative Configuration: The desired state of your infrastructure and applications is described in a declarative format (json/yaml files) within a Git repository.
- Version Control: Git serves as the central source of truth, meaning all changes are committed to the repository, providing a complete history of the system's evolution.
- Automated Synchronization: The orchestrator continuously monitors the Git repository and pulls in new updates.
- Pull Requests for Changes: When you want to make a change, you create a pull request to modify the Git repository.
- Deployment & Reconciliation: Once the pull request is approved and merged, the orchestrator automatically pulls the changes and deploys them to the live environment, ensuring the actual system state matches the desired state in Git.
All of this is already natively supported by the orchestrator by modifying the main.cf file of a project. This works but scales poorly and it is not possible to track deleted items, this modules aims at addressing these limitations.
More details about the design in the docs folder.
- Set up a new virtual environment, then install the module in it. The first line assumes you have
virtualenvwrapperinstalled. If you don't, you can replace it withpython3 -m venv .env && source .env/bin/activate.
mkvirtualenv inmanta-test -p python3 -a .
pip install -e . -c requirements.txt -r requirements.dev.txt- Run tests
pytest tests