From 9f718b690414c5f5e6463dd536c55c388362260f Mon Sep 17 00:00:00 2001 From: Igor Zalutski Date: Wed, 23 Jul 2025 21:15:04 +0100 Subject: [PATCH] Add baseline values --- docs/ce/self-host/deploy-helm.mdx | 37 ++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/docs/ce/self-host/deploy-helm.mdx b/docs/ce/self-host/deploy-helm.mdx index 8f51f5b7..c4088478 100644 --- a/docs/ce/self-host/deploy-helm.mdx +++ b/docs/ce/self-host/deploy-helm.mdx @@ -12,12 +12,43 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c - Create a `values.yaml` file. This will be used to configure settings for the Digger Helm chart. - To explore all configurable properties, check the [values.yaml](https://github.com/diggerhq/digger/blob/develop/helm-charts/digger-backend/values.yaml) file in the repository. + Create a `values.yaml` file. Start with this minimal configuration that will get Digger running: + + ```yaml values.yaml + # Minimal configuration for initial setup + digger: + # Disable ingress for initial setup + ingress: + enabled: false + + # Basic authentication settings + secret: + httpBasicAuthUsername: "admin" + httpBasicAuthPassword: "changeme123" # CHANGE THIS! + bearerAuthToken: "changeme456" # CHANGE THIS! + hostname: "localhost" # Will be updated later + + # Enable built-in PostgreSQL for testing + postgres: + enabled: true + secret: + useExistingSecret: false + postgresPassword: "changeme789" # CHANGE THIS! + ``` - You can also install without a values.yaml file initially and configure later, but using a values file is recommended for better control. + This minimal configuration: + - Disables ingress (we'll configure it later) + - Sets up basic authentication + - Uses built-in PostgreSQL for testing + - Gets you up and running quickly + + + Remember to change all default passwords before proceeding! + + + To explore all configurable properties, check the [values.yaml](https://github.com/diggerhq/digger/blob/develop/helm-charts/digger-backend/values.yaml) file in the repository.