-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove references to "build" #815
Labels
good first issue
Denotes an issue ready for a new contributor, according to the "help wanted" guidelines.
Comments
imjasonh
added
the
good first issue
Denotes an issue ready for a new contributor, according to the "help wanted" guidelines.
label
Apr 30, 2019
hrishin
added a commit
to hrishin/tekton-pipeline
that referenced
this issue
Apr 30, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815
3 tasks
hrishin
added a commit
to hrishin/tekton-pipeline
that referenced
this issue
May 7, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815
aristosvo
added a commit
to aristosvo/pipeline
that referenced
this issue
May 25, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815
3 tasks
vdemeester
pushed a commit
to hrishin/tekton-pipeline
that referenced
this issue
May 29, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815
vdemeester
added a commit
to hrishin/tekton-pipeline
that referenced
this issue
May 29, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815 Signed-off-by: Vincent Demeester <[email protected]>
vdemeester
pushed a commit
to vdemeester/tektoncd-pipeline
that referenced
this issue
May 29, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815 Signed-off-by: Vincent Demeester <[email protected]>
vdemeester
pushed a commit
to hrishin/tekton-pipeline
that referenced
this issue
May 29, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815 Signed-off-by: Vincent Demeester <[email protected]>
vdemeester
pushed a commit
to hrishin/tekton-pipeline
that referenced
this issue
May 30, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - tektoncd#815 Signed-off-by: Vincent Demeester <[email protected]>
tekton-robot
pushed a commit
that referenced
this issue
Jun 4, 2019
At present `TaskRun's` `status`, it's pod containers name(`step name` prefix) and logs has references to `build` keyword. Which kind of gives the perception that `Task` is intended to perform only build operations. This patch removes those references from `TaskRun`. Fixes - #815 Signed-off-by: Vincent Demeester <[email protected]>
Looks like there's still at least one lingering reference:
|
imjasonh
added a commit
to imjasonh/pipeline
that referenced
this issue
Aug 21, 2019
This was a vestige of the days when Tekton (née "build pipelines") was focused on "building" instead of arbitrary "task execution". Fixes tektoncd#815
imjasonh
added a commit
to imjasonh/pipeline
that referenced
this issue
Aug 21, 2019
This was a vestige of the days when Tekton (née "build pipelines") was focused on "building" instead of arbitrary "task execution". Fixes tektoncd#815
tekton-robot
pushed a commit
that referenced
this issue
Aug 21, 2019
This was a vestige of the days when Tekton (née "build pipelines") was focused on "building" instead of arbitrary "task execution". Fixes #815
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
good first issue
Denotes an issue ready for a new contributor, according to the "help wanted" guidelines.
Expected Behavior
TaskRuns are not assumed to be "building" something; they can do anything, including tests, deployments, busy-waits, making sandwiches
Actual Behavior
TaskRuns describe things in terms of "build" all over the place, including (but not limited to):
Building
(here) -- this could be changed toRunning
build-step-${step-name}
(here) -- this could be changed tostep-
Build successful
(here) -- this could be changed toTaskRun successful
, or just not log anything.(There are probably more)
The text was updated successfully, but these errors were encountered: