Jonathan Sokolowski
Jonathan Sokolowski
This is a real limitation especially in a Kubernetes environment. It makes a lot of sense to be able to define a confd config in a `ConfigMap` and mount it...
This is incredibly cool :)
How do you all envisage the calling convention for this function to look like? The hard part is how to specify the default value, since `secret` actually returns a map...
> I think a reasonable implementation might be to accept an even-numbered list of key-value pairs that are populated into sub-fields of `.Data`, i.e., > > ``` > {{ with...
I'd recommend trying without gzip and seeing if you see a speed up. In my tests I found that the time to compress and upload a tgz was actually longer...
@anspfeifer can be simplified further: ```groovy def withEnvInterceptor = { list, closure -> def env = binding.getVariable('env') list.each { pair -> def (k, v) = pair.split('=') env.put(k, v) } binding.setVariable('env',...
Digging into this a bit, it seems that by default `skaffold` only consider Go files: https://github.com/GoogleContainerTools/skaffold/blob/6396524564762e5c2fc619250458cf21302a1268/pkg/skaffold/build/ko/dependencies.go#L37 The information about embedded files is readily available via `go list` or via [`golang.org/x/tools`](https://github.com/GoogleContainerTools/skaffold/blob/6396524564762e5c2fc619250458cf21302a1268/go.mod#L91)...
@staticdev > `--strict` does not transform all warnings in errors as I want The [documentation](https://yamllint.readthedocs.io/en/stable/configuration.html#errors-and-warnings) doesn't suggest it should/would, does it? There's two orthogonal things here: 1. A project needs...
If #283 is broken then revert it 😃 I did my best to add test cases but it's clearly caused a regression that no test caught. It would be wise...
I believe this would affect a large number of users consuming Prometheus metrics?