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
// Volumes specifies the volumes to mount in the FeatureStore deployment. A corresponding `VolumeMount` should be added to whichever feast service(s) require access to said volume(s).
82
+
Volumes []corev1.Volume`json:"volumes,omitempty"`
81
83
}
82
84
83
85
// OfflineStore configures the deployed offline store service
@@ -141,7 +143,7 @@ type OnlineStorePersistence struct {
// OnlineStoreFilePersistence configures the file-based persistence for the offline store service
146
+
// OnlineStoreFilePersistence configures the file-based persistence for the online store service
145
147
// +kubebuilder:validation:XValidation:rule="(!has(self.pvc) && has(self.path)) ? self.path.startsWith('/') : true",message="Ephemeral stores must have absolute paths."
146
148
// +kubebuilder:validation:XValidation:rule="(has(self.pvc) && has(self.path)) ? !self.path.startsWith('/') : true",message="PVC path must be a file name only, with no slashes."
147
149
// +kubebuilder:validation:XValidation:rule="has(self.path) ? !(self.path.startsWith('s3://') || self.path.startsWith('gs://')) : true",message="Online store does not support S3 or GS buckets."
@@ -150,7 +152,7 @@ type OnlineStoreFilePersistence struct {
150
152
PvcConfig*PvcConfig`json:"pvc,omitempty"`
151
153
}
152
154
153
-
// OnlineStoreDBStorePersistence configures the DB store persistence for the offline store service
155
+
// OnlineStoreDBStorePersistence configures the DB store persistence for the online store service
0 commit comments