forked from knative/eventing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrevision_conversion.go
117 lines (101 loc) · 3.8 KB
/
revision_conversion.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
Copyright 2019 The Knative 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.
*/
package v1alpha1
import (
"context"
"fmt"
"knative.dev/pkg/apis"
"knative.dev/pkg/ptr"
"github.com/knative/serving/pkg/apis/serving/v1beta1"
corev1 "k8s.io/api/core/v1"
)
// ConvertUp implements apis.Convertible
func (source *Revision) ConvertUp(ctx context.Context, obj apis.Convertible) error {
switch sink := obj.(type) {
case *v1beta1.Revision:
sink.ObjectMeta = source.ObjectMeta
source.Status.ConvertUp(ctx, &sink.Status)
return source.Spec.ConvertUp(ctx, &sink.Spec)
default:
return fmt.Errorf("unknown version, got: %T", sink)
}
}
// ConvertUp helps implement apis.Convertible
func (source *RevisionTemplateSpec) ConvertUp(ctx context.Context, sink *v1beta1.RevisionTemplateSpec) error {
sink.ObjectMeta = source.ObjectMeta
return source.Spec.ConvertUp(ctx, &sink.Spec)
}
// ConvertUp helps implement apis.Convertible
func (source *RevisionSpec) ConvertUp(ctx context.Context, sink *v1beta1.RevisionSpec) error {
sink.ContainerConcurrency = v1beta1.RevisionContainerConcurrencyType(
source.ContainerConcurrency)
if source.TimeoutSeconds != nil {
sink.TimeoutSeconds = ptr.Int64(*source.TimeoutSeconds)
}
switch {
case source.DeprecatedContainer != nil && len(source.Containers) > 0:
return apis.ErrMultipleOneOf("container", "containers")
case source.DeprecatedContainer != nil:
sink.PodSpec = corev1.PodSpec{
ServiceAccountName: source.ServiceAccountName,
Containers: []corev1.Container{*source.DeprecatedContainer},
Volumes: source.Volumes,
}
case len(source.Containers) == 1:
sink.PodSpec = source.PodSpec
case len(source.Containers) > 1:
return apis.ErrMultipleOneOf("containers")
default:
return apis.ErrMissingOneOf("container", "containers")
}
if source.DeprecatedBuildRef != nil {
return ConvertErrorf("buildRef",
"buildRef cannot be migrated forward, got: %#v", source.DeprecatedBuildRef)
}
return nil
}
// ConvertUp helps implement apis.Convertible
func (source *RevisionStatus) ConvertUp(ctx context.Context, sink *v1beta1.RevisionStatus) {
source.Status.ConvertTo(ctx, &sink.Status)
sink.ServiceName = source.ServiceName
sink.LogURL = source.LogURL
// TODO(mattmoor): ImageDigest?
}
// ConvertDown implements apis.Convertible
func (sink *Revision) ConvertDown(ctx context.Context, obj apis.Convertible) error {
switch source := obj.(type) {
case *v1beta1.Revision:
sink.ObjectMeta = source.ObjectMeta
sink.Status.ConvertDown(ctx, source.Status)
return sink.Spec.ConvertDown(ctx, source.Spec)
default:
return fmt.Errorf("unknown version, got: %T", source)
}
}
// ConvertDown helps implement apis.Convertible
func (sink *RevisionTemplateSpec) ConvertDown(ctx context.Context, source v1beta1.RevisionTemplateSpec) error {
sink.ObjectMeta = source.ObjectMeta
return sink.Spec.ConvertDown(ctx, source.Spec)
}
// ConvertDown helps implement apis.Convertible
func (sink *RevisionSpec) ConvertDown(ctx context.Context, source v1beta1.RevisionSpec) error {
sink.RevisionSpec = *source.DeepCopy()
return nil
}
// ConvertDown helps implement apis.Convertible
func (sink *RevisionStatus) ConvertDown(ctx context.Context, source v1beta1.RevisionStatus) {
source.Status.ConvertTo(ctx, &sink.Status)
sink.ServiceName = source.ServiceName
sink.LogURL = source.LogURL
// TODO(mattmoor): ImageDigest?
}