Sprinkling imperative logic into your template generation process.
Project description
Templatizer
Templatizer allows for sprinkling in some imperative logic to your declarative configuration files.
Why Imperative?
While a fully declarative configuration file is often nice to be able to describe the intended state of the world in a single place, these can also become quite verbose over time.
For Kubernetes, for example, you might be configuring a number of monitoring jobs. These will have different storage, CPU, and memory requirements. They also have unique configuration requirements for each one. I might be holding it wrong, but I find this very hard to make work in Helm and Kustomize without repeating myself over and over again.
What I want is something that runs before Helm, Kustomize, and whatever other tools you're using. I want something to generate files with the ability to do imperative logic first.
Example
import templatizer
class Simple(templatizer.Templatable):
prop = 12345
class Imperative(templatizer.Templatable):
tick = 0
def prop(self):
return 12345 + self.tick
simple = Simple()
assert simple.propval('prop') == 12345
imperative = Imperative()
assert imperative.propval('prop') == 12345
imperative.tick = 1
assert imperative.propval('prop') == 12346
The templatizer.run
function takes a list of Templatable
objects, generates them into strings, and adds separators in between. By default the ---
separator is used, which is useful for generating YAML documents. This can be changed to suit your use case.
Kubernetes
The templatizer.k8s
module includes generated definitions from the Kubernetes OpenAPI Spec.
This allows for generating Kubernetes manifests with imperative hooks. Examples of this are provided in the examples/
directory.
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
Built Distribution
File details
Details for the file pytemplatize-0.0.7.tar.gz
.
File metadata
- Download URL: pytemplatize-0.0.7.tar.gz
- Upload date:
- Size: 74.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e933bca1645bb3f1228525fb73cba19dc0da8aa85d20b2e8f6cef1b5bd8ec21 |
|
MD5 | e1e7b7459b95b90b5c63cb8fc83f460c |
|
BLAKE2b-256 | 6c055f4483b2ffec6c3807f33625415322a0e7b9062c73fac11de559a8e4a9ff |
File details
Details for the file pytemplatize-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: pytemplatize-0.0.7-py3-none-any.whl
- Upload date:
- Size: 76.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f745e076bdc1c7406e2bcee34cf465982af5793d208df559c78d16fed507b83a |
|
MD5 | 8b55e99cdcd4c7aee427edbd7daa417a |
|
BLAKE2b-256 | 1bcf5ddc022d5f006315368718c5399d3070b7f5c6b0d2ff093792c8c85969ec |