Skip to content

Commit ed42d30

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 ed42d30

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
@@ -3883,6 +3883,17 @@ items:
38833883
- get
38843884
- list
38853885
- watch
3886+
- apiGroups:
3887+
- ""
3888+
- build.openshift.io
3889+
attributeRestrictions: null
3890+
resources:
3891+
- builds/docker
3892+
- builds/jenkinspipeline
3893+
- builds/optimizeddocker
3894+
- builds/source
3895+
verbs:
3896+
- create
38863897
- apiGroups:
38873898
- ""
38883899
attributeRestrictions: null

0 commit comments

Comments
 (0)