queue-proxy is missing in kserve v0.7
See original GitHub issue/kind question
What steps did you take and what happened: I’ve installed kserve 0.7 following this quide and created test inference service:
apiVersion: "serving.kserve.io/v1beta1"
kind: "InferenceService"
metadata:
name: "sklearn-iris"
spec:
predictor:
sklearn:
storageUri: "gs://kfserving-samples/models/sklearn/iris"
What did you expect to happen: I expect to see queue-proxy sidekick but it doesn’t exist:
$ kubectl get pods sklearn-iris-predictor-default-67b48cd746-k7wtp -o jsonpath='{.spec.containers[*].name}'
kserve-container
AFAIK, it’s part of Knative project but queue-proxy sidekick is exists by default in v0.5.1
kfserving version:
$ kubectl get pods sklearn-iris-predictor-default-00002-deployment-5f464c78c89jqvc -o jsonpath='{.spec.containers[*].name}'
kfserving-container queue-proxy
Environment:
- Istio Version: 1.8.5
- Knative Version: v0.25.0
- KFServing Version: v0.7
- Kubeflow version: -
- Kfdef:[k8s_istio/istio_dex/gcp_basic_auth/gcp_iap/aws/aws_cognito/ibm]
- Minikube version: -
- Kubernetes version: (use
kubectl version
):
> kubectl version
Client Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.7", GitCommit:"1dd5338295409edcfff11505e7bb246f0d325d15", GitTreeState:"clean", BuildDate:"2021-01-13T13:23:52Z", GoVersion:"go1.15.5", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"20", GitVersion:"v1.20.5", GitCommit:"6b1d87acf3c8253c123756b9e61dac642678305f", GitTreeState:"clean", BuildDate:"2021-03-18T01:02:01Z", GoVersion:"go1.15.8", Compiler:"gc", Platform:"linux/amd64"}
- OS (e.g. from
/etc/os-release
): -
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Debugging guide - KServe Documentation Website
You deployed an InferenceService to KServe, but it is not in ready state. Go through this step by step guide to understand what...
Read more >Issues with KFServing as part of a Kubeflow install #629
kind bug I'm seeing some issues with the KFServing install that's part of the 'out-of-the-box' Kubeflow install (0.7.1).
Read more >storageInitializer InitContainer not starting in Kserve ...
However, the InferenceService remains in Unknown state, upon investiagating, I found that 1 container (queue-proxy container) out of 2 ...
Read more >Knative Serving overview
Knative Serving defines a set of objects as Kubernetes Custom Resource Definitions (CRDs). These resources are used to define and control how your...
Read more >The Definition of the New Service Mesh-Driven Scenario
Please see Serverless Containers and Automatic Scaling Based on Traffic Patterns for more information; KServe selects the v0.7 version.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Looks like this was being deployed with as a
RawDeploymemt
– hopefully that’s the root of the issue.Yes, after switching to default
Serverless
mode the issue is gone. Thanks, I’m going to close it.