Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update the state of declarative storage #171

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions guides/get-going-with-gitops.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@
The name comes from the fact that the backend for Flipt is modeled around configuration files in a directory structure.
These configuration files can coexist in a directory alongside other content (application code or other configuration code).

There currently exist three top-level declarative backend types:
There currently exist four top-level declarative backend types:

Check warning on line 159 in guides/get-going-with-gitops.mdx

View workflow job for this annotation

GitHub Actions / Vale

[vale] reported by reviewdog 🐶 [Microsoft.Avoid] Don't use 'backend'. See the A-Z word list for details. Raw Output: {"message": "[Microsoft.Avoid] Don't use 'backend'. See the A-Z word list for details.", "location": {"path": "guides/get-going-with-gitops.mdx", "range": {"start": {"line": 159, "column": 50}}}, "severity": "WARNING"}

- `local` (local directory)
- `git` (remote Git repository and branch)
- `object` (object storage, currently only AWS S3)
- `object` (object storage, AWS S3 or Azure Blob Storage or Google Cloud Storage)
- `oci` (OCI registry storage)

In this guide we will explore both the `local` and `git` backend types.
Expand Down