I am using this link to have a Keycloak setup on my K8s cluster in Azure cloud. https://www.keycloak.org/getting-started/getting-started-kube
Even after following all the steps successfully, unable to get the Keycloak Admin console or Keycloak account on my browser. I have minicube on my machine, also enabled the ingress addon.
Deployed Keycloak deployment and service and also ingress.
I do the echo : KEYCLOAK_URL=https://keycloak.$(minikube ip).nip.io &&
echo "Keycloak: $KEYCLOAK_URL" &&
echo "Keycloak Admin Console: $KEYCLOAK_URL/admin" &&
echo "Keycloak Account Console: $KEYCLOAK_URL/realms/myrealm/account" &&
echo ""
and get the successful output without errors:
Keycloak: https://keycloak.<IP>.nip.io
Keycloak Admin Console: https://keycloak.<IP>.nip.io:8443/admin
Keycloak Account Console: https://keycloak.<IP>.nip.io/realms/myrealm/account
But when I try opening the Admin console link or Keycloak link, in my browser it does not open.
Not sure as what am I missing and what else is supposed to be done?