Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added couchbase.offline to operator types
Signed-off-by: Elliot Scribner <elliot.scribner@couchbase.com>
  • Loading branch information
ejscribner committed Feb 27, 2025
commit 623c1a13cfd25ee67ad682475a232cdc7340f3e4
3 changes: 2 additions & 1 deletion infra/feast-operator/api/v1alpha1/featurestore_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ var ValidOfflineStoreFilePersistenceTypes = []string{
// OfflineStoreDBStorePersistence configures the DB store persistence for the offline store service
type OfflineStoreDBStorePersistence struct {
// Type of the persistence type you want to use.
// +kubebuilder:validation:Enum=snowflake.offline;bigquery;redshift;spark;postgres;trino;athena;mssql
// +kubebuilder:validation:Enum=snowflake.offline;bigquery;redshift;spark;postgres;trino;athena;mssql;couchbase.offline
Type string `json:"type"`
// Data store parameters should be placed as-is from the "feature_store.yaml" under the secret key. "registry_type" & "type" fields should be removed.
SecretRef corev1.LocalObjectReference `json:"secretRef"`
Expand All @@ -165,6 +165,7 @@ var ValidOfflineStoreDBStorePersistenceTypes = []string{
"trino",
"athena",
"mssql",
"couchbase.offline",
}

// OnlineStore configures the online store service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ spec:
- trino
- athena
- mssql
- couchbase.offline
type: string
required:
- secretRef
Expand Down Expand Up @@ -3478,6 +3479,7 @@ spec:
- trino
- athena
- mssql
- couchbase.offline
type: string
required:
- secretRef
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ spec:
- trino
- athena
- mssql
- couchbase.offline
type: string
required:
- secretRef
Expand Down Expand Up @@ -3899,6 +3900,7 @@ spec:
- trino
- athena
- mssql
- couchbase.offline
type: string
required:
- secretRef
Expand Down
2 changes: 2 additions & 0 deletions infra/feast-operator/dist/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ spec:
- trino
- athena
- mssql
- couchbase.offline
type: string
required:
- secretRef
Expand Down Expand Up @@ -3907,6 +3908,7 @@ spec:
- trino
- athena
- mssql
- couchbase.offline
type: string
required:
- secretRef
Expand Down