You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update feast installation docs
- rename the feast service account
- add notes on `--no-address`
- make the important notes not greyed out
* Update formatting
Comment out `--no-address` option if you do not have a NAT router set up in your project (especially in newly created Google Cloud Project). This will assign a public IP to the redis instance so it can access the internet without a NAT router. With no public IP, the instance requires a NAT router to access internet.
87
+
88
88
When the command above completes, it will output details of the newly created VM. Set the variable `FEAST_SERVING_REDIS_HOST` to the `INTERNAL_IP` value from the `gcloud` output.
89
+
89
90
```bash
90
91
# Example output:
91
92
# NAME ZONE MACHINE_TYPE INTERNAL_IP STATUS
@@ -162,10 +163,11 @@ Run the following command to create a helm values configuration file for Feast i
162
163
> -`core.service.loadBalancerSourceRanges`
163
164
> -`serving.service.annotations`
164
165
> -`serving.service.loadBalancerSourceRanges`
165
-
>
166
-
> **IMPORTANT NOTE**
167
-
> Commenting out those fields is **not** recommended, however, because it will **expose your Feast service to the public internet**.
168
-
>
166
+
167
+
**IMPORTANT NOTE**
168
+
169
+
Commenting out those fields is **not** recommended, however, because it will **expose your Feast service to the public internet**.
170
+
169
171
> A better approach if you don't have VPN setup to your Google Cloud network is to create a new VM that will act as a [bastion host](https://en.wikipedia.org/wiki/Bastion_host). You will then access Feast services after SSH-ing to this bastion host (because you can then access Feast services via the internal load balancer IP).
0 commit comments