Dmitriy Kalinin

Results 407 comments of Dmitriy Kalinin

> I did some research and I found that kapp checks the existence of related resources after applying changes. But resources will be deleted eventually. i think additional flag would...

within vendir and kapp-controller we needed a way to deterministically sort semvers even if they are "equal" according to spec (e.g. version is same but buildmeta is different). we did...

some work is happening in kapp to clean up similar functionality. will want to port over those changes here. stay tuned.

updated kapp change: https://github.com/vmware-tanzu/carvel-kapp/commit/ed8c3f208aaabfac0c678d50cfee120fbd8377d9

idea for the flag name: `--file-archive`. this would put it into same category as `--file` so it would be more naturally discoverable.

cc @renuy my 2c `--offline` => `--template`

last time this idea came up, i couldnt justify need for yaml flags config file vs just using basic script. example above is just: ``` #!/bin/sh ytt -f file1.yml -f...

because ytt is using file extensions to determine whether something is a yaml template or not, you have to "name" the file thats being ingested, ytt allows following syntax: `ytt...

when= included in https://github.com/k14s/ytt/releases/tag/v0.28.0

``` #@ def foo(): - foo #@ end --- #@ def blah(): foo: blah #@ end --- in1: #@ "foo" in foo() in1_idx: #@ 0 in foo() in2: #@ "foo"...