I deployed these two services to my cluster under namespace prisma:
kubectl get services -n prisma
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
database ClusterIP 10.23.252.18 <none> 3306/TCP 3d
prisma NodePort 10.23.248.0 <none> 4466:31001/TCP 1d
But when I do cluster-info, it only shows the master and none of my services are showing up:
kubectl cluster-info -n prisma
Kubernetes master is running at https://my-cluster-ip
Is this correct?
I expect to see something like:
Kubernetes master is running at https://my-cluster-ip
Prisma is running at https://my-cluster-ip/api/v1/namespaces/prisma/services/prisma/proxy
...