Skip to content

Commit

Permalink
GitBook: [master] one page modified
Browse files Browse the repository at this point in the history
  • Loading branch information
woop authored and gitbook-bot committed Jan 8, 2020
1 parent 17e7dca commit 9912d45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started/installing-feast.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,13 @@ kubectl create secret generic feast-gcp-service-account --from-file=key.json
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.

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

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

```bash
ping $FEAST_IP
Expand Down

0 comments on commit 9912d45

Please sign in to comment.