@@ -41,16 +41,6 @@ func scrapeLogs(bldPrefix string, oc *exutil.CLI) {
41
41
}
42
42
43
43
func checkPodFlag (bldPrefix string , oc * exutil.CLI ) {
44
- if bldPrefix == buildPrefixTC {
45
- // grant access to the custom build strategy
46
- err := oc .AsAdmin ().Run ("adm" ).Args ("policy" , "add-cluster-role-to-user" , "system:build-strategy-custom" , oc .Username ()).Execute ()
47
- o .Expect (err ).NotTo (o .HaveOccurred ())
48
- defer func () {
49
- err = oc .AsAdmin ().Run ("adm" ).Args ("policy" , "remove-cluster-role-from-user" , "system:build-strategy-custom" , oc .Username ()).Execute ()
50
- o .Expect (err ).NotTo (o .HaveOccurred ())
51
- }()
52
- }
53
-
54
44
// kick off the app/lang build and verify the builder image accordingly
55
45
_ , err := exutil .StartBuildAndWait (oc , bldPrefix )
56
46
o .ExpectWithOffset (1 , err ).NotTo (o .HaveOccurred ())
@@ -76,17 +66,15 @@ var _ = g.Describe("[Feature:Builds] forcePull should affect pulling builder ima
76
66
g .Context ("" , func () {
77
67
78
68
g .BeforeEach (func () {
79
- g .By ("waiting for openshift/ruby:latest ImageStreamTag" )
80
- err := exutil .WaitForAnImageStreamTag (oc , "openshift" , "ruby" , "latest" )
81
- o .Expect (err ).NotTo (o .HaveOccurred ())
82
69
83
- // grant access to the custom build strategy
84
70
g .By ("granting system:build-strategy-custom" )
85
- err = oc .AsAdmin ().Run ("adm" ).Args ("policy" , "add-cluster-role-to-user" , "system:build-strategy-custom" , oc .Username ()).Execute ()
71
+ binding := fmt .Sprintf ("custombuildaccess-%s" , oc .Username ())
72
+ err := oc .AsAdmin ().Run ("create" ).Args ("clusterrolebinding" , binding , "--clusterrole" , "system:build-strategy-custom" , "--user" , oc .Username ()).Execute ()
86
73
o .Expect (err ).NotTo (o .HaveOccurred ())
87
74
88
- // do not bother with removal of role as occasional etcd update conflicts would arise ... user is recreated with
89
- // each extended test project anyway so this user will be going away when this test is over.
75
+ g .By ("waiting for openshift/ruby:latest ImageStreamTag" )
76
+ err = exutil .WaitForAnImageStreamTag (oc , "openshift" , "ruby" , "latest" )
77
+ o .Expect (err ).NotTo (o .HaveOccurred ())
90
78
91
79
g .By ("create application build configs for 3 strategies" )
92
80
apps := exutil .FixturePath ("testdata" , "forcepull-test.json" )
@@ -96,6 +84,11 @@ var _ = g.Describe("[Feature:Builds] forcePull should affect pulling builder ima
96
84
})
97
85
98
86
g .AfterEach (func () {
87
+
88
+ binding := fmt .Sprintf ("custombuildaccess-%s" , oc .Username ())
89
+ err := oc .AsAdmin ().Run ("delete" ).Args ("clusterrolebinding" , binding ).Execute ()
90
+ o .Expect (err ).NotTo (o .HaveOccurred ())
91
+
99
92
if g .CurrentGinkgoTestDescription ().Failed {
100
93
exutil .DumpPodStates (oc )
101
94
exutil .DumpPodLogsStartingWith ("" , oc )
@@ -118,18 +111,14 @@ var _ = g.Describe("[Feature:Builds] forcePull should affect pulling builder ima
118
111
})
119
112
120
113
g .It ("ForcePull test case execution docker" , func () {
121
-
122
114
g .By ("docker when force pull is true" )
123
115
// run twice to ensure the builder image gets pulled even if it already exists on the node
124
116
scrapeLogs (buildPrefixTD , oc )
125
117
scrapeLogs (buildPrefixTD , oc )
126
-
127
118
})
128
119
129
120
g .It ("ForcePull test case execution custom" , func () {
130
-
131
121
g .By ("when custom force pull is true" )
132
-
133
122
checkPodFlag (buildPrefixTC , oc )
134
123
})
135
124
})
0 commit comments