Closed jbtrystram closed 2 years ago
Investigating for the missing SSO URL led me to find that the SSO URL is not correctly set up in the YAML charts.
truncated output of kubectl -n drogue-iot get deploy/console-backend -o json
{
"name": "ENDPOINTS__API_URL",
"value": "http://api.172.20.0.2.nip.io"
},
{
"name": "ENDPOINTS__SSO_URL",
"value": "$(SSO_URL)"
},
{
"name": "ENDPOINTS__CONSOLE_URL",
"value": "http://console.172.20.0.2.nip.io"
},
Using $(SSO_URL)
should be fine, as this is being use from the environment of the pod itself
But it looks like we don't populate that in the _endpoints.sh
script
The "URL"field is empty.
the grafana URL is missing the protocol. That makes it non-clickable in my terminal. Value should be
http://grafana...