forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
strategy.go
57 lines (44 loc) · 1.3 KB
/
strategy.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
package imagesignature
import (
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
apirequest "k8s.io/apiserver/pkg/endpoints/request"
kapi "k8s.io/kubernetes/pkg/api"
imageapi "github.com/openshift/origin/pkg/image/api"
"github.com/openshift/origin/pkg/image/api/validation"
)
// strategy implements behavior for ImageStreamTags.
type strategy struct {
runtime.ObjectTyper
}
var Strategy = &strategy{
ObjectTyper: kapi.Scheme,
}
func (s *strategy) NamespaceScoped() bool {
return false
}
func (s *strategy) PrepareForCreate(ctx apirequest.Context, obj runtime.Object) {
signature := obj.(*imageapi.ImageSignature)
signature.Conditions = nil
signature.ImageIdentity = ""
signature.SignedClaims = nil
signature.Created = nil
signature.IssuedBy = nil
signature.IssuedTo = nil
}
func (s *strategy) GenerateName(base string) string {
return base
}
func (s *strategy) Validate(ctx apirequest.Context, obj runtime.Object) field.ErrorList {
signature := obj.(*imageapi.ImageSignature)
return validation.ValidateImageSignature(signature)
}
func (s *strategy) AllowCreateOnUpdate() bool {
return false
}
func (*strategy) AllowUnconditionalUpdate() bool {
return false
}
// Canonicalize normalizes the object after validation.
func (strategy) Canonicalize(obj runtime.Object) {
}