Skip to content

Commit c3188e4

Browse files
authored
docs: Add Operator Demo vids playlist & remote content-ref to registry readme (feast-dev#5399)
1 parent b89fadd commit c3188e4

File tree

4 files changed

+23
-14
lines changed

4 files changed

+23
-14
lines changed

docs/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@
131131
* [GCS](reference/registries/gcs.md)
132132
* [SQL](reference/registries/sql.md)
133133
* [Snowflake](reference/registries/snowflake.md)
134+
* [Remote](reference/registries/remote.md)
134135
* [Providers](reference/providers/README.md)
135136
* [Local](reference/providers/local.md)
136137
* [Google Cloud Platform](reference/providers/google-cloud-platform.md)

docs/how-to-guides/running-feast-in-production.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@ feature_vector = fs.get_online_features(
207207

208208
To deploy a Feast feature server on Kubernetes, you should use the included [feast-operator](../../infra/feast-operator).
209209

210+
{% embed url="https://www.youtube.com/playlist?list=PLPzVNzik7rsAN-amQLZckd0so3cIr7blX" %}
211+
210212
**Basic steps**
211213
1. Install [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
212214
2. Install the Operator

docs/reference/registries/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@ Please see [Registry](../../getting-started/components/registry.md) for a concep
2121
{% content-ref url="snowflake.md" %}
2222
[snowflake.md](snowflake.md)
2323
{% endcontent-ref %}
24+
25+
{% content-ref url="remote.md" %}
26+
[remote.md](remote.md)
27+
{% endcontent-ref %}

infra/feast-operator/README.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,21 @@ This is a K8s Operator that can be used to deploy and manage **Feast**, an open
1111
- kubectl version v1.11.3+.
1212
- Access to a Kubernetes v1.11.3+ cluster.
1313

14-
### To Deploy on the cluster
14+
## To deploy an Operator release on a cluster
15+
16+
Users can just run `kubectl apply -f <URL for YAML BUNDLE>` to install the project, i.e.:
17+
18+
```sh
19+
## Install the latest release -
20+
kubectl apply -f https://raw.githubusercontent.com/feast-dev/feast/refs/heads/stable/infra/feast-operator/dist/install.yaml
21+
22+
## OR, install a specific version -
23+
# kubectl apply -f https://raw.githubusercontent.com/feast-dev/feast/refs/tags/<version>/infra/feast-operator/dist/install.yaml
24+
```
25+
##### Feast Operator Demo Videos
26+
[![](https://img.youtube.com/vi/48cb4AHxPR4/0.jpg)](https://www.youtube.com/playlist?list=PLPzVNzik7rsAN-amQLZckd0so3cIr7blX)
27+
28+
### To deploy local changes on a cluster
1529
**Install the CRDs into the cluster:**
1630

1731
```sh
@@ -59,7 +73,7 @@ make undeploy
5973

6074
Following are the steps to build the installer and distribute this project to users.
6175

62-
1. Build the installer for the image built and published in the registry:
76+
Build the installer for the image built and published in the registry:
6377

6478
```sh
6579
make build-installer
@@ -70,18 +84,6 @@ file in the dist directory. This file contains all the resources built
7084
with Kustomize, which are necessary to install this project without
7185
its dependencies.
7286

73-
2. Using the installer
74-
75-
Users can just run kubectl apply -f <URL for YAML BUNDLE> to install the project, i.e.:
76-
77-
```sh
78-
## Install the latest release -
79-
kubectl apply -f https://raw.githubusercontent.com/feast-dev/feast/refs/heads/stable/infra/feast-operator/dist/install.yaml
80-
81-
## OR, install a specific version -
82-
# kubectl apply -f https://raw.githubusercontent.com/feast-dev/feast/refs/tags/<version>/infra/feast-operator/dist/install.yaml
83-
```
84-
8587
## Contributing
8688
Additional Feast contrib information can be found on the project's [README](https://github.com/feast-dev/feast?tab=readme-ov-file#-contributing).
8789

0 commit comments

Comments
 (0)