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).
84
+
Volumes []corev1.Volume`json:"volumes,omitempty"`
83
85
}
84
86
85
87
// OfflineStore configures the deployed offline store service
@@ -110,6 +112,7 @@ var ValidOfflineStoreFilePersistenceTypes = []string{
110
112
111
113
// OfflineStoreDBStorePersistence configures the DB store persistence for the offline store service
112
114
typeOfflineStoreDBStorePersistencestruct {
115
+
// Type of the persistence type you want to use. Allowed values are: snowflake.offline, bigquery, redshift, spark, postgres, trino, redis, athena, mssql
// OnlineStoreFilePersistence configures the file-based persistence for the offline store service
149
+
// OnlineStoreFilePersistence configures the file-based persistence for the online store service
147
150
// +kubebuilder:validation:XValidation:rule="(!has(self.pvc) && has(self.path)) ? self.path.startsWith('/') : true",message="Ephemeral stores must have absolute paths."
148
151
// +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."
149
152
// +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."
@@ -152,8 +155,9 @@ type OnlineStoreFilePersistence struct {
152
155
PvcConfig*PvcConfig`json:"pvc,omitempty"`
153
156
}
154
157
155
-
// OnlineStoreDBStorePersistence configures the DB store persistence for the offline store service
158
+
// OnlineStoreDBStorePersistence configures the DB store persistence for the online store service
156
159
typeOnlineStoreDBStorePersistencestruct {
160
+
// Type of the persistence type you want to use. Allowed values are: snowflake.online, redis, ikv, datastore, dynamodb, bigtable, postgres, cassandra, mysql, hazelcast, singlestore, hbase, elasticsearch, qdrant, couchbase, milvus
0 commit comments