omnilinguist
omnilinguist
Noticed that in the file https://github.com/Azure/draft/blob/4a298770ff4484e5737fabf4bb9abc54b6b72e7c/pkg/draft/pack/pack.go#L19-L20, there is a section ``` // ValuesfileName is the default values file name. ValuesfileName = "values.yaml" ``` However, this constant doesn't seem to be...
This could be useful if an organization / team has custom `draft.toml` settings it would like to standardize as default. Here's what actually happened when I tried putting a `draft.toml`...
in #772, `image-build-args` was implemented, but the way it is implemented it wasn't clear how to make it work for pass-through envvars. to better explain this, in docker-compose's `environment:`, one...
What’s the recommended method for centralizing the `draft create` process to be able to orthogonalize the application logic from the infra logic? To illustrate what I’m getting at here, notice...
Currently, there is a lot of black magic that goes on when `draft up` is run, spanning at least `docker` and `helm` commands. ``` $ draft up --debug Draft Up...
After skimming through the existing packs, it looks like most or all of them don't have executables, which could explain this bug I found: if a file in a pack...
Perhaps a unit test is worth a thousand words here. This is the test I expected to pass, which works perfectly fine in JS Handlebars: ``` def test_each_this_array(self): template =...