-
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.
feat: finish moving things around, filling out details
- Loading branch information
1 parent
5ea838e
commit b05827d
Showing
9 changed files
with
271 additions
and
209 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,7 @@ sdks | |
sqlite | ||
unary | ||
uncomment | ||
uncompromised | ||
URIs | ||
yaml | ||
zipkin |
This file was deleted.
Oops, something went wrong.
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,6 +1,6 @@ | ||
--- | ||
title: Bring Your Own Cloud | ||
description: Learn about the managed offerings we're building | ||
description: Tailor Flipt to your unique infrastructure needs with our BYOC offering. | ||
--- | ||
|
||
<Frame id="managed-boyc"> | ||
|
@@ -11,8 +11,15 @@ description: Learn about the managed offerings we're building | |
**Embrace the Power of Convenience with Flipt’s BYOC Offering** | ||
|
||
- **Effortless Deployment**: Seamlessly integrate Flipt into your existing cloud ecosystem. Our turn-key solution ensures rapid deployment, letting you leverage Flipt’s capabilities without the hassle of setup. | ||
|
||
- **Expert Management at Your Service**: Leave the complexities of installation, configuration, and ongoing operations to us. Our dedicated team ensures that your Flipt instance is always running optimally, allowing you to focus on what you do best. | ||
|
||
- **Dedicated Support, Tailored to You**: Experience unparalleled support with direct access to the Flipt team. Our experts work closely with you, ensuring a personalized approach that aligns with your unique infrastructure needs. | ||
|
||
- **Rapid, Production-Ready Setup**: Transform your feature flag management in minutes. We guarantee a production-ready Flipt instance swiftly, minimizing downtime and maximizing efficiency. | ||
|
||
- **Customized Integration for Your Infrastructure**: Your infrastructure is unique, and so is our integration approach. We tailor Flipt to fit seamlessly within your distinct ecosystem, ensuring compatibility and enhancing performance. | ||
|
||
- **The SaaS Advantage, Enhanced Security**: Enjoy the benefits of a SaaS model without compromising on security or experiencing latency issues. Our BYOC solution offers the best of both worlds, providing a secure, high-performance environment for your feature flag needs. | ||
|
||
Interested in piloting Flipt’s BYOC offering? [Sign Up as a Design Partner](https://1ld82idjvlr.typeform.com/to/s7YfGviE) or get in touch at [[email protected]](mailto:[email protected]). | ||
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 |
---|---|---|
|
@@ -8,9 +8,18 @@ description: Use our Cloud offering as the simplest, scalable and managed backen | |
<img className="block h-128 dark:hidden" src="/images/managed/hybrid-light.png" /> | ||
</Frame> | ||
|
||
- Deploy open-source Flipt to your infrastructure the same way you do today. | ||
- Configure Flipt Cloud as the managed storage backend. No additional backend necessary, no compromises on performance. | ||
- Flipt's management user interface always ready and available from day zero. | ||
- Users, authentication and login with no extra configuration or associated hosting cost. | ||
- Simpler, self-service setup for SSO and other integrations. | ||
- Plans for in-application audit logging, metrics and insights. | ||
**Introducing Flipt Hybrid Cloud: A Seamless Blend of Flexibility and Control** | ||
|
||
- **Familiar Deployment, Enhanced Capabilities**: Deploy the open-source Flipt on your infrastructure as you always have, but with added robustness. Experience a seamless transition with enhanced features that fit perfectly into your existing setup. | ||
|
||
- **Streamlined Managed Storage**: Opt for Flipt Cloud as your managed storage backend, eliminating the need for additional setups. Enjoy uncompromised performance with a storage solution that's tailored to your needs. | ||
|
||
- **Ready from the Start**: Jump right in with Flipt’s intuitive management user interface, available from day one. This immediate readiness ensures a smooth, hassle-free start to your feature flag management journey. | ||
|
||
- **Effortless User Management**: Simplify user authentication and login processes without extra configuration or hosting expenses. Our platform is designed for ease, making user management a breeze right out of the box. | ||
|
||
- **Simple Self-Service Setup for Integrations**: Enjoy a straightforward, self-service setup for Single Sign-On (SSO) and other integrations. This user-friendly approach reduces complexity and enhances your operational efficiency. | ||
|
||
- **Future-Proof Your Operations with Advanced Features**: Stay ahead with plans for in-application audit logging, metrics, and insights. Our upcoming features are designed to provide deep insights and enhanced control, helping you make data-driven decisions with ease. | ||
|
||
Interested in piloting our Hybrid Cloud offering? [Sign Up as a Design Partner](https://1ld82idjvlr.typeform.com/to/s7YfGviE) or get in touch at [[email protected]](mailto:[email protected]). | ||
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
--- | ||
title: "Docker" | ||
description: "Running Flipt in a Docker container" | ||
--- | ||
|
||
The simplest way to run Flipt is via Docker. This streamlines the installation | ||
and configuration by using a reliable runtime. | ||
|
||
### Prerequisites | ||
|
||
Docker installation is required on the host, see the [official installation docs](https://docs.docker.com/install/). | ||
|
||
<Note> | ||
Flipt requires Docker Engine version | ||
[20.10](https://docs.docker.com/engine/release-notes/20.10/) or higher. | ||
</Note> | ||
|
||
### Running | ||
|
||
```console | ||
docker run -d \ | ||
-p 8080:8080 \ | ||
-p 9000:9000 \ | ||
-v $HOME/flipt:/var/opt/flipt \ | ||
docker.flipt.io/flipt/flipt:latest | ||
``` | ||
|
||
This will download the image and start a Flipt container and publish ports | ||
needed to access the UI and backend server. All persistent Flipt data will be | ||
stored in `$HOME/flipt`. | ||
|
||
<Info> | ||
`$HOME/flipt` is just used as an example, you can use any directory you would | ||
like on the host. | ||
</Info> | ||
|
||
The Flipt container uses host-mounted volumes to persist data: | ||
|
||
| Host location | Container location | Purpose | | ||
| ------------- | ------------------ | ---------------------------- | | ||
| $HOME/flipt | /var/opt/flipt | For storing application data | | ||
|
||
This allows data to persist between Docker container restarts. | ||
|
||
<Warning> | ||
If you don't use mounted volumes to persist your data, your data will be lost | ||
when the container exits! | ||
</Warning> | ||
|
||
After starting the container you can visit http://0.0.0.0:8080 to view the | ||
application. | ||
|
||
<Note>Flipt runs without the root user in the Docker container.</Note> | ||
|
||
### Configuration | ||
|
||
A default configuration file within the image. To supply a custom configuration, update the `docker run` command to mount your local configuration into the container | ||
|
||
```console | ||
docker run -d \ | ||
-p 8080:8080 \ | ||
-p 9000:9000 \ | ||
-v $HOME/flipt:/var/opt/flipt \ | ||
-v $HOME/flipt/config.yaml:/etc/flipt/config.yaml \ | ||
docker.flipt.io/flipt/flipt:latest | ||
``` |
Oops, something went wrong.