diff --git a/docs/v1/configuration/storage.mdx b/docs/v1/configuration/storage.mdx index 9320f68..9d6cb6a 100644 --- a/docs/v1/configuration/storage.mdx +++ b/docs/v1/configuration/storage.mdx @@ -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 +``` + 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. @@ -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) diff --git a/docs/v2/cli/commands/license/activate.mdx b/docs/v2/cli/commands/license/activate.mdx index 13a88ac..da01cd2 100644 --- a/docs/v2/cli/commands/license/activate.mdx +++ b/docs/v2/cli/commands/license/activate.mdx @@ -35,7 +35,7 @@ flipt license activate flipt license activate --config /path/to/config.yml ``` - +{/* TODO: Add screenshot of license activation wizard */} ## More Info diff --git a/docs/v2/cli/commands/license/check.mdx b/docs/v2/cli/commands/license/check.mdx index 840e184..a13d05c 100644 --- a/docs/v2/cli/commands/license/check.mdx +++ b/docs/v2/cli/commands/license/check.mdx @@ -35,7 +35,7 @@ flipt license check flipt license check --config /path/to/config.yml ``` - +{/* TODO: Add screenshot of license check command output */} ## More Info diff --git a/docs/v2/configuration/storage.mdx b/docs/v2/configuration/storage.mdx index 3ed9de4..e21e170 100644 --- a/docs/v2/configuration/storage.mdx +++ b/docs/v2/configuration/storage.mdx @@ -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 +``` + #### Access Token