mysterious-article-28884
06/22/2023, 9:10 AMCaused by: com.linkedin.restli.client.RestLiResponseException: com.linkedin.restli.client.RestLiResponseException: Response status 404, serviceErrorMessage: No root resource defined for path '/charts'
at com.linkedin.restli.internal.client.ExceptionUtil.wrapThrowable(ExceptionUtil.java:130)
at com.linkedin.restli.internal.client.ResponseFutureImpl.getResponseImpl(ResponseFutureImpl.java:130)
at com.linkedin.restli.internal.client.ResponseFutureImpl.getResponse(ResponseFutureImpl.java:94)
at com.linkedin.chart.client.Charts.search(Charts.java:104)
at com.linkedin.datahub.graphql.types.chart.ChartType.search(ChartType.java:98)
at com.linkedin.datahub.graphql.resolvers.search.SearchResolver.lambda$get$1(SearchResolver.java:53)
... 2 common frames omitted
I have passed the following values.yaml to the datahub helm:
datahub-frontend:
enabled: true
image:
repository: linkedin/datahub-frontend-react
tag: "latest"
ingress:
enabled: true
hosts:
- host: demo
paths:
- /*
Can someone please advise if it is a must to use certificates for ingress to be enabled ?
If not can you please help me understand if I am missing something?delightful-ram-75848
06/29/2023, 5:10 AMbrainy-tent-14503
06/29/2023, 1:23 PMdemo
to the ingress IP? You can always port-forward using kubectl to the frontend’s service port to verify that the frontend and other DataHub components are working correctly behind the ingress first. This would be something like kubectl -n <namespace> port-forward svc/<frontend service name> 9002:9002
with values from your setup. Then use http://localhost:9002 to validatemysterious-article-28884
06/30/2023, 12:20 PMaloof-gpu-11378
06/30/2023, 7:13 PM