Installing the OpenShift CLI by using an RPM
For Red Hat Enterprise Linux (RHEL), you can install the OpenShift CLI (oc) as an RPM if you have an active {product-title} subscription on your Red Hat account.
|
|
You must install |
-
You must have root or sudo privileges.
-
Register with Red Hat Subscription Manager:
# subscription-manager register -
Pull the latest subscription data:
# subscription-manager refresh -
List the available subscriptions:
# subscription-manager list --available --matches '*OpenShift*' -
In the output for the previous command, find the pool ID for an {product-title} subscription and attach the subscription to the registered system:
# subscription-manager attach --pool=<pool_id> -
Enable the repositories required by {product-title} 4.20.
# subscription-manager repos --enable="rhocp-4.20-for-rhel-8-x86_64-rpms" -
Install the
openshift-clientspackage:# yum install openshift-clients
-
Verify your installation by using an
occommand:$ oc <command>