Utility to create yaml files from a template. Perfect for cloud-config or cloud-init creation.
Project description
Create a yaml file from a template and automatically embed local files.
Create builds for your cloud-init / cloud-config templates with ease!
This allows you to edit files and track in source control and wrap them in yaml files when needed. Supports compression to minimize yaml size (perfect to squeeze into startup scripts for AWS/EC2 instances).
Getting started
pip install yamlifier
cd testdata
yamlifier VARIABLE1="funny person"
Check out the generated.yaml file in the local folder. Use -f to overwrite existing file and –help for more information.
Template Syntax
#cloud-config
#@ Comments like this will be removed from the generated file.
runcmd:
- [ /example/install.sh ]
write_files:
#@ 'local-content-path' will be replaced with content of local file.
- path: /example/install.sh
permissions: "0755"
owner: "root"
local-content-path: example_files/install.sh
#@ Embed binary file as an example (could be an executable)
- path: /example/small_logo.png
permissions: "644"
owner: "root"
local-content-path: example_files/small_logo.png
#@ Embed archive with multiple small files
#@ 'local-content-tar-path' will be replaced with an embedded archive with all files in folder.
- path: /example/archive.tgz
permissions: "644"
owner: "root"
local-content-tar-path: example_files/subfolder
Building & Testing using Docker
Check out the git repository and from the yamlifier folder:
docker build -t yamlifier2 -f docker/python2.Dockerfile .
docker run -it -v $PWD:/code yamlifier2 bash
Credits
Based on the excellent ruamel.yaml library that allows manipulating yaml files while preserving comments and order.
Logo created with logomakr.com (image CC BY 3.0 license).
Source code and feedback
Fully open sourced with Apache License on github.com/sverrirab/yamlifier including issue tracking.
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
File details
Details for the file yamlifier-1.0.3.tar.gz
.
File metadata
- Download URL: yamlifier-1.0.3.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9239e15ca69c88f33ebb7203cc52278ec422dd99948c138358c6cad69722b742 |
|
MD5 | 57824628cf4d1a358205ffa5f378ba07 |
|
BLAKE2b-256 | 111669df90499e866872abb0457a02f2c4a68b85f0f8f92c1b087d3690b481a0 |