Brad Rydzewski
Brad Rydzewski
the answer also indicates first class support could make sense. If that is the case I would be happy to send a pull request. If not, I completely understand and...
I understand this can be achieved with custom decoders. I am interested in contributing a patch to support this natively. If this is out-of-scope for the project I completely understand...
@teepark what about an option to provide a custom lookup function or interface? It would require some minor refactoring but people could add their own custom lookup and their own...
@casdr I am not sure I fully understand the description. The code snippets you provided (export variable=value) override the environment variable value inside the container with user-defined values. Also note...
Keep in mind that you cannot export a variable from one step to another. If you want to share state between steps you need to do so using disk. here...
It looks like they are actually moving the Build resource to Tekton, so Tekton would be responsible for the build and Knative is responsible for running. So it may be...
The goal with adopting Knative/Tekton is not to solve the volume problem per-se, the goal is to leverage a solution that is backed by a large community of Kubernetes experts....
@zetaab I am currently working on porting the Docker runner to the new [runner-go](https://github.com/drone/runner-go) library [here](https://github.com/drone-runners/drone-runner-docker). I expect this task will be done by end of week. Once complete, the...
Adding notes from our chat. Add the array of step outputs to [`runtime.Step`](https://github.com/drone/runner-go/blob/master/pipeline/runtime/type.go#L101) interface: ```diff Step interface { // GetName returns the step name. GetName() string // GetDependencies returns the...
You can set `DRONE_CONVERT_PLUGIN_CACHE_SIZE=0` to disable caching. See relevant issue: https://github.com/harness/gitness/pull/3292#issuecomment-1332623285