The KFServing Controller watches and reconciles InferenceService and TrainedModel custom resources. For example, for each InferenceService it syncs corresponding Knative and Istio services. Please refer to the following commands to perform a health check or investigation into the Kubeflow KFServing Controller.
1. Check the status of the KFServing Controller StatefulSet:
$ kubectl get statefulset -n kubeflow kfserving-controller-manager -o wide
2. Inspect the events on the KFServing Controller StatefulSet:
$ kubectl describe statefulset -n kubeflow kfserving-controller-manager
3. Check the status of the KFServing Controller Pod:
$ kubectl get pods -n kubeflow -l app.kubernetes.io/name=kfserving -o wide
4. View KFServing Controller logs:
$ kubectl logs -n kubeflow sts/kfserving-controller-manager -c manager -f
Comments
0 comments
Article is closed for comments.