-
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
fix: do not set default kind when taskRef resolver is present #7763
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,7 @@ func (tr *TaskRef) ConvertFrom(ctx context.Context, source v1.TaskRef) { | |
// default and it will be in beta before the stored version of CRD getting swapped to v1. | ||
func (tr TaskRef) convertBundleToResolver(sink *v1.TaskRef) { | ||
if tr.Bundle != "" { | ||
sink.Kind = "" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the original "kind" attribute to stay consistent with the behavior elsewhere: once a resolver is used, "kind" is no longer necessary. |
||
sink.ResolverRef = v1.ResolverRef{ | ||
Resolver: "bundles", | ||
Params: v1.Params{{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8380,7 +8380,6 @@ metadata: | |
spec: | ||
serviceAccountName: test-sa | ||
taskRef: | ||
kind: Task | ||
resolver: bar | ||
`) | ||
|
||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -710,7 +710,6 @@ spec: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
serviceAccountName: default | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeout: 1h | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
taskRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: Task | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolver: bundles | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: bundle | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -746,10 +745,9 @@ metadata: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
namespace: %s | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
taskRunTemplate: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeouts: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeouts: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pipeline: 1h | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pipelineRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: Pipeline | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The pipeline/pkg/apis/pipeline/v1beta1/pipelineref_types.go Lines 19 to 37 in d714545
pipeline/pkg/apis/pipeline/v1/pipelineref_types.go Lines 19 to 32 in d714545
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolver: bundles | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: bundle | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -767,7 +765,6 @@ status: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tasks: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: hello-world | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
taskRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: Task | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolver: bundles | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: bundle | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -788,7 +785,6 @@ metadata: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeout: 1h | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
taskRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: Task | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolver: bundles | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: bundle | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -822,10 +818,9 @@ metadata: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: %s | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
namespace: %s | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeouts: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeouts: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pipeline: 1h | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pipelineRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: Pipeline | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolver: bundles | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: bundle | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -843,7 +838,6 @@ status: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tasks: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: hello-world | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
taskRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: Task | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolver: bundles | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: bundle | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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.
This will continue to work even after TEP-0154 is done