Hi everyone, when I setup datahub on a kubernetes ...
# troubleshoot
r
Hi everyone, when I setup datahub on a kubernetes cluster, I see that all pods are running fine but clicking on datasets in the UI, results in this error in the frontend pod. Any idea what might be causing this?
p
could you paste the output of
kubectl get svc
?
r
Copy code
NAME                               TYPE           CLUSTER-IP       EXTERNAL-IP                                                               PORT(S)                      AGE
datahub-datahub-frontend           LoadBalancer   172.20.17.49     <http://ad5e5f5914020441cb5ea43c6fd60d35-2064230326.eu-west-1.elb.amazonaws.com|ad5e5f5914020441cb5ea43c6fd60d35-2064230326.eu-west-1.elb.amazonaws.com>   9002:30773/TCP               21m
elasticsearch-master               ClusterIP      172.20.3.212     <none>                                                                    9200/TCP,9300/TCP            3h19m
elasticsearch-master-headless      ClusterIP      None             <none>                                                                    9200/TCP,9300/TCP            3h19m
prerequisites-cp-schema-registry   ClusterIP      172.20.66.46     <none>                                                                    8081/TCP,5556/TCP            3h19m
prerequisites-kafka                ClusterIP      172.20.223.192   <none>                                                                    9092/TCP                     3h19m
prerequisites-kafka-headless       ClusterIP      None             <none>                                                                    9092/TCP,9093/TCP            3h19m
prerequisites-mysql                ClusterIP      172.20.252.203   <none>                                                                    3306/TCP                     3h19m
prerequisites-mysql-headless       ClusterIP      None             <none>                                                                    3306/TCP                     3h19m
prerequisites-zookeeper            ClusterIP      172.20.125.107   <none>                                                                    2181/TCP,2888/TCP,3888/TCP   3h19m
prerequisites-zookeeper-headless   ClusterIP      None             <none>                                                                    2181/TCP,2888/TCP,3888/TCP   3h19m
hmm, should we see gms service there?
p
yep 🙂
I just wonder if the gms is running properly
kubectl get deploy
?
r
Copy code
NAME                               READY   UP-TO-DATE   AVAILABLE   AGE
datahub-datahub-frontend           1/1     1            1           24m
datahub-datahub-gms                1/1     1            1           24m
prerequisites-cp-schema-registry   1/1     1            1           3h22m
i dont see any errors in the gms logs
p
Copy code
kubectl expose deploy datahub-datahub-gms
after that command, datahub-datahub-gms svc will be created
and could you try again?
r
yep, that worked. any ideas why this wasnt exposed in the first place
p
🤷‍♂️