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
// OnlineStoreFilePersistence configures the file-based persistence for the offline store service
167
+
// OnlineStoreFilePersistence configures the file-based persistence for the online store service
155
168
// +kubebuilder:validation:XValidation:rule="(!has(self.pvc) && has(self.path)) ? self.path.startsWith('/') : true",message="Ephemeral stores must have absolute paths."
156
169
// +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."
157
170
// +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."
@@ -160,7 +173,7 @@ type OnlineStoreFilePersistence struct {
160
173
PvcConfig*PvcConfig`json:"pvc,omitempty"`
161
174
}
162
175
163
-
// OnlineStoreDBStorePersistence configures the DB store persistence for the offline store service
176
+
// OnlineStoreDBStorePersistence configures the DB store persistence for the online store service
|`disableInitContainers`_boolean_| Disable the 'feast repo initialization' initContainer |
98
+
|`volumes`_[Volume](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.30/#volume-v1-core) array_| Volumes specifies the list of volumes to mount in the FeatureStore deployment. |
98
99
99
100
100
101
#### FeatureStoreSpec
@@ -195,6 +196,7 @@ _Appears in:_
195
196
|`tls`_[TlsConfigs](#tlsconfigs)_||
196
197
| `logLevel`_string_ | LogLevel sets the logging level for the offline store service
0 commit comments