Hello! I’m trying to launch ray serve task in the kubernetes cluster.
I packaged working dir as a zip and uploaded it to the Google Cloud Storage bucket.
I used this as a starter for my deployment kuberay/ray_v1alpha1_rayservice.yaml at release-0.3 · ray-project/kuberay · GitHub and replaced working_dir
url with the path in google bucket.
I get the error message You must pip install smart_open
and pip install google-cloud-storage
to fetch URIs in Google Cloud Storage bucket. But I don’t understand where this should be executed.
I tried to add pip section into serveConfig, but it seems to be ignored
serveConfig:
importPath: fruit.deployment_graph
runtimeEnv: |
working_dir: "gs://mybucket/fruit-example.zip"
pip:
- google-cloud-storage==1.43.0
- smart-open
Could someone please point me out what do I miss?