Skip to content
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

Add a pipeline export command #1398

Conversation

chmouel
Copy link
Member

@chmouel chmouel commented Jun 19, 2021

Will export the pipeline definition to a yaml file, removing the auto generated
fields.

If you do a tkn pipeline export pipeline it will convert a pipeline that look like this :

https://paste.gg/p/anonymous/e105629cffe547238f125f0862aa23be

and export it like that :

https://paste.gg/p/anonymous/7515299fddbe44b3b54aaf12e6a7bba1

Partially address bug #1220

Changes

Submitter Checklist

These are the criteria that every PR should meet, please check them off as you
review them:

  • Includes tests (if functionality changed/added)
  • Run the code checkers with make check
  • Regenerate the manpages, docs and go formatting with make generated
  • Commit messages follow commit message best practices

See the contribution guide
for more details.

Release Notes

@tekton-robot tekton-robot added release-note Denotes a PR that will be considered when it comes time to generate release notes. do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. labels Jun 19, 2021
@tekton-robot tekton-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Jun 19, 2021
@tekton-robot
Copy link
Contributor

The following is the coverage report on the affected files.
Say /test pull-tekton-cli-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/cmd/pipeline/export.go Do not exist 17.9%

@chmouel
Copy link
Member Author

chmouel commented Jun 19, 2021

Probably should discuss this next cli WG

I am torn between :

tkn export pipeline

or like this is implemented here :

tkn pipeline export

Or calling it convert instead of export

cc @nikhil-thomas @siamaksade @tektoncd/cli-maintainers

@chmouel chmouel force-pushed the issue-1220-provide-a-tkn-command-to-export-a-pipeline-without-k branch from 5dca927 to 6a98a9b Compare June 19, 2021 17:24
@tekton-robot
Copy link
Contributor

The following is the coverage report on the affected files.
Say /test pull-tekton-cli-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/cmd/pipeline/export.go Do not exist 17.9%

@chmouel
Copy link
Member Author

chmouel commented Jun 21, 2021

OOps just saw there is @vinamra28 #1359 (comment) which is not the same but pretty similiar, either way I can update this PR post 1359 or close this if 1359 addresse this use case (exporting a task as yaml)

@chmouel
Copy link
Member Author

chmouel commented Jun 23, 2021

/retest

Copy link
Member

@vinamra28 vinamra28 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we have a unit test for this command as well in order to maintain the consistency?

pkg/cmd/pipeline/export.go Outdated Show resolved Hide resolved
pkg/cmd/pipeline/export.go Show resolved Hide resolved
@chmouel
Copy link
Member Author

chmouel commented Jun 23, 2021

Yup will work on this (when i get some time :))

@tekton-robot
Copy link
Contributor

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale with a justification.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close with a justification.
If this issue should be exempted, mark the issue as frozen with /lifecycle frozen with a justification.

/lifecycle stale

Send feedback to tektoncd/plumbing.

@tekton-robot tekton-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Oct 15, 2021
@tekton-robot
Copy link
Contributor

Stale issues rot after 30d of inactivity.
Mark the issue as fresh with /remove-lifecycle rotten with a justification.
Rotten issues close after an additional 30d of inactivity.
If this issue is safe to close now please do so with /close with a justification.
If this issue should be exempted, mark the issue as frozen with /lifecycle frozen with a justification.

/lifecycle rotten

Send feedback to tektoncd/plumbing.

@tekton-robot tekton-robot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels Nov 14, 2021
@tekton-robot
Copy link
Contributor

Rotten issues close after 30d of inactivity.
Reopen the issue with /reopen with a justification.
Mark the issue as fresh with /remove-lifecycle rotten with a justification.
If this issue should be exempted, mark the issue as frozen with /lifecycle frozen with a justification.

/close

Send feedback to tektoncd/plumbing.

@tekton-robot
Copy link
Contributor

@tekton-robot: Closed this PR.

In response to this:

Rotten issues close after 30d of inactivity.
Reopen the issue with /reopen with a justification.
Mark the issue as fresh with /remove-lifecycle rotten with a justification.
If this issue should be exempted, mark the issue as frozen with /lifecycle frozen with a justification.

/close

Send feedback to tektoncd/plumbing.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@chmouel chmouel reopened this Dec 17, 2021
@tekton-robot
Copy link
Contributor

The following is the coverage report on the affected files.
Say /test pull-tekton-cli-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/cmd/pipeline/export.go Do not exist 17.9%

@vinamra28
Copy link
Member

/remove-lifecycle rotten

@tekton-robot tekton-robot removed the lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. label Dec 17, 2021
@chmouel chmouel force-pushed the issue-1220-provide-a-tkn-command-to-export-a-pipeline-without-k branch from 6a98a9b to 8ea0dd9 Compare January 6, 2022 11:53
@chmouel
Copy link
Member Author

chmouel commented Jan 6, 2022

/hold cancel

@tekton-robot tekton-robot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jan 6, 2022
@tekton-robot
Copy link
Contributor

The following is the coverage report on the affected files.
Say /test pull-tekton-cli-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/cmd/pipeline/export.go Do not exist 17.9%
pkg/export/export.go Do not exist 100.0%

@chmouel chmouel force-pushed the issue-1220-provide-a-tkn-command-to-export-a-pipeline-without-k branch from 8ea0dd9 to 6a672e3 Compare January 6, 2022 11:57
@chmouel chmouel force-pushed the issue-1220-provide-a-tkn-command-to-export-a-pipeline-without-k branch from ccd24f7 to dd51136 Compare January 14, 2022 07:26
@tekton-robot
Copy link
Contributor

The following is the coverage report on the affected files.
Say /test pull-tekton-cli-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/cmd/pipeline/export.go Do not exist 16.1%
pkg/export/export.go Do not exist 100.0%

Will export the pipeline definition to a yaml file, removing the auto generated
fields.

Partially address bug tektoncd#1220

Signed-off-by: Chmouel Boudjnah <[email protected]>
@chmouel chmouel force-pushed the issue-1220-provide-a-tkn-command-to-export-a-pipeline-without-k branch from dd51136 to 1f719b3 Compare January 14, 2022 11:59
@chmouel
Copy link
Member Author

chmouel commented Jan 14, 2022

Thanks @vinamra28 there was a lot of warnings when running locally with newer golangci-lint (cf: #1481) and didn't see this one

@tekton-robot
Copy link
Contributor

The following is the coverage report on the affected files.
Say /test pull-tekton-cli-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/cmd/pipeline/export.go Do not exist 16.1%
pkg/export/export.go Do not exist 100.0%

Copy link
Member

@vinamra28 vinamra28 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm
/meow

@tekton-robot
Copy link
Contributor

@vinamra28: cat image

In response to this:

/lgtm
/meow

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@tekton-robot tekton-robot added the lgtm Indicates that a PR is ready to be merged. label Jan 14, 2022
// like creationTimeStamp since it's a time.Time that is not a pointer yaml would display a creationTimeStamp: null
// let's do some regexp magic here, which should hopefully safe.
func pipelineExportRemoveExtraFields(input string) string {
m1 := regexp.MustCompile(`\n creationTimestamp: null\n`)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

\n creationTimestamp: null\n
Do we need two spaces in the regex

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep that's how it matches ,what do you suggest we do ? Having a \s* ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My editor showed an error for this 😸 just wanted to check.
/lgtm

@tekton-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: pradeepitm12, vinamra28

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@tekton-robot tekton-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jan 21, 2022
@tekton-robot tekton-robot merged commit 32e3d7e into tektoncd:main Jan 21, 2022
@chmouel chmouel deleted the issue-1220-provide-a-tkn-command-to-export-a-pipeline-without-k branch January 21, 2022 09:48
pradeepitm12 added a commit that referenced this pull request Jan 31, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Jan 31, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Jan 31, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Jan 31, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Jan 31, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26
null | [Pradeep Kumar] update go build and test | 2022/01/31-15:13

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Feb 1, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26
null | [Pradeep Kumar] update go build and test | 2022/01/31-15:13

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Feb 1, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26
null | [Pradeep Kumar] update go build and test | 2022/01/31-15:13

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Feb 1, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26
null | [Pradeep Kumar] update go build and test | 2022/01/31-15:13
null | [Pradeep Kumar] update goreleaser | 2022/02/01-09:36

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Feb 1, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26
null | [Pradeep Kumar] update go build and test | 2022/01/31-15:13
null | [Pradeep Kumar] update goreleaser | 2022/02/01-09:36
null | [Pradeep Kumar] update goreleaser config | 2022/02/01-11:28

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Feb 1, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26
null | [Pradeep Kumar] update go build and test | 2022/01/31-15:13
null | [Pradeep Kumar] update goreleaser | 2022/02/01-09:36
null | [Pradeep Kumar] update goreleaser config | 2022/02/01-11:28

Signed-off-by: Pradeep Kumar <[email protected]>
pradeepitm12 added a commit that referenced this pull request Feb 1, 2022
#1461 | [Piyush Garg] Update readme with latest v0.21.0 | 2021/10/06-10:58
#1462 | [Daniel Helfand] update chocolatey package for 0.21.0 release | 2021/10/06-16:17
#1457 | [pratap0007] Replace test builders to structs in unit test for `tkn pipeline` | 2021/10/13-09:37
#1464 | [Rick] Correct the license claim in the goreleaser config | 2021/10/15-15:01
#1463 | [pratap0007] Replace test builders to structs in unit test for `tkn pipelinerun` | 2021/10/20-02:17
#1466 | [Piyush Garg] Remove builders from codebase | 2021/10/21-06:44
#1475 | [Vincent Demeester] Update some dependencies to fix vulnerabiliites | 2021/12/15-13:17
#1398 | [Chmouel Boudjnah] Add a pipeline export command | 2022/01/21-09:43
#1479 | [vinamra28] Handle graceful termination of Pipeline | 2022/01/21-12:16
#1486 | [PuneetPunamiya] Adds operator verison in output of `tkn version` command | 2022/01/24-06:08
null | [vinamra28] Show all cancelled taskruns in message section | 2022/01/25-05:41
null | [pratap0007] Skips to ask specifications for optional workspace | 2022/01/26-15:59
null | [Chmouel Boudjnah] Bump go mod version to 1.16 | 2022/01/27-07:09
null | [Pradeep Kumar] bump pipelines to v0.31.0 bump triggers to v0.17.1 bump hub/api to latest bump knative.dev/pkg to latest hub docs update bump pipelines to v.32.0 | 2022/01/27-15:11
null | [vinamra28] Bump Tekton Hub CLI to latest | 2022/01/28-09:01
null | [Zhu Sheng Li] Hide sections with empty results for `describe` command | 2022/01/28-23:54
null | [Piyush Garg] Bump deps | 2022/01/31-07:12
null | [Pradeep Kumar] update golangci-lint version | 2022/01/31-11:26
null | [Pradeep Kumar] update go build and test | 2022/01/31-15:13
null | [Pradeep Kumar] update goreleaser | 2022/02/01-09:36
null | [Pradeep Kumar] update goreleaser config | 2022/02/01-11:28

Signed-off-by: Pradeep Kumar <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. release-note Denotes a PR that will be considered when it comes time to generate release notes. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants