type ExecRunOpts struct {
// Redactor redacts tokens from the output Redactor func(text string) string// TimeoutBehavior configures what to do in case of timeout TimeoutBehavior argoexec.TimeoutBehavior// SkipErrorLogging determines whether to skip logging of execution errors (rc > 0) SkipErrorLogging bool// CaptureStderr determines whether to capture stderr in addition to stdout CaptureStderr bool
}