Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
Signed-off-by: Tommy Hughes <[email protected]>
  • Loading branch information
tchughesiv committed Dec 12, 2024
1 parent d7d96c6 commit 6c6edd4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
7 changes: 2 additions & 5 deletions examples/operator-quickstart/02-Client.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/operator-quickstart/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
RUN pip install --no-cache-dir pyarrow "feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s]"==0.42.0
8 changes: 6 additions & 2 deletions examples/operator-quickstart/client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 6c6edd4

Please sign in to comment.