Dave Henderson
Dave Henderson
I'm wondering if it'd be appropriate to extend chaoskube to support terminating nodes as well as pods? I think outright terminating VMs is probably definitely outside the scope of what...
I should've mentioned in #70 that it'd conflict with #69 😬 Didn't actually break anything, but it wasted some CPU cycles 😉 Signed-off-by: Dave Henderson
Deprecates `slice` in preparation for removal in a future major version of gomplate (not necessarily v4). Adds `coll.GoSlice` to support the same behaviour as the `text/template` `slice` function (that was...
Replace datasource code with [go-fsimpl](https://github.com/hairyhenderson/go-fsimpl). Note - this will go in v4 since it breaks compatibility by removing support for certain datasource types. It also unifies the URL formats in...
This is a WIP... But mostly it's around abstracting the API around data requests so the code can be shared. There's still a bunch of work to do, and I...
_Note: This probably won't work for a while - I just want to park this here so I don't forget about it_ 😉 YAML files (or "streams") can contain multiple...
I've marked most of the `crypto.*` functions (https://docs.gomplate.ca/functions/crypto) that have to do with encrypting/decrypting or key generation as experimental, because I feel like it may be possible to have a...
Right now, the `aws+smp` datasource outputs the [entire Parameter](https://docs.gomplate.ca/datasources/#output) object. It's awkward to use, and deviates from the way every other datasource operates. Since changing behaviour would definitely break the...
Right now, ranging through [directory datasources](https://docs.gomplate.ca/datasources/#directory-datasources) iterates through only the immediate level of files/children. This makes it difficult (and sometimes impossible) to iterate through all levels of a directory. Based...
(Apologies if this is in the wrong location, please redirect me if so!) I'm looking to add HCL support to [gomplate](https://github.com/hairyhenderson/gomplate), and in order to do so I need a...