File tree Expand file tree Collapse file tree 2 files changed +8122
-0
lines changed
infra/charts/feast-operator/templates Expand file tree Collapse file tree 2 files changed +8122
-0
lines changed Original file line number Diff line number Diff line change 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/
You can’t perform that action at this time.
0 commit comments