如何授予用户在OpenShift Online Pro中标记图像的功能?

时间:2018-05-28 17:27:33

标签: openshift openshift-3 openshift-online

我已经设置了一个角色"查看"的协作者帐户。我现在想要授予此用户使用oc tag标记图像的功能。

按照these的说明,我有:

oc get clusterrole view -o yaml > role_edittags.yaml
# 1. Update kind: ClusterRole to kind: Role
# 2. Update name: view to name: edittags
# 3. Remove resourceVersion, selfLink, uid, and creationTimestamp
# 4. split up the section with {imagestreamimages,imagestreammappings,imagestreams,imagestreamtags} into two sections:
- apiGroups:
  - image.openshift.io
  - ""
  attributeRestrictions: null
  resources:
  - imagestreamimages
  - imagestreammappings
  - imagestreams
  verbs:
  - get
  - list
  - watch
- apiGroups:
  - image.openshift.io
  - ""
  attributeRestrictions: null
  resources:
  - imagestreamtags
  verbs:
  - get
  - list
  - watch
  - create
  - update
  - patch
  - deletecollection

然后我oc project进入我想授予该角色的项目并将其导入:

$ oc create -f role_edittags.yaml role "edittags" created

当我尝试将其授予用户时,我收到错误:

$ oc policy add-role-to-user edittags myuser Error from server (NotFound): rolebindings.authorization.openshift.io "edittags" not found

如何向用户授予oc tag权限?

谢谢!

更新

我在"示例1"中找到了预先存在的角色registry-editor。在上面的链接上完成工作:

$ oc policy add-role-to-user registry-editor myuser role "registry-editor" added: "myuser"

我仍然很想知道如果没有现成的角色,我可以创建一个自定义角色。再次感谢!

2 个答案:

答案 0 :(得分:1)

请参阅Creating a local role上的OpenShift文档。

具体来说,要将用户绑定到 local 角色,您需要为--role-namespace命令指定oc policy add-role-to-user

答案 1 :(得分:0)

Helm template for openshift中有一个很好的例子,可以写access to configmaps。所有默认角色都显示为oc describe clusterPolicy default,这是一个很好的起点,可以编写类似于现有角色的新角色。就我而言,现有角色registry-editor是我需要通过标记图像和从RedHat容器目录中提取上游补丁来自动化促销。

<强>更新

以下是如何创建可以启动openshift构建的本地角色:

oc create role buildinstantiate --verb=create --resource=buildconfigs.build.openshift.io/instantiate -n hubot

oc adm policy add-role-to-user buildinstantiate myuser --role-namespace=hubot -n hubot