Este conteúdo não está disponível no idioma selecionado.
Chapter 2. Authenticating with the Red Hat Container Catalog
The Red Hat Container Catalog, registry.redhat.io, requires authentication to access JBoss Data Grid for OpenShift images and resources.
You can use the following authentication mechanisms:
- Credentials
-
The username and password for your Red Hat customer account. These credentials let you pull resources from registry.redhat.io from a single host with the
docker login
command. You can also use these credentials to create service accounts and generate authentication tokens. - Registry Service Account Token
A randomly generated string that you use to authenticate multiple systems.
From a high level, do the following to get an authentication token:
- Log in to registry.redhat.io.
- Create a new Registry Service Account if necessary.
- Generate tokens as required.
2.1. Setting Up Authentication with Service Account Tokens Copiar o linkLink copiado para a área de transferência!
After you generate a service account token, do the following to set up authentication:
- Navigate to your registry service account.
- Select the Docker Login tab and copy the command.
-
Run the
docker login
command on each host system that pulls from registry.redhat.io. Verify the token is added to the Docker configuration file.
cat ~/.docker/config.json ... "registry.redhat.io": { "auth": "MTEwMDkx..." }
$ cat ~/.docker/config.json ... "registry.redhat.io": { "auth": "MTEwMDkx..." }
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
2.1.1. Adding Tokens to Pull Secrets Copiar o linkLink copiado para a área de transferência!
To pull secured container images that are not available on the internal registry for OpenShift Container Platform, create a pull secret from your Docker configuration file and add it to your service account as follows:
Log in to OpenShift.
oc login -u username -p password
$ oc login -u username -p password
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Select your working project.
oc project myproject
$ oc project myproject
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create the pull secret.
oc create secret generic pull-secret-name \ --from-file=.dockerconfigjson=path/to/.docker/config.json \ --type=kubernetes.io/dockerconfigjson
$ oc create secret generic pull-secret-name \ --from-file=.dockerconfigjson=path/to/.docker/config.json \ --type=kubernetes.io/dockerconfigjson
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Link the pull secret to your service account. This step lets you pull images from the secure registry to the pod.
oc secrets link default pull-secret-name --for=pull
$ oc secrets link default pull-secret-name --for=pull
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Mount the secret in the pod so that you can pull build images.
oc secrets link builder pull-secret-name
$ oc secrets link builder pull-secret-name
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
For more information, including troubleshooting procedures, see Red Hat Container Registry Authentication.