-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TaskRun auto-conversion from v1alha1 to v1alpha2 🎋
This adds auto-conversion methods and tests for TaskRun types in v1alpha1 and v1alpha2. Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
- Loading branch information
1 parent
a1a3280
commit 9eef4d5
Showing
7 changed files
with
700 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
/* | ||
Copyright 2020 The Tekton Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
// nolint: golint | ||
package v1alpha1 | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha2" | ||
"knative.dev/pkg/apis" | ||
) | ||
|
||
var _ apis.Convertible = (*TaskRun)(nil) | ||
|
||
// ConvertUp implements api.Convertible | ||
func (source *TaskRun) ConvertUp(ctx context.Context, obj apis.Convertible) error { | ||
switch sink := obj.(type) { | ||
case *v1alpha2.TaskRun: | ||
sink.ObjectMeta = source.ObjectMeta | ||
if err := source.Spec.ConvertUp(ctx, &sink.Spec); err != nil { | ||
return err | ||
} | ||
sink.Status = source.Status | ||
return nil | ||
default: | ||
return fmt.Errorf("unknown version, got: %T", sink) | ||
} | ||
} | ||
|
||
func (source *TaskRunSpec) ConvertUp(ctx context.Context, sink *v1alpha2.TaskRunSpec) error { | ||
sink.ServiceAccountName = source.ServiceAccountName | ||
sink.TaskRef = source.TaskRef | ||
if source.TaskSpec != nil { | ||
sink.TaskSpec = &v1alpha2.TaskSpec{} | ||
if err := source.TaskSpec.ConvertUp(ctx, sink.TaskSpec); err != nil { | ||
return err | ||
} | ||
} | ||
sink.Status = source.Status | ||
sink.Timeout = source.Timeout | ||
sink.PodTemplate = source.PodTemplate | ||
sink.Workspaces = source.Workspaces | ||
sink.LimitRangeName = source.LimitRangeName | ||
sink.Params = source.Params | ||
sink.Resources = source.Resources | ||
// Deprecated fields | ||
if len(source.Inputs.Params) > 0 && len(source.Params) > 0 { | ||
// This shouldn't happen as it shouldn't pass validation | ||
return apis.ErrMultipleOneOf("inputs.params", "params") | ||
} | ||
if len(source.Inputs.Params) > 0 { | ||
sink.Params = make([]v1alpha2.Param, len(source.Inputs.Params)) | ||
for i, param := range source.Inputs.Params { | ||
sink.Params[i] = *param.DeepCopy() | ||
} | ||
} | ||
if len(source.Inputs.Resources) > 0 { | ||
if sink.Resources == nil { | ||
sink.Resources = &v1alpha2.TaskRunResources{} | ||
} | ||
if len(source.Inputs.Resources) > 0 && source.Resources != nil && len(source.Resources.Inputs) > 0 { | ||
// This shouldn't happen as it shouldn't pass validation but just in case | ||
return apis.ErrMultipleOneOf("inputs.resources", "resources.inputs") | ||
} | ||
sink.Resources.Inputs = make([]v1alpha2.TaskResourceBinding, len(source.Inputs.Resources)) | ||
for i, resource := range source.Inputs.Resources { | ||
sink.Resources.Inputs[i] = v1alpha2.TaskResourceBinding{ | ||
PipelineResourceBinding: v1alpha2.PipelineResourceBinding{ | ||
Name: resource.Name, | ||
ResourceRef: resource.ResourceRef, | ||
ResourceSpec: resource.ResourceSpec, | ||
}, | ||
Paths: resource.Paths, | ||
} | ||
} | ||
} | ||
if len(source.Outputs.Resources) > 0 { | ||
if sink.Resources == nil { | ||
sink.Resources = &v1alpha2.TaskRunResources{} | ||
} | ||
if len(source.Outputs.Resources) > 0 && source.Resources != nil && len(source.Resources.Outputs) > 0 { | ||
// This shouldn't happen as it shouldn't pass validation but just in case | ||
return apis.ErrMultipleOneOf("outputs.resources", "resources.outputs") | ||
} | ||
sink.Resources.Outputs = make([]v1alpha2.TaskResourceBinding, len(source.Outputs.Resources)) | ||
for i, resource := range source.Outputs.Resources { | ||
sink.Resources.Outputs[i] = v1alpha2.TaskResourceBinding{ | ||
PipelineResourceBinding: v1alpha2.PipelineResourceBinding{ | ||
Name: resource.Name, | ||
ResourceRef: resource.ResourceRef, | ||
ResourceSpec: resource.ResourceSpec, | ||
}, | ||
Paths: resource.Paths, | ||
} | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
// ConvertDown implements api.Convertible | ||
func (sink *TaskRun) ConvertDown(ctx context.Context, obj apis.Convertible) error { | ||
switch source := obj.(type) { | ||
case *v1alpha2.TaskRun: | ||
sink.ObjectMeta = source.ObjectMeta | ||
if err := sink.Spec.ConvertDown(ctx, &source.Spec); err != nil { | ||
return err | ||
} | ||
sink.Status = source.Status | ||
return nil | ||
default: | ||
return fmt.Errorf("unknown version, got: %T", sink) | ||
} | ||
} | ||
|
||
func (sink *TaskRunSpec) ConvertDown(ctx context.Context, source *v1alpha2.TaskRunSpec) error { | ||
sink.ServiceAccountName = source.ServiceAccountName | ||
sink.TaskRef = source.TaskRef | ||
if source.TaskSpec != nil { | ||
sink.TaskSpec = &TaskSpec{} | ||
if err := sink.TaskSpec.ConvertDown(ctx, source.TaskSpec); err != nil { | ||
return err | ||
} | ||
} | ||
sink.Status = source.Status | ||
sink.Timeout = source.Timeout | ||
sink.PodTemplate = source.PodTemplate | ||
sink.Workspaces = source.Workspaces | ||
sink.LimitRangeName = source.LimitRangeName | ||
sink.Params = source.Params | ||
sink.Resources = source.Resources | ||
return nil | ||
} |
Oops, something went wrong.