- User - end users
- Group - a collection of users. Each user in the group will inherit the permissions of the group
- Policies - collection of permissions expressed as JSON docuements
- Roles - a collection of policies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # log in using your dockerhub username password | |
| $ docker login | |
| $ oc create secret generic regcred --from-file=.dockerconfigjson=/home/ocadmin/.docker/config.json --type=kubernetes.io/dockerconfigjson | |
| $ oc edit sa default | |
| ==== add following ==> | |
| imagePullSecrets: | |
| - name: regcred |
OlderNewer