chore: add site url as required in kubernetes helm deployment

This commit is contained in:
Thalles Passos
2024-09-04 18:03:18 -03:00
committed by GitHub
parent 97023e7714
commit 03fd0a1eb9

View File

@ -41,7 +41,7 @@ description: "Learn how to use Helm chart to install Infisical on your Kubernete
To deploy this Helm chart, a Kubernetes secret named `infisical-secrets` must be present in the same namespace where the chart is being deployed.
For a minimal installation of Infisical, you need to configure `ENCRYPTION_KEY`, `AUTH_SECRET`, `DB_CONNECTION_URI`, and `REDIS_URL`. [Learn more about configuration settings](/self-hosting/configuration/envars).
For a minimal installation of Infisical, you need to configure `ENCRYPTION_KEY`, `AUTH_SECRET`, `DB_CONNECTION_URI`, `SITE_URL`, and `REDIS_URL`. [Learn more about configuration settings](/self-hosting/configuration/envars).
<Tabs>
@ -56,6 +56,7 @@ description: "Learn how to use Helm chart to install Infisical on your Kubernete
stringData:
AUTH_SECRET: <>
ENCRYPTION_KEY: <>
SITE_URL: <>
```
</Tab>
<Tab title="Production deployment">
@ -71,6 +72,7 @@ description: "Learn how to use Helm chart to install Infisical on your Kubernete
ENCRYPTION_KEY: <>
REDIS_URL: <>
DB_CONNECTION_URI: <>
SITE_URL: <>
```
</Tab>
</Tabs>