Skip to content

Commit 663cd86

Browse files
committed
modify pvc sample
Signed-off-by: Tommy Hughes <tohughes@redhat.com>
1 parent ffe3ee1 commit 663cd86

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

infra/feast-operator/config/samples/v1alpha1_featurestore_pvc_persistence.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
feastProject: my_project
77
services:
8+
# demonstrates using a pre-existing PVC
89
onlineStore:
910
persistence:
1011
file:
@@ -13,6 +14,7 @@ spec:
1314
ref:
1415
name: online-pvc
1516
mountPath: /data/online
17+
# demonstrates specifying a storageClassName and storage size
1618
offlineStore:
1719
persistence:
1820
file:
@@ -24,6 +26,7 @@ spec:
2426
requests:
2527
storage: 5Gi
2628
mountPath: /data/offline
29+
# demonstrates letting the Operator create a PVC w/ defaults set
2730
registry:
2831
local:
2932
persistence:
@@ -39,7 +42,7 @@ metadata:
3942
name: online-pvc
4043
spec:
4144
accessModes:
42-
- ReadWriteMany
45+
- ReadWriteOnce
4346
resources:
4447
requests:
4548
storage: 5Gi

0 commit comments

Comments
 (0)