The Models Web Application (MWA) is one of the CRUD (Create, Read, Update and Delete) applications of EKF. The MWA provides a UI for creating new and managing existing Model Servers on Kubernetes. For each Model Server, it creates an InferenceService custom resource under the hood which, in turn, is managed by the KFServing Controller. Please refer to the following commands to perform a health check or investigation into the Kubeflow Models Web Application.
1. Check the status of the Models Web App Deployment:
$ kubectl get deployment -n kubeflow kfserving-models-web-app -o wide
2. Inspect the events on the Models Web App Deployment:
$ kubectl describe deployment -n kubeflow kfserving-models-web-app
3. Check the status of the Models Web App Pod:
$ kubectl get pods -n kubeflow -l kustomize.component=kfserving-models-web-app -o wide
4. View Models Web App logs:
$ kubectl logs -n kubeflow deploy/kfserving-models-web-app -f
Comments
0 comments
Article is closed for comments.