Skip to content

Utility to create and maintain autogenerated yaml files

License

Notifications You must be signed in to change notification settings

sverrirab/yamlifier

Repository files navigation

yamlifier

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).

File graphic by href="http://www.flaticon.com/authors/freepik - made by http://logomakr.com

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.

About

Utility to create and maintain autogenerated yaml files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published