You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ce/self-host/deploy-helm.mdx
+34-3Lines changed: 34 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,43 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
12
12
13
13
<Steps>
14
14
<Steptitle="Create Helm values">
15
-
Create a `values.yaml` file. This will be used to configure settings for the Digger Helm chart.
16
-
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.
15
+
Create a `values.yaml` file. Start with this minimal configuration that will get Digger running:
You can also install without a values.yaml file initially and configure later, but using a values file is recommended for better control.
40
+
This minimal configuration:
41
+
- Disables ingress (we'll configure it later)
42
+
- Sets up basic authentication
43
+
- Uses built-in PostgreSQL for testing
44
+
- Gets you up and running quickly
20
45
</Info>
46
+
47
+
<Warning>
48
+
Remember to change all default passwords before proceeding!
49
+
</Warning>
50
+
51
+
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.
0 commit comments