Skip to content

Commit 86bc17c

Browse files
committed
feat(operator chart): add CRD installation template and NOTES
Signed-off-by: matt <[email protected]>
1 parent 4d07453 commit 86bc17c

File tree

2 files changed

+8122
-0
lines changed

2 files changed

+8122
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
1. The Feast Operator has been deployed successfully!
2+
3+
2. Check that the operator is running:
4+
kubectl get deployment -n {{ include "feast-operator.namespace" . }} {{ include "feast-operator.fullname" . }}-controller-manager
5+
6+
3. View the operator logs:
7+
kubectl logs -n {{ include "feast-operator.namespace" . }} deployment/{{ include "feast-operator.fullname" . }}-controller-manager
8+
9+
4. To create a FeatureStore, create a custom resource:
10+
kubectl apply -f - <<EOF
11+
apiVersion: feast.dev/v1alpha1
12+
kind: FeatureStore
13+
metadata:
14+
name: sample-feast
15+
namespace: {{ include "feast-operator.namespace" . }}
16+
spec:
17+
feastProject: feast-test
18+
EOF
19+
20+
5. Check the FeatureStore status:
21+
kubectl get featurestores -n {{ include "feast-operator.namespace" . }}
22+
23+
{{- if .Values.metrics.enabled }}
24+
6. Metrics are available at:
25+
kubectl get service -n {{ include "feast-operator.namespace" . }} {{ include "feast-operator.fullnameWithSuffix" (dict "root" . "suffix" "metrics") }}
26+
{{- end }}
27+
28+
For more information about configuring Feast, visit https://docs.feast.dev/

0 commit comments

Comments
 (0)