Skip to content

Commit 8160d27

Browse files
Image change trigger must be able to create all build types
Build admission prevents users who don't have access to the synthetic kinds from mutating builds, which includes the image trigger controller now that it is not using the privileged loopback client.
1 parent 4423ff5 commit 8160d27

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

pkg/cmd/server/bootstrappolicy/controller_policy.go

+11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import (
77

88
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
99
rbac "k8s.io/kubernetes/pkg/apis/rbac"
10+
11+
authorizationapi "github.com/openshift/origin/pkg/authorization/api"
1012
)
1113

1214
const saRolePrefix = "system:openshift:controller:"
@@ -165,6 +167,15 @@ func init() {
165167
rbac.NewRule("get", "update").Groups(batchGroup).Resources("cronjobs").RuleOrDie(),
166168
rbac.NewRule("get", "update").Groups(deployGroup, legacyDeployGroup).Resources("deploymentconfigs").RuleOrDie(),
167169
rbac.NewRule("create").Groups(buildGroup, legacyBuildGroup).Resources("buildconfigs/instantiate").RuleOrDie(),
170+
// trigger controller must be able to modify these build types
171+
// TODO: move to a new custom binding that can be removed separately from end user access?
172+
rbac.NewRule("create").Groups(buildGroup, legacyBuildGroup).Resources(
173+
authorizationapi.SourceBuildResource,
174+
authorizationapi.DockerBuildResource,
175+
authorizationapi.OptimizedDockerBuildResource,
176+
authorizationapi.JenkinsPipelineBuildResource,
177+
).RuleOrDie(),
178+
168179
eventsRule(),
169180
},
170181
})

test/testdata/bootstrappolicy/bootstrap_cluster_roles.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -3483,6 +3483,17 @@ items:
34833483
- buildconfigs/instantiate
34843484
verbs:
34853485
- create
3486+
- apiGroups:
3487+
- ""
3488+
- build.openshift.io
3489+
attributeRestrictions: null
3490+
resources:
3491+
- builds/docker
3492+
- builds/jenkinspipeline
3493+
- builds/optimizeddocker
3494+
- builds/source
3495+
verbs:
3496+
- create
34863497
- apiGroups:
34873498
- ""
34883499
attributeRestrictions: null

0 commit comments

Comments
 (0)