Skip to content

Commit 00c6589

Browse files
Merge pull request #18054 from bparees/retryroles
Automatic merge from submit-queue. avoid conflict updating custom build role fixes #17596 (I don't really consider this a proper fix, but apparently oc adm isn't going to get the proper fix so this is as close as we're getting).
2 parents 1a5515a + 009a98f commit 00c6589

File tree

1 file changed

+10
-21
lines changed

1 file changed

+10
-21
lines changed

test/extended/builds/forcepull.go

+10-21
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,6 @@ func scrapeLogs(bldPrefix string, oc *exutil.CLI) {
4141
}
4242

4343
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-
5444
// kick off the app/lang build and verify the builder image accordingly
5545
_, err := exutil.StartBuildAndWait(oc, bldPrefix)
5646
o.ExpectWithOffset(1, err).NotTo(o.HaveOccurred())
@@ -76,17 +66,15 @@ var _ = g.Describe("[Feature:Builds] forcePull should affect pulling builder ima
7666
g.Context("", func() {
7767

7868
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())
8269

83-
// grant access to the custom build strategy
8470
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()
8673
o.Expect(err).NotTo(o.HaveOccurred())
8774

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())
9078

9179
g.By("create application build configs for 3 strategies")
9280
apps := exutil.FixturePath("testdata", "forcepull-test.json")
@@ -96,6 +84,11 @@ var _ = g.Describe("[Feature:Builds] forcePull should affect pulling builder ima
9684
})
9785

9886
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+
9992
if g.CurrentGinkgoTestDescription().Failed {
10093
exutil.DumpPodStates(oc)
10194
exutil.DumpPodLogsStartingWith("", oc)
@@ -118,18 +111,14 @@ var _ = g.Describe("[Feature:Builds] forcePull should affect pulling builder ima
118111
})
119112

120113
g.It("ForcePull test case execution docker", func() {
121-
122114
g.By("docker when force pull is true")
123115
// run twice to ensure the builder image gets pulled even if it already exists on the node
124116
scrapeLogs(buildPrefixTD, oc)
125117
scrapeLogs(buildPrefixTD, oc)
126-
127118
})
128119

129120
g.It("ForcePull test case execution custom", func() {
130-
131121
g.By("when custom force pull is true")
132-
133122
checkPodFlag(buildPrefixTC, oc)
134123
})
135124
})

0 commit comments

Comments
 (0)