about summary refs log tree commit diff
path: root/example
AgeCommit message (Collapse)AuthorFilesLines
2018-06-09 feat(templater): Support single-template resource setsVincent Ambo2-0/+14
Supports resource sets in which the `path` is pointed at a single template file. The example has been updated with ... an example of this. This closes #81.
2018-03-17 fix(example): Add missing file to example folderVincent Ambo1-0/+4
2018-03-09 refactor: Remove old error handling libraryVincent Ambo1-1/+1
Removes the old error handling library and switches to plain fmt.Errorf calls. There are several reasons for this: * There are no useful types or handling here anyways, so output format is the only priority. * Users don't care about getting stacktraces. * My emotional wellbeing. Fin de siècle.
2018-03-09 refactor(templater): Pass resource set path to insertFile functionVincent Ambo1-3/+12
This is actually several refactors in one: * rename "fileContent" function to "insertFile" * pass the resource set path to the "insetFile" function * update docs and example with a pipeline including indentation adjustments for the inserted file
2018-03-09 feat(templater): Added support for file includeNiklas Wik1-0/+2
Adds a 'fileContent' template function to insert the literal contents of a file specified in the template. Signed-off-by: Niklas Wik <niklas.wik@nokia.com>
2017-02-09 feat templater: Add 'pass' lookup functionVincent Ambo1-0/+7
This introduces support for looking up secret values in the 'pass' command line tool (https://www.passwordstore.org/). Values like passwords can be interpolated from pass and even more complex structures like certificates for Kubernetes Secrets can be retrieved and base64- encoded as necessary. Fixes #2
2017-02-08 docs: Add YAML to docsVincent Ambo1-0/+10
2017-02-08 chore: Better example & gofmtVincent Ambo4-6/+35
2017-02-08 feat main: Initial program implementation & exampleVincent Ambo3-0/+21