karthikraj
12/05/2022, 4:54 AMSamhita Alla
karthikraj
12/05/2022, 6:33 AMSamhita Alla
Yee
kubectl -n flyte get pod
and look for a pod that’s crashing? mind copy/pasting any error logs you find there?karthikraj
12/05/2022, 5:39 PMterraform]$ kubectl -n flyte get pod
NAME READY STATUS RESTARTS AGE
datacatalog-b747d6c5b-hjqfp 1/1 Running 0 11h
datacatalog-b747d6c5b-vfhgx 1/1 Running 0 11h
flyte-pod-webhook-864db964f8-59nrw 1/1 Running 0 11h
flyteadmin-5bc6894758-25nqr 1/1 Running 0 11h
flyteadmin-5bc6894758-zlvbt 1/1 Running 0 11h
flyteconsole-8d595f6d6-9x4d9 1/1 Running 0 11h
flyteconsole-8d595f6d6-z9zwr 1/1 Running 0 11h
flytepropeller-8f9b64448-88mj5 1/1 Running 0 11h
flytepropeller-8f9b64448-q2kzp 1/1 Running 0 11h
flytescheduler-66c56fb6cf-v7mkw 1/1 Running 0 11h
syncresources-687f7df97b-2mscs 1/1 Running 0 11h
terraform]$ helm list -n flyte
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
dev-max-flyte flyte 1 2022-12-05 06:27:21.544709499 +0000 UTC deployed flyte-core-v0.1.10
Yee
karthikraj
12/05/2022, 9:16 PMYee
karthikraj
12/05/2022, 9:26 PMYee
kubectl -n flyte port-forward service/flyteadmin
? i think you might need ports as well. maybe 8088:8088
but don’t quite remember. And then try to hit localhost:<port>/api/v1/projects
karthikraj
12/06/2022, 5:13 AM[terraform]$ kubectl -n flyte port-forward service/flyteadmin 8089:8089
error: Service flyteadmin does not have a service port 8089
[terraform]$ kubectl -n flyte port-forward service/flyteadmin 8088:8088
error: Service flyteadmin does not have a service port 8088
[ terraform]$ kubectl get svc -n flyte
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
datacatalog NodePort 172.20.247.89 <none> 8089:31462/TCP,88:30445/TCP,89:31941/TCP 42m
flyte-pod-webhook ClusterIP 172.20.212.71 <none> 443/TCP 42m
flyteadmin ClusterIP 172.20.136.44 <none> 80/TCP,81/TCP,87/TCP,10254/TCP 42m
flyteconsole ClusterIP 172.20.189.86 <none> 80/TCP 42m
Yee