What is the best way to deploy kserve in deployKF? #78
-
kserve is included as part of most Kubeflow distributions but that does not seem to be the case with deployKF (yet). What is the best way to deploy kserve in deployKF? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
@edi-bice I am just as eager as you to get official KServe support into deployKF, so watch this space! But until then, you can install standalone KServe using one of their official guides: You might also want to install ModelMesh Serving (if it's required by your use-case), but note that this component requires you to connect it with an ETCD instance and S3-like object store. |
Beta Was this translation helpful? Give feedback.
-
Okay thanks, giving it a try but given all the nonstandard names for namespaces and services (mostly due to tacking deploykf) it will take some trial and error to find and rename all. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Does anyone have an example of how they configured deployKF istio gateway with AWS Load Balancer Controller on EKS using |
Beta Was this translation helpful? Give feedback.
@edi-bice the next version of deployKF
0.1.4
(should be out very soon) plays much nicer with other services exposed on the same Istio Gateway, specifically around things like authentication.But for now, you can treat KServe as a fully separate app (which is probably a good idea if you are doing critical serving on it), many people even choose to host it on a separate cluster. But even If you use the same cluster as deployKF, you could just use a separate Istio gateway deployment/service (exposed on a slightly different domain) for the KServe stuff.
Note, I am not 100% sure how deployKF will "officially" implement KServe, because there are many trade-offs between stability/performance and…