Hello Saravanan Krishnan
Could you please tell me if you have full access from tje JumpHost server?
From the Jump host what is the output of both commands below?
nslookup URL_of_aro_cluster_console/api
and
dig URL_of_aro_cluster_console/api
After you performed the az login and credentials setup
you are able to list the cluster?
# List ARO Clusters :
az aro list -o table
Also you can check the aro cluster information and try using kubeadmin as following:
# Get Kubeadmin Access :
az aro list-credentials --name $AROCluster --resource-group $ARORG
kubeadminPassword=$(az aro list-credentials --name $AROCluster --resource-group $ARORG --query=kubeadminPassword -o tsv)
kubeadminUsername=$(az aro list-credentials --name $AROCluster --resource-group $ARORG --query=kubeadminUsername -o tsv)
AROAPISrvURL=$(az aro show -g $ARORG -n $AROCluster --query apiserverProfile.url -o tsv)
oc login $AROAPISrvURL -u $kubeadminUsername -p $kubeadminPassword
Let me know if this information was helpful, and upvote