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
The Feast Namespace Registry is a feature that automatically creates and maintains a centralized ConfigMap containing information about all Feast feature store instances deployed by the operator. This enables dashboard applications and other tools to discover and connect to Feast instances across different namespaces.
6
+
7
+
## Implementation Details
8
+
9
+
1.**ConfigMap Creation**: The operator creates a ConfigMap in the appropriate namespace:
2.**Access Control**: A RoleBinding is created to allow `system:authenticated` users to read the ConfigMap
14
+
15
+
3.**Automatic Registration & Cleanup**: When a new feature store instance is created, it automatically registers its namespace and client configuration in the ConfigMap. When deleted, it automatically removes its entry from the ConfigMap
16
+
17
+
4.**Data Structure**: The ConfigMap contains a JSON structure with namespace names as keys and lists of client configuration names as values
18
+
19
+
### ConfigMap Structure
20
+
21
+
The namespace registry ConfigMap (`feast-configs-registry`) contains the following data:
0 commit comments