-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Todd Baert <[email protected]>
- Loading branch information
Showing
13 changed files
with
48 additions
and
38 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# Docker | ||
# Deployment | ||
|
||
## Docker | ||
|
||
:octicons-terminal-24: Install from the command line: | ||
|
||
|
@@ -8,10 +10,11 @@ docker pull ghcr.io/open-feature/flagd:latest | |
|
||
:octicons-code-square-24: Use as base image in Dockerfile: | ||
|
||
``` | ||
```dockerfile | ||
FROM ghcr.io/open-feature/flagd:latest | ||
``` | ||
## Kubernetes | ||
|
||
### Kubernetes | ||
|
||
flagd was designed with cloud-native paradigms in mind. | ||
You can run it as a sidecar, or as a central service in your cluster. | ||
|
@@ -21,31 +24,31 @@ If you're interested in a full-featured solution for using flagd in Kubernetes, | |
|
||
--- | ||
|
||
# Binary | ||
## Binary | ||
|
||
:fontawesome-brands-linux::fontawesome-brands-windows::fontawesome-brands-apple: Binaries are available in x86/ARM. | ||
|
||
[Release](https://github.com/open-feature/flagd/releases) | ||
|
||
## systemd | ||
### systemd | ||
|
||
A systemd wrapper is available [here](https://github.com/open-feature/flagd/blob/main/systemd/flagd.service). | ||
|
||
--- | ||
|
||
# In-Process | ||
## In-Process | ||
|
||
## :fontawesome-brands-golang: Go in-process provider | ||
### :fontawesome-brands-golang: Go in-process provider | ||
|
||
[flagd-in-process/pkg](https://pkg.go.dev/github.com/open-feature/go-sdk-contrib/providers/flagd-in-process/pkg) | ||
|
||
```shell | ||
go get github.com/open-feature/go-sdk-contrib/providers/flagd-in-process/[email protected] | ||
``` | ||
|
||
## :fontawesome-brands-java: Java in-process provider | ||
### :fontawesome-brands-java: Java in-process provider | ||
|
||
### Maven | ||
#### Maven | ||
|
||
```xml | ||
<dependency> | ||
|
@@ -54,8 +57,8 @@ go get github.com/open-feature/go-sdk-contrib/providers/flagd-in-process/pkg@v0. | |
</dependency> | ||
``` | ||
|
||
### Gradle | ||
#### Gradle | ||
|
||
``` | ||
```gradle | ||
implementation 'dev.openfeature.contrib.providers:flagd' | ||
``` |
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
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
2 changes: 1 addition & 1 deletion
2
web-docs/reference/flag-definition.md → web-docs/reference/flag-definitions.md
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Flag Definition | ||
# Flag Definitions | ||
|
||
## Flags | ||
|
||
|
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
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