Eric Holmes
Eric Holmes
As talked about in https://github.com/remind101/stacker/pull/497#issuecomment-373598384, this documents how more advanced stacker users might setup a stacker bucket, when they want more control over creation of the bucket (e.g. tags, default...
The current behavior of `--interactive` is that any new stacks will get created, without any prompt. But this can be potentially dangerous (or at the very least, annoying) if you...
Closes https://github.com/remind101/stacker/issues/546 This just makes it a little easier to use CFNType's, by just specifying the name of the type you want for the parameter. The following now works: ```python...
Right now, if you want to specify a variable as a CloudFormation parameter, you would import the appropriate CFNType, then use that as the type field. For example: ```python from...
Every once in a while, I get an error like this: ``` Traceback (most recent call last): File "/usr/local/bin/stacker", line 4, in __import__('pkg_resources').run_script('stacker==1.0.3', 'stacker') File "build/bdist.linux-x86_64/egg/pkg_resources/__init__.py", line 748, in run_script...
Something we talked about briefly internally. The current syntax for specifying lookups looks something like this: ```yaml variables: VpcId: ${output vpc::VpcId} ``` It allows you to nest outputs, but with...
Realized we don't have an issue tracking this. Lookups are currently replaced using regular expressions, which helped cause [this bug](https://github.com/remind101/stacker/pull/251). It might be more robust to parse everything as an...
Support for configuring the nproc limit was added in https://github.com/remind101/empire/pull/761, however, I don't think it's ever actually worked the way it was intended. From the [`docker run` docs](https://docs.docker.com/engine/reference/commandline/run/#set-ulimits-in-container-ulimit): > Be...
Makes this a lot easier: ```console $ emp env -a app1 | emp env-load -a app2 ```
One thing we're toying with internally is running multiple Empire instances that schedule jobs into the same cluster. We can use this to have a "production" environment, but also have...