-
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
Add cluster remote resolver #5405
Conversation
The following is the coverage report on the affected files.
|
/retest |
1 similar comment
/retest |
/assign @vdemeester @jerop @lbernick |
docs/cluster-resolver.md
Outdated
|
||
| Option Name | Description | Example Values | | ||
|----------------|--------------------------------------------------------------------|--------------------| | ||
| `default-kind` | The default resource kind to fetch if not specified in parameters. | `task`, `pipeline` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe worth having a default namespace?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, seems reasonable. Adding that now.
4323579
to
e7cc98f
Compare
The following is the coverage report on the affected files.
|
/retest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the resolver have access to all namespace (by default, in what we ship / will ship) ? It might not have (or shouldn't ?), and thus allowing the user to specify the namespace "might" be prohibited. I don't think that's a problem, but we might want to document that.
app.kubernetes.io/part-of: tekton-pipelines | ||
data: | ||
# The default kind to fetch. | ||
default-kind: "task" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this used for ? 🤔 if we do not pass kind
param right ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#5408 would handle this for "from pipeline usage" I guess, but when creating the request aside from that, I think it make sense 👼🏼
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I'm torn as to whether to include this default or not. We do need to know the kind
so we know whether to use the Task
or Pipeline
lookup, but the git
resolver doesn't actually need to know, nor will the coming go-scm-based one. The bundle
and hub
ones also do need to know, so they can look in the right bundle layer/directory respectively.
Good question? With https://github.com/tektoncd/pipeline/pull/5405/files#diff-ce83974e71e344e3684dc4c1d40b14800038482fa264e3111f08c83827d60fc6R28-R30, the resolver should, I think? |
Indeed 👼🏼 |
Ok, so that's a really good question: should we allow access to all namespaces? Or perhaps more accurately, should we have a way of only allowing and/or blocking access to a specified list of namespaces? I'm leaning towards yes... |
Alright, I'm adding new |
Relates to tektoncd#4476 and https://github.com/tektoncd/community/blob/main/teps/0096-pipelines-v1-api.md This resolver replaces `ClusterTask`s going forward. Signed-off-by: Andrew Bayer <andrew.bayer@gmail.com>
e7cc98f
to
98879a4
Compare
The following is the coverage report on the affected files.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code LGTM 🐯
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lbernick, vdemeester 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 |
/test check-pr-has-kind-label |
@abayer: The specified target(s) for
The following commands are available to trigger optional jobs:
Use 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. |
/lgtm |
Changes
Relates to #4476 and https://github.com/tektoncd/community/blob/main/teps/0096-pipelines-v1-api.md
This resolver replaces
ClusterTask
s going forward./kind feature
Submitter Checklist
As the author of this PR, please check off the items in this checklist:
functionality, content, code)
/kind <type>
. Valid types are bug, cleanup, design, documentation, feature, flake, misc, question, tepRelease Notes