File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -306,13 +306,13 @@ kubectl create secret generic feast-gcp-service-account --from-file=key.json
306306For 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)
310310export FEAST_CORE_URL=${FEAST_IP} :32090
311311export FEAST_ONLINE_SERVING_URL=${FEAST_IP} :32091
312312export 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
318318ping $FEAST_IP
You can’t perform that action at this time.
0 commit comments