
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- 2,203 Views
Hi Everyone,
I want to know if theres any method to see and confirm that we attached SSC to service account before we attach the service account to pod/deployment.
Thanks.
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- 2,115 Views
oc get scc <scc name> -o jsonpath="{.users}"
or you could simply describe scc and check the access field
(pylab) vajra@BLRL133366:~$ : oc describe scc privileged
Name: privileged
Priority: <none>
Access:
Users: system:admin
Groups: system:cluster-admins

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- 2,116 Views
oc get scc <scc name> -o jsonpath="{.users}"
or you could simply describe scc and check the access field
(pylab) vajra@BLRL133366:~$ : oc describe scc privileged
Name: privileged
Priority: <none>
Access:
Users: system:admin
Groups: system:cluster-admins

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- 1,887 Views
You need to check in the clusterbindings, because the binding is the link between an account and a role.