FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

feat: Updated feast Go operator db stores by tmihalac · Pull Request #4802 · feast-dev/feast · GitHub

Closed
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
aefebd5
Added secret and registry to sample yaml
tmihalac Dec 2, 2024
00914b9
- Added missing go operator test file
tmihalac Dec 2, 2024
fc48971
Added a description for SecretKeyName and the default behaviour
tmihalac Dec 2, 2024
1c6f1e7
Added a test where the secret contains invalid type
tmihalac Dec 2, 2024
83d1720
Added a test where the secret contains invalid type
tmihalac Dec 2, 2024
08cc90c
Merge remote-tracking branch 'origin/leftover-PR-4771' into leftover-…
tmihalac Dec 2, 2024
ce7d3fd
Updated the description of SecretKeyName and SecretRef parameters in …
tmihalac Dec 3, 2024
7e1b901
Added secret and registry to sample yaml
tmihalac Dec 2, 2024
7d50c17
- Added missing go operator test file
tmihalac Dec 2, 2024
39d5c1a
Added a description for SecretKeyName and the default behaviour
tmihalac Dec 2, 2024
84ca903
Added a test where the secret contains invalid type
tmihalac Dec 2, 2024
86d2a99
Updated the description of SecretKeyName and SecretRef parameters in …
tmihalac Dec 3, 2024
cc4040f
Fixed error
tmihalac Dec 3, 2024
34b70ae
Merge remote-tracking branch 'origin/leftover-PR-4771' into leftover-…
tmihalac Dec 3, 2024
0fd929a
chore: Update packages and fix lint issues (#4790)
franciscojavierarceo Nov 26, 2024
b9ffc1f
feat: Added feast Go operator db stores support (#4771)
tmihalac Nov 26, 2024
7d8292b
chore: Rename test_validation to be more explicit about what it is do…
franciscojavierarceo Nov 27, 2024
f72b2f8
fix: Fix db store types in Operator CRD (#4798)
tchughesiv Nov 27, 2024
7f71f7a
fix: Add adapters for sqlite datetime conversion (#4797)
emgeee Nov 27, 2024
8a847f4
chore: Upgrade TypeScript to latest version 5.7.2 in /ui (#4788)
peruukki Dec 1, 2024
c928c53
feat: RBAC Authorization in Feast Operator (#4786)
dmartinol Dec 1, 2024
a1bc04b
feat: Add TLS support to the Operator (#4796)
tchughesiv Dec 2, 2024
8e1f940
chore: Clean up makefile (#4799)
emgeee Dec 3, 2024
7add6dc
Added secret and registry to sample yaml
tmihalac Dec 2, 2024
cf25793
- Added missing go operator test file
tmihalac Dec 2, 2024
ebbfdac
Added a description for SecretKeyName and the default behaviour
tmihalac Dec 2, 2024
22593b9
Added a test where the secret contains invalid type
tmihalac Dec 2, 2024
de9a5ff
Updated the description of SecretKeyName and SecretRef parameters in …
tmihalac Dec 3, 2024
8b632b8
Fixed error
tmihalac Dec 3, 2024
bf237f8
Merge remote-tracking branch 'origin/leftover-PR-4771' into leftover-…
tmihalac Dec 3, 2024
eb111d6
feat: OIDC authorization in Feast Operator (#4801)
dmartinol Dec 4, 2024
1115d96
fix: Operator envVar positioning & tls.SecretRef.Name (#4806)
tchughesiv Dec 4, 2024
6c1fa7b
feat: Added feast Go operator db stores support (#4771)
tmihalac Nov 26, 2024
8252bd3
feat: RBAC Authorization in Feast Operator (#4786)
dmartinol Dec 1, 2024
89842fa
feat: Add TLS support to the Operator (#4796)
tchughesiv Dec 2, 2024
c9a0de5
Added secret and registry to sample yaml
tmihalac Dec 2, 2024
cb9c299
- Added missing go operator test file
tmihalac Dec 2, 2024
c6bfe71
Added a description for SecretKeyName and the default behaviour
tmihalac Dec 2, 2024
e86f894
Added a test where the secret contains invalid type
tmihalac Dec 2, 2024
f6cd4df
Updated the description of SecretKeyName and SecretRef parameters in …
tmihalac Dec 3, 2024
131e6e1
Fixed error
tmihalac Dec 3, 2024
ddcac5c
Rebased to fix conflicts
tmihalac Dec 4, 2024
56449f3
Merge remote-tracking branch 'origin/leftover-PR-4771' into leftover-…
tmihalac Dec 4, 2024
1fbe9ea
Rebased to fix conflicts
tmihalac Dec 4, 2024
File filter

Filter by extension

Filter by extension .go  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
Prev Previous commit
Next Next commit
Added a description for SecretKeyName and the default behaviour
Signed-off-by: Theodor Mihalache <tmihalac@redhat.com>
  • Loading branch information
tmihalac committed Dec 2, 2024
commit fc48971493c05341eed459d845002204cd1e7824
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,11 @@ var ValidOfflineStoreFilePersistenceTypes = []string{
// OfflineStoreDBStorePersistence configures the DB store persistence for the offline store service
type OfflineStoreDBStorePersistence struct {
// +kubebuilder:validation:Enum=snowflake.offline;bigquery;redshift;spark;postgres;feast_trino.trino.TrinoOfflineStore;redis
Type string `json:"type"`
SecretRef corev1.LocalObjectReference `json:"secretRef"`
SecretKeyName string `json:"secretKeyName,omitempty"`
Type string `json:"type"`
SecretRef corev1.LocalObjectReference `json:"secretRef"`
// By default, the DB parameters should be placed as-is from the feature_store.yaml under the `type` key, if
// SecretKeyName is specified the DB parameters should be placed as-is from the feature_store.yaml under the specified key
SecretKeyName string `json:"secretKeyName,omitempty"`
}

var ValidOfflineStoreDBStorePersistenceTypes = []string{
Expand Down Expand Up @@ -140,9 +142,11 @@ type OnlineStoreFilePersistence struct {
// OnlineStoreDBStorePersistence configures the DB store persistence for the offline store service
type OnlineStoreDBStorePersistence struct {
// +kubebuilder:validation:Enum=snowflake.online;redis;ikv;datastore;dynamodb;bigtable;postgres;cassandra;mysql;hazelcast;singlestore
Type string `json:"type"`
SecretRef corev1.LocalObjectReference `json:"secretRef"`
SecretKeyName string `json:"secretKeyName,omitempty"`
Type string `json:"type"`
SecretRef corev1.LocalObjectReference `json:"secretRef"`
// By default, the DB parameters should be placed as-is from the feature_store.yaml under the `type` key, if
// SecretKeyName is specified the DB parameters should be placed as-is from the feature_store.yaml under the specified key
SecretKeyName string `json:"secretKeyName,omitempty"`
}

var ValidOnlineStoreDBStorePersistenceTypes = []string{
Expand Down Expand Up @@ -185,9 +189,11 @@ type RegistryFilePersistence struct {
// RegistryDBStorePersistence configures the DB store persistence for the registry service
type RegistryDBStorePersistence struct {
// +kubebuilder:validation:Enum=sql;snowflake.registry
Type string `json:"type"`
SecretRef corev1.LocalObjectReference `json:"secretRef"`
SecretKeyName string `json:"secretKeyName,omitempty"`
Type string `json:"type"`
SecretRef corev1.LocalObjectReference `json:"secretRef"`
// By default, the DB parameters should be placed as-is from the feature_store.yaml under the `type` key, if
// SecretKeyName is specified the DB parameters should be placed as-is from the feature_store.yaml under the specified key
SecretKeyName string `json:"secretKeyName,omitempty"`
}

var ValidRegistryDBStorePersistenceTypes = []string{
Expand Down

Back | FazBrowse Home | New Git URL