Description of problem: Should display correctly roles created by user Version-Release number of selected component (if applicable): v3.9.0-alpha.2+f0d1fb1 How reproducible: Always Steps to Reproduce: 1.$ cat role.json { "kind": "Role", "apiVersion": "v1", "metadata": { "name": "deleteservices" }, "rules": [ { "verbs": [ "delete" ], "resources": [ "services" ] } ] } oc create -f role.json 2. Login web console, goto 'Membership'->'Users' tab, add the deleteservices role to user 3. Actual results: Although added a user with deleteservices role successfully, but not shown the roles of a user, also have not 'X' to delete the user with that role on web console. Expected results: Should display correctly roles created by user Additional info:
PR open to address this https://github.com/openshift/origin-web-console/pull/2655
Tested this bug against OCP v3.9.0-0.22.0, could add/delete custom roles. Thanks!