Troubleshooting Deployments
My model does not seem to be running
kubectl get sdepkubectl get sdep <name> -o jsonpath='{.status}'>kubectl get sdep
NAME AGE
mymodel 1m
>kubectl get sdep mymodel -o jsonpath='{.status}'
map[predictorStatus:[map[name:mymodel-mymodel-7cd068f replicas:1 replicasAvailable:1]] state:Available]>kubectl get sdep mymodel -o json | jq .status
{
"predictorStatus": [
{
"name": "mymodel-mymodel-7cd068f",
"replicas": 1,
"replicasAvailable": 1
}
],
"state": "Available"
}Check all events on the SeldonDeployment
My Seldon Deployment remains in "creating" state
I get 500s when calling my model over the API
My Seldon Deployment is not listed
Invalid memory address
I have tried the above and I'm still confused
Last updated
Was this helpful?