3scale/3scale-operator

3Scale dashboard are not reachable

jdchdev opened this issue · 2 comments

I've installed latest Rad Hat Integration - 3Scale Operator on ARO 4 and created the ApiManager but when I try to access to the dashboard through routes these pages are not accessible.

I left some pictures to give you more context.
redhat_openshift_img
redhat_openshift_img_2
What am I doing wrong?

I hope you have the solution.

@jdchdev I suspect (screen shots suggest this) that you used example.com for the wildcard domain in the APIManager CR . This domain needs to be resolvable on your cluster. For you to be able to use this domain you would need to own the domain and set it up as a custom domain on your cluster.

Alternatively you could just use the Openshift default application router as the wild card domain. This command should give it to you

# need jq to run this command  https://jqlang.github.io/jq/
oc get routes console -n openshift-console -o json | jq -r '.status.ingress[0].routerCanonicalHostname' | sed 's/router-default.//'

Openshift default application router can also be got from your Openshift console route just remove the console-openshift-console part of the route e.g.

This
console-openshift-console.apps.aucunnin.4mog.s1.devshift.org

To this
apps.aucunnin.4mog.s1.devshift.org

@austincunningham thank you, I created a new API manager this time with cluster domains and looks good now