Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 11 additions & 3 deletions docs/v1/configuration/storage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,14 @@ storage:
`false` by default. Instead, you are advised to put the key fingerprint in the
known hosts file where you are running Flipt. For example, for GitHub you can
do `ssh-keyscan github.com >> ~/.ssh/known_hosts` on the Flipt host.

_Container Deployment_: When running Flipt in containers, mount the known_hosts file to the system-wide SSH path instead of a user directory. For example, with Docker

```yaml
volumes:
- /path/to/your/known_hosts:/etc/ssh/ssh_known_hosts:ro
```

</Warning>

See our [GitOps Guide](/v1/guides/user/get-going-with-gitops) for an example of how to set up a GitHub repository as a flag state backend.
Expand Down Expand Up @@ -494,9 +502,9 @@ These should be provided as environment variables to the Flipt server process. T
- Using [Azure Credentials](https://learn.microsoft.com/en-us/azure/developer/go/azure-sdk-authentication?tabs=bash#2-authenticate-with-azure)

```bash
AZURE_CLIENT_ID=... # application ID of an Azure service principal
AZURE_TENANT_ID=... # ID of the application's Microsoft Entra tenant
AZURE_CLIENT_SECRET=... # password of the Azure service principal
AZURE_CLIENT_ID=... # application ID of an Azure service principal
AZURE_TENANT_ID=... # ID of the application's Microsoft Entra tenant
AZURE_CLIENT_SECRET=... # password of the Azure service principal
```

- Using Azure Blob [Storage Account Keys](https://learn.microsoft.com/en-us/azure/storage/common/storage-account-keys-manage?tabs=azure-portal)
Expand Down
2 changes: 1 addition & 1 deletion docs/v2/cli/commands/license/activate.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ flipt license activate
flipt license activate --config /path/to/config.yml
```

<!-- TODO: Add screenshot of license activation wizard -->
{/* TODO: Add screenshot of license activation wizard */}

## More Info

Expand Down
2 changes: 1 addition & 1 deletion docs/v2/cli/commands/license/check.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ flipt license check
flipt license check --config /path/to/config.yml
```

<!-- TODO: Add screenshot of license check command output -->
{/* TODO: Add screenshot of license check command output */}

## More Info

Expand Down
8 changes: 8 additions & 0 deletions docs/v2/configuration/storage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,14 @@ credentials:
`false` by default. Instead, you are advised to put the key fingerprint in the
known hosts file where you are running Flipt. For example, for GitHub you can
do `ssh-keyscan github.com >> ~/.ssh/known_hosts` on the Flipt host.

_Container Deployment_: When running Flipt in containers, mount the known_hosts file to the system-wide SSH path instead of a user directory. For example, with Docker

```yaml
volumes:
- /path/to/your/known_hosts:/etc/ssh/ssh_known_hosts:ro
```

</Warning>

#### Access Token
Expand Down