Jason Hall
Jason Hall
> I'd like to load this image, retag it and then push it into a local registry, without modification. You may be interested in a different tool, like [`crane`](https://github.com/google/go-containerregistry/tree/main/cmd/crane) or...
You can run Kaniko to generate an image locally in either the [tar format](https://github.com/GoogleContainerTools/kaniko#--tarpath), or the [OCI layout format](https://github.com/GoogleContainerTools/kaniko#--oci-layout-path). The warmer can pull remote base images and place them in...
+1 to removing `-x` and keeping `-e`. 👍
The reason for adding `-e` in the first place was to prevent folks from doing something like this: ``` script: | cat foo.txt echo foo.txt exists yay ``` ...having seen...
I'd definitely be interested in more such feedback, if you can share it. I don't have a problem in theory with there being some feature flag to change the default...
> yeah my (not great) solution for catalog compatibility was to audit script mode tasks in the catalog and explicitly add them in (and probably enforce this via catlin) This...
> I'm not sure I follow. The flag proposed is to control whether the defaultScriptPreamble is either"#!/bin/sh\nset -e\n or "#!/bin/sh\n. My point was that `defaultScriptPreamble` would be a string, not...
In this case, you have to `kubectl create -f tr.yaml` (`create`, not `apply`), because the TaskRun YAML includes `generateName: custom-volume-`. This will create a TaskRun resource with a generated name...
When you create a Kubernetes resource with a generated name, you have to delete it by that name as well. This means you can't use `kubectl delete -f resource.yaml`, since...
Is this something that can be easily generated using existing tooling? I'm a bit worried we'll end up with structs and YAML validation out of sync, and I'm also a...