From 6c6edd465243d125b3b0a9497937e45d40d8bc29 Mon Sep 17 00:00:00 2001 From: Tommy Hughes Date: Wed, 11 Dec 2024 18:05:02 -0600 Subject: [PATCH] docs Signed-off-by: Tommy Hughes --- examples/operator-quickstart/02-Client.ipynb | 7 ++----- examples/operator-quickstart/Dockerfile | 2 +- examples/operator-quickstart/client.yaml | 8 ++++++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/examples/operator-quickstart/02-Client.ipynb b/examples/operator-quickstart/02-Client.ipynb index 755591b7255..fc28e1947e8 100644 --- a/examples/operator-quickstart/02-Client.ipynb +++ b/examples/operator-quickstart/02-Client.ipynb @@ -141,11 +141,8 @@ } ], "source": [ - "!kubectl port-forward svc/feast-example-registry 8080:http\n", - "!kubectl port-forward svc/feast-example-offline 8081:http\n", - "!kubectl port-forward svc/feast-example-online 8082:http\n", - "\n", - "# !feast init sample" + "!kubectl logs deploy/client -c client\n", + "!kubectl port-forward deploy/client 8888:8888" ] }, { diff --git a/examples/operator-quickstart/Dockerfile b/examples/operator-quickstart/Dockerfile index 6b2addebf8e..1a9d41e2669 100644 --- a/examples/operator-quickstart/Dockerfile +++ b/examples/operator-quickstart/Dockerfile @@ -7,4 +7,4 @@ RUN chgrp -R 0 /home/jovyan && \ USER jovyan -RUN pip install --no-cache-dir "feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s]"==0.42.0 \ No newline at end of file +RUN pip install --no-cache-dir pyarrow "feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s]"==0.42.0 \ No newline at end of file diff --git a/examples/operator-quickstart/client.yaml b/examples/operator-quickstart/client.yaml index 4c00282f5f5..7a5d931946f 100644 --- a/examples/operator-quickstart/client.yaml +++ b/examples/operator-quickstart/client.yaml @@ -67,8 +67,8 @@ spec: cp -f /feast-client/feature_store.yaml .; - #cd /feast-init; - #curl -O https://raw.githubusercontent.com/feast-dev/feast/refs/tags/v0.42.0/examples/quickstart/quickstart.ipynb; + cd /feast-init; + wget https://raw.githubusercontent.com/feast-dev/feast/refs/tags/v0.42.0/examples/quickstart/quickstart.ipynb; volumeMounts: - name: client-feature-store-config mountPath: /feast-client @@ -81,6 +81,10 @@ spec: imagePullPolicy: Always #workingDir: /feast-init/sample/feature_repo #command: ["sleep", "infinity"] + resources: + requests: + memory: 1Gi + cpu: 200m volumeMounts: - name: client-feature-store-config mountPath: /feast-client