Adam Hawkins
Adam Hawkins
This fixes a big problem with nginx. nginx does not send some headers if they have an underscore in them. Since this is a Rack middleware, all headers will be...
REF: https://github.com/mozilla/sops/issues/555 I need something like this because we apply terraform in our CD pipelines. Humans need to assume a role on their machine to use sops. CI/CD doesn't because...
`kubeval` incorrectly reads from stdin when used with `xargs`. Here's an example: ``` $ echo "foo.txt" > files.txt $ xargs kubeval < files.txt standard input appears to be an empty...
**Kubernetes version** (use `kubectl version`): ``` Client Version: version.Info{Major:"1", Minor:"5", GitVersion:"v1.5.2", GitCommit:"08e099554f3c31f6e6f07b448ab3ed78d0520507", GitTreeState:"clean", BuildDate:"2017-01-12T07:30:54Z", GoVersion:"go1.7.4", Compiler:"gc", Platform:"darwin/amd64"} Server Version: version.Info{Major:"1", Minor:"5", GitVersion:"v1.5.1", GitCommit:"82450d03cb057bab0950214ef122b67c83fb11df", GitTreeState:"clean", BuildDate:"1970-01-01T00:00:00Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"linux/amd64"} ``` **Environment**:...
The deletion fix was important enough to be in a patch version. I don't see anything changing for a while. Can we get a release please? I don't like having...
Here's a use case: /sprites contains many directories. Each directory represents one sprite. How can we do this? Here's one possible solution: ``` ruby Dir['/sprites/*'].each do "sprite_name" match "/sprites/#{sprite_name}/*.png" do...
A pass through filter is like a matcher but allows you to match like a matcher and select files outside the glob as well. Also the outputs from the filters...
Current work in progress with @mbj
From the docs: ``` # 'brew install', always 'brew services restart', 'brew link', 'brew unlink mysql' (if it is installed) brew "[email protected]", restart_service: true, link: true, conflicts_with: ["mysql"] ``` We...
`mas install` only works when running it from a terminal on the intended machine. `mas install` hangs silently when invoked over SSH. Any idea why?