Skip to content

Commit 3cae5f5

Browse files
Merge pull request #14792 from smarterclayton/trigger_policy
Image change trigger must be able to create all build types
2 parents 3704f7f + 74ba8ad commit 3cae5f5

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/apis/authorization"
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
@@ -3493,6 +3493,17 @@ items:
34933493
- buildconfigs/instantiate
34943494
verbs:
34953495
- create
3496+
- apiGroups:
3497+
- ""
3498+
- build.openshift.io
3499+
attributeRestrictions: null
3500+
resources:
3501+
- builds/docker
3502+
- builds/jenkinspipeline
3503+
- builds/optimizeddocker
3504+
- builds/source
3505+
verbs:
3506+
- create
34963507
- apiGroups:
34973508
- ""
34983509
attributeRestrictions: null

0 commit comments

Comments
 (0)