about summary refs log tree commit diff
path: root/main.go (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2017-05-08 feat build: Add ArchLinux PKGBUILDVincent Ambo2-0/+39
2017-05-08 feat release: Add simple release scriptVincent Ambo3-1/+60
Adds a simple script that will build stripped binaries for various platforms and GPG-sign them.
2017-05-08 feat main: Add version commandVincent Ambo1-0/+17
Adds a version command that can have the Kontemplate git hash added to it at build time by using the Go linker's -X flag.
2017-05-08 docs: Add note about binary releases to READMEVincent Ambo1-1/+4
2017-05-08 docs: Add more information to READMEVincent Ambo1-5/+38
2017-05-08 docs: Add some tips and tricksVincent Ambo1-0/+67
2017-05-08 docs: Document template formatVincent Ambo2-0/+91
2017-05-04 docs README: Update usage examples for kingpin CLIVincent Ambo1-28/+28
2017-05-04 refactor main: Move to Kingpin CLI libraryVincent Ambo1-152/+84
Replace urfave/cli with the kingpin[1] library. It has slightly more sensible argument validation than the other Go libraries. Additionally I've opted for removing the '-f / --file' flag in favour of positional arguments to commands. A previous command like `kontemplate template -f somefile.yml` is now just `kontemplate template somefile.yml`. All other arguments remain the same. [1]: https://github.com/alecthomas/kingpin
2017-05-04 feat templater: Warn if no valid resource sets are includedVincent Ambo1-0/+5
After filtering resource sets, check whether any resource sets "survived". Otherwise it can be assumed that the user specified invalid exclude/include combinations and should be warned about that. Fixes #35
2017-04-04 fix test: Assert variable override orderVincent Ambo1-0/+5
2017-04-04 fix templater: Don't try to template default value filesVincent Ambo1-1/+5
2017-04-04 feat context: Support resource set default valuesVincent Ambo4-3/+65
This adds functionality to specify default values directly in resource sets. The idea is that users can create a file called `values.yaml` or `values.json` in a resource set's folder and have all variables specified in that file be automatically merged into the resource set variables with the lowest priority. This fixes #25 This fixes #30 (to a degree)
2017-04-04 fix main: Don't panic if file is unspecifiedVincent Ambo1-4/+14
Instead of printing a spooky stacktrace when the user forgets to specify the `-f` argument, return an error a lot more gracefully.
2017-04-04 feat templater: Fail if values are missingVincent Ambo3-1/+21
Golang's template package now has an option for failing if template variables are missing: https://golang.org/pkg/text/template/#Template.Option This updates the templater code to make use of that option and return the errors encountered during templating. This fixes #1
2017-02-20 style: Apply go fmtVincent Ambo3-4/+3
2017-02-20 fix pass: Trim leading & trailing whitespaceVincent Ambo1-1/+4
2017-02-14 feat ctx: Let sub-resource-sets inherit vars from parentVincent Ambo4-0/+81
Users of kontemplate may expect variables defined on the parent resource to be inherited by children. This implements that functionality. Values defined twice are overwritten by the child's definition. Fixes #20
2017-02-14 chore templater: Use new util.Merge funcVincent Ambo1-11/+2
2017-02-14 feat util: Add silly map-merge function that should be in the stdlibVincent Ambo2-0/+99
2017-02-09 fix main: Add a forgotten error checkVincent Ambo1-1/+5
2017-02-09 feat templater: Add 'pass' lookup functionVincent Ambo3-0/+40
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-09 fix templater: Don't fail with two identical stack tracesVincent Ambo1-1/+2