8
8
"github.com/openshift/cluster-version-operator/lib"
9
9
"github.com/openshift/cluster-version-operator/lib/resourceapply"
10
10
"github.com/openshift/cluster-version-operator/lib/resourceread"
11
+ apiextv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
11
12
apiextv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
13
+ apiextclientv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1"
12
14
apiextclientv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1"
13
15
"k8s.io/apimachinery/pkg/api/errors"
14
16
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -17,15 +19,17 @@ import (
17
19
)
18
20
19
21
type crdBuilder struct {
20
- client * apiextclientv1beta1.ApiextensionsV1beta1Client
21
- raw []byte
22
- modifier MetaV1ObjectModifierFunc
22
+ raw []byte
23
+ modifier MetaV1ObjectModifierFunc
24
+ clientV1beta1 * apiextclientv1beta1.ApiextensionsV1beta1Client
25
+ clientV1 * apiextclientv1.ApiextensionsV1Client
23
26
}
24
27
25
28
func newCRDBuilder (config * rest.Config , m lib.Manifest ) Interface {
26
29
return & crdBuilder {
27
- client : apiextclientv1beta1 .NewForConfigOrDie (withProtobuf (config )),
28
- raw : m .Raw ,
30
+ raw : m .Raw ,
31
+ clientV1beta1 : apiextclientv1beta1 .NewForConfigOrDie (withProtobuf (config )),
32
+ clientV1 : apiextclientv1 .NewForConfigOrDie (withProtobuf (config )),
29
33
}
30
34
}
31
35
@@ -39,34 +43,53 @@ func (b *crdBuilder) WithModifier(f MetaV1ObjectModifierFunc) Interface {
39
43
}
40
44
41
45
func (b * crdBuilder ) Do (ctx context.Context ) error {
42
- crd := resourceread .ReadCustomResourceDefinitionV1Beta1OrDie (b .raw )
43
- if b .modifier != nil {
44
- b .modifier (crd )
45
- }
46
- _ , updated , err := resourceapply .ApplyCustomResourceDefinition (b .client , crd )
47
- if err != nil {
48
- return err
46
+ crd := resourceread .ReadCustomResourceDefinitionOrDie (b .raw )
47
+
48
+ var updated bool
49
+ var err error
50
+ var name string
51
+
52
+ switch crd := crd .(type ) {
53
+ case * apiextv1beta1.CustomResourceDefinition :
54
+ if b .modifier != nil {
55
+ b .modifier (crd )
56
+ }
57
+ _ , updated , err = resourceapply .ApplyCustomResourceDefinitionV1beta1 (b .clientV1beta1 , crd )
58
+ if err != nil {
59
+ return err
60
+ }
61
+ name = crd .Name
62
+ case * apiextv1.CustomResourceDefinition :
63
+ if b .modifier != nil {
64
+ b .modifier (crd )
65
+ }
66
+ _ , updated , err = resourceapply .ApplyCustomResourceDefinitionV1 (b .clientV1 , crd )
67
+ if err != nil {
68
+ return err
69
+ }
70
+ name = crd .Name
49
71
}
72
+
50
73
if updated {
51
- return waitForCustomResourceDefinitionCompletion (ctx , b .client , crd )
74
+ return waitForCustomResourceDefinitionCompletion (ctx , b .clientV1 , name )
52
75
}
53
76
return nil
54
77
}
55
78
56
- func waitForCustomResourceDefinitionCompletion (ctx context.Context , client apiextclientv1beta1 .CustomResourceDefinitionsGetter , crd * apiextv1beta1. CustomResourceDefinition ) error {
79
+ func waitForCustomResourceDefinitionCompletion (ctx context.Context , client apiextclientv1 .CustomResourceDefinitionsGetter , crd string ) error {
57
80
return wait .PollImmediateUntil (defaultObjectPollInterval , func () (bool , error ) {
58
- c , err := client .CustomResourceDefinitions ().Get (crd . Name , metav1.GetOptions {})
81
+ c , err := client .CustomResourceDefinitions ().Get (crd , metav1.GetOptions {})
59
82
if errors .IsNotFound (err ) {
60
83
// exit early to recreate the crd.
61
84
return false , err
62
85
}
63
86
if err != nil {
64
- klog .Errorf ("error getting CustomResourceDefinition %s: %v" , crd . Name , err )
87
+ klog .Errorf ("error getting CustomResourceDefinition %s: %v" , crd , err )
65
88
return false , nil
66
89
}
67
90
68
91
for _ , condition := range c .Status .Conditions {
69
- if condition .Type == apiextv1beta1 .Established && condition .Status == apiextv1beta1 .ConditionTrue {
92
+ if condition .Type == apiextv1 .Established && condition .Status == apiextv1 .ConditionTrue {
70
93
return true , nil
71
94
}
72
95
}
0 commit comments