Skip to content

Commit 9912d45

Browse files
woopgitbook-bot
authored andcommitted
GitBook: [master] one page modified
1 parent 17e7dca commit 9912d45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/getting-started/installing-feast.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,13 +306,13 @@ kubectl create secret generic feast-gcp-service-account --from-file=key.json
306306
For this guide we will use `NodePort` for exposing Feast services. In order to do so, we must find an internal IP of at least one GKE node.
307307

308308
```bash
309-
export FEAST_IP=$(kubectl describe nodes | grep InternalIP | awk '{print $2}' | head -n 1)
309+
export FEAST_IP=$(kubectl describe nodes | grep ExternalIP | awk '{print $2}' | head -n 1)
310310
export FEAST_CORE_URL=${FEAST_IP}:32090
311311
export FEAST_ONLINE_SERVING_URL=${FEAST_IP}:32091
312312
export FEAST_BATCH_SERVING_URL=${FEAST_IP}:32092
313313
```
314314

315-
Confirm that you are able to access this node:
315+
Confirm that you are able to access this node \(please make sure that no firewall rules are preventing access to these ports\):
316316

317317
```bash
318318
ping $FEAST_IP

0 commit comments

Comments
 (0)