Skip to content

Commit d1f5283

Browse files
committed
fix: feast-feature-server helm chart's Service template
Signed-off-by: Tommy Hughes <tohughes@redhat.com>
1 parent 93ddb11 commit d1f5283

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/python-helm-demo/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ We use the Feast CLI to register and materialize features, and then retrieving v
7272
3. `helm install feast-release ../../../infra/charts/feast-feature-server --set image.tag=dev --set feature_store_yaml_base64=$(base64 feature_store.yaml)`
7373
5. (Optional): check logs of the server to make sure it’s working
7474
```bash
75-
kubectl logs svc/feast-feature-server
75+
kubectl logs svc/feast-release-feast-feature-server
7676
```
7777
6. Port forward to expose the grpc endpoint:
7878
```bash
79-
kubectl port-forward svc/feast-feature-server 6566:80
79+
kubectl port-forward svc/feast-release-feast-feature-server 6566:80
8080
```
8181
7. Run test fetches for online features:8.
8282
- First: change back the Redis connection string to allow localhost connections to Redis

infra/charts/feast-feature-server/templates/service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
kind: Service
33
metadata:
4-
name: {{ include "feast-feature-server.name" . }}
4+
name: {{ include "feast-feature-server.fullname" . }}
55
labels:
66
{{- include "feast-feature-server.labels" . | nindent 4 }}
77
spec:

0 commit comments

Comments
 (0)