-
Notifications
You must be signed in to change notification settings - Fork 134
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
WIP: Add an intoto formatter. #13
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This needs tests and documentation still, marking as WIP. |
a6f606f
to
38d20ab
Compare
hey @dlorenc , that was quick! Is there a reason for importing in-toto wholesale and not as a dependency in go.sum? (I am sure there must be, so curious). |
Good question! There are two main modes to work with go modules, vendoring and non vendoring. We're using vendoring here, so the code still gets committed. I prefer vendoring, but it's not something every project does. |
aca7937
to
ede69e7
Compare
This translates TaskRuns to an InToto link format. Resources are mapped to Products/Materials, and the TaskRun information is mapped to Environment.
@dlorenc: PR needs rebase. 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. |
Vendoring was useful before go.mod, right now it's fully ok to let go mod generate the vendor directory on demand and just push the go.mod and go.sum files to the project. Btw, I am working on in-toto run support on in-toto-golang. This might be useful for you: in-toto/in-toto-golang#56 I will definitely have a look on this PR here, too :) |
Issues go stale after 90d of inactivity. /lifecycle stale Send feedback to tektoncd/plumbing. |
Stale issues rot after 30d of inactivity. /lifecycle rotten Send feedback to tektoncd/plumbing. |
@dlorenc: The following tests failed, say
Full PR test history. Your PR dashboard. 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. I understand the commands that are listed here. |
* added some skeleton code more or less copied from PR tektoncd#13 by dlorenc * Added a dummy implementation that just prints the input/output resources. * Test to bump to #minor * Use correct branch for "master" * Fixes release branch name too. * added deployment file for eks
Rotten issues close after 30d of inactivity. /close Send feedback to tektoncd/plumbing. |
@tekton-robot: Closed this PR. In response to this:
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. |
@dlorenc do you know the state of this PR here? Is this PR deprecated? |
Yeah, this one is deprecated, it's being replaced by the ITE-6 formatter. The PR hasn't been opened yet, but you can see the branch and discussion in #65. I think @kommendorkapten is going to open it early next week! |
This translates TaskRuns to an InToto link format. Resources are mapped
to Products/Materials, and the TaskRun information is mapped to Environment.
Ref #12