From 9569d3971aeef663ea4a9004c24d2276a0b0fba3 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 29 Feb 2024 18:01:57 -0500 Subject: [PATCH] update helm secrets def in docs --- docs/self-hosting/deployment-options/kubernetes-helm.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/self-hosting/deployment-options/kubernetes-helm.mdx b/docs/self-hosting/deployment-options/kubernetes-helm.mdx index e1a45f408..ae27207cd 100644 --- a/docs/self-hosting/deployment-options/kubernetes-helm.mdx +++ b/docs/self-hosting/deployment-options/kubernetes-helm.mdx @@ -46,8 +46,8 @@ description: "Use Helm chart to install Infisical on your Kubernetes cluster" - For test or proof-of-concept purposes, you may omit `DB_CONNECTION_URI` and `REDIS_URL` from `infisical-secrets`. This is because the Helm chart will automatically provision and connect to the in-cluster instances of Postgres and Redis by default. - ```yaml simple-values-example.yaml + For test or proof-of-concept purposes, you may omit `DB_CONNECTION_URI` and `REDIS_URL` from `infisical-secrets`. This is because the Helm chart will automatically provision and connect to the in-cluster instances of Postgres and Redis by default. + ```yaml simple-values-example.yaml apiVersion: v1 kind: Secret metadata: @@ -56,7 +56,7 @@ description: "Use Helm chart to install Infisical on your Kubernetes cluster" stringData: AUTH_SECRET: <> ENCRYPTION_KEY: <> - ``` + ``` For production environments, we recommend using Cloud-based Platform as a Service (PaaS) solutions for PostgreSQL and Redis to ensure high availability. In on-premise setups, it's recommended to configure Redis and Postgres for high availability, either by using Bitnami charts or a custom configuration.