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 open-feature-operator is a Kubernetes native operator that allows you to expose feature flags to your applications. It injects a [flagd](https://github.com/open-feature/flagd) sidecar into your pod and allows you to poll the flagd server for feature flags in a variety of ways.
10
9
11
10
### Architecture
@@ -15,12 +14,12 @@ High level architecture is as follows:
15
14
16
15
<imgsrc="images/arch-0.png"width="560">
17
16
18
-
19
17
### Example
20
18
21
19
When wishing to leverage featureflagging within the local pod, the following steps are required:
22
20
23
21
1. Create a new feature flag custom resource e.g.
22
+
24
23
```
25
24
apiVersion: core.openfeature.dev/v1alpha1
26
25
kind: FeatureFlagConfiguration
@@ -30,10 +29,11 @@ spec:
30
29
featureFlagSpec: |
31
30
{
32
31
"foo" : "bar"
33
-
}
32
+
}
34
33
```
35
34
36
35
2. Reference the CR within the pod spec annotations
0 commit comments