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

Move Resources implementation to their package 🎗 #2103

Merged
merged 1 commit into from
Feb 28, 2020

Conversation

vdemeester
Copy link
Member

Changes

GitResource, ImageResource, … are PipelineResource implementation and
are not really part of the API. At least, they shouldn't be part of
the pkg/apis/pipeline package.

This moves those to their own packages under
pkg/apis/resource/v1alpha1:

  • cloudevent for CloudEventResource
  • cluster for ClusterResource
  • git for GitResource
  • image for ImageResource
  • pullrequest for PullRequestResource
  • storage for all the storage resources GCSResource,
    BuildGCSResource and ArtifactBucket, ArtifactPVC

This renames the struct (to make lint and I happy 😌) and moves
v1alpha1.ResourceFromType to resource.FromType

Signed-off-by: Vincent Demeester vdemeest@redhat.com

/cc @afrittoli @sbwsg @bobcatfish @skaegi

Submitter Checklist

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

See the contribution guide for more details.

Double check this list of stuff that's easy to miss:

Reviewer Notes

If API changes are included, additive changes must be approved by at least two OWNERS and backwards incompatible changes must be approved by more than 50% of the OWNERS, and they must first be added in a backwards compatible way.

Release Notes

v1alpha1 PipelineResource implementation package is moved out of the Pipeline API package

@tekton-robot tekton-robot requested review from afrittoli, bobcatfish, a user and skaegi February 25, 2020 18:33
@googlebot googlebot added the cla: yes Trying to make the CLA bot happy with ppl from different companies work on one commit label Feb 25, 2020
@tekton-robot tekton-robot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Feb 25, 2020
@vdemeester
Copy link
Member Author

/kind cleanup
/area api

@tekton-robot tekton-robot added kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. area/api Indicates an issue or PR that deals with the API. labels Feb 25, 2020
@vdemeester vdemeester added this to the Pipelines 0.11 🐱 milestone Feb 25, 2020
@tekton-robot
Copy link
Collaborator

The following is the coverage report on pkg/.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1alpha1/resource_types.go 75.8% 100.0% 24.2
pkg/apis/resource/v1alpha1/cloudevent/cloud_event_resource.go Do not exist 88.2%
pkg/apis/resource/v1alpha1/cluster/cluster_resource.go Do not exist 75.7%
pkg/apis/resource/v1alpha1/git/git_resource.go Do not exist 80.0%
pkg/apis/resource/v1alpha1/image/image_resource.go Do not exist 60.0%
pkg/apis/resource/v1alpha1/pullrequest/pull_request_resource.go Do not exist 75.9%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on pkg/.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1alpha1/resource_types.go 75.8% 100.0% 24.2
pkg/apis/resource/v1alpha1/cloudevent/cloud_event_resource.go Do not exist 88.2%
pkg/apis/resource/v1alpha1/cluster/cluster_resource.go Do not exist 75.7%
pkg/apis/resource/v1alpha1/git/git_resource.go Do not exist 80.0%
pkg/apis/resource/v1alpha1/image/image_resource.go Do not exist 60.0%
pkg/apis/resource/v1alpha1/pullrequest/pull_request_resource.go Do not exist 75.9%

@vdemeester
Copy link
Member Author

Opened #2105 to reduce the size of this PR 👼

@vdemeester
Copy link
Member Author

/test pull-tekton-pipeline-integration-tests

GitResource, ImageResource, … are PipelineResource implementation and
are not really part of the API. At least, they shouldn't be part of
the `pkg/apis/pipeline` package.

This moves those to their own packages under
`pkg/apis/resource/v1alpha1`:
- `cloudevent` for `CloudEventResource`
- `cluster` for `ClusterResource`
- `git` for `GitResource`
- `image` for `ImageResource`
- `pullrequest` for `PullRequestResource`
- `storage` for all the storage resources `GCSResource`,
  `BuildGCSResource` and `ArtifactBucket`, `ArtifactPVC`

This renames the struct (to make lint and I happy 😌) and moves
`v1alpha1.ResourceFromType` to `resource.FromType`

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
@tekton-robot
Copy link
Collaborator

return storageVol
}

// of the step will include name.
Copy link

Choose a reason for hiding this comment

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

Possibly missing comment lines here?

Copy link
Member Author

Choose a reason for hiding this comment

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

oh yeah indeed.. what happened there…

@tekton-robot
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: sbwsg

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 Feb 26, 2020
@bobcatfish
Copy link
Collaborator

Awesome! Thanks for cleaning this up @vdemeester :D

Quick question: I don't quite understand why there are changes in third_party in this PR as well?

@vdemeester
Copy link
Member Author

Awesome! Thanks for cleaning this up @vdemeester :D

Quick question: I don't quite understand why there are changes in third_party in this PR as well?

I don't either… it got changed when I ran ./hack/update-codegen.sh 😓

@@ -1,5 +1,5 @@
/*
Copyright 2019 The Tekton Authors
Copyright 2019-2020 The Tekton Authors
Copy link
Member

Choose a reason for hiding this comment

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

should this just be 2020?

@dibyom
Copy link
Member

dibyom commented Feb 28, 2020

/lgtm

@tekton-robot tekton-robot added the lgtm Indicates that a PR is ready to be merged. label Feb 28, 2020
@vdemeester
Copy link
Member Author

/retest

@tekton-robot tekton-robot merged commit 1e25e91 into tektoncd:master Feb 28, 2020
@vdemeester vdemeester deleted the move-resource-impl branch February 28, 2020 18:01
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. area/api Indicates an issue or PR that deals with the API. cla: yes Trying to make the CLA bot happy with ppl from different companies work on one commit kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. lgtm Indicates that a PR is ready to be merged. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants