Connect using the OpenShift CLI

Procedure

  1. Retrieve the address of the API server:
    apiServer=$(az aro show -g $RESOURCEGROUP -n $CLUSTER --query apiserverProfile.url -o tsv)
  2. Log in to the OpenShift cluster's API server using this command:
    oc login $apiServer -u kubeadmin -p <kubeadmin_password>

    Where <kubeadmin_password> is the password for kubeadmin, as determined in this topic.

  3. Ensure that the ARO cluster has deployed properly:
    1. Issue this command:
      oc get nodes

      The Status column should display Ready for all rows.

    2. Issue this command:
      oc get co

      The Available column should display True for all rows.