-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11ddd20
commit abfaccc
Showing
5 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
title: OpenFeature | ||
description: An overview of OpenFeature and Flipt OpenFeature integrations. | ||
--- | ||
|
||
<Frame> | ||
<img | ||
className="block h-32 dark:hidden" | ||
src="/images/integration/openfeature-dark.svg" | ||
/> | ||
<img | ||
className="hidden h-32 dark:block" | ||
src="/images/integration/openfeature-light.svg" | ||
/> | ||
</Frame> | ||
|
||
[OpenFeature](https://openfeature.dev/) is an open specification that provides a vendor-agnostic, community-driven API for feature flagging that works with your favorite feature flag management tool. | ||
|
||
It is an open standard that allows you to use the same feature flagging API across multiple feature flag management tools. This means that you can switch between feature flag management tools without having to change your code. | ||
|
||
OpenFeature is a CNCF Sandbox project. You can learn more about OpenFeature on the [OpenFeature website](https://openfeature.dev/). | ||
|
||
## Flipt OpenFeature Providers | ||
|
||
As a feature flag management tool, Flipt provides our own OpenFeature integrations (providers). This means that you can use the OpenFeature API with Flipt. | ||
|
||
From the [OpenFeature Specification](https://docs.openfeature.dev/docs/specification/sections/providers): | ||
|
||
> Providers are the "translator" between the flag evaluation calls made in application code, and the flag management system that stores flags and in some cases evaluates flags. | ||
We currently provide the following OpenFeature providers: | ||
|
||
<CardGroup cols={2}> | ||
<Card | ||
href="https://github.com/flipt-io/flipt-openfeature-provider-go" | ||
title="Go" | ||
icon="golang" | ||
color="#00add8" | ||
> | ||
The official Flipt OpenFeature Provider using the OpenFeature Go SDK. | ||
</Card> | ||
<Card href="#" title="Java (In-Progress)" icon="java" color="#e41f23"> | ||
The official Flipt OpenFeature Provider using the OpenFeature Java SDK. | ||
</Card> | ||
<Card | ||
href="https://github.com/flipt-io/flipt/discussions/2125" | ||
title="Request a Client" | ||
icon="github" | ||
color="#000000" | ||
> | ||
> Need a client in another language? Let us know! | ||
</Card> | ||
</CardGroup> |
This file contains 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