Skip to content

Commit 9f718b6

Browse files
committed
Add baseline values
1 parent e219d85 commit 9f718b6

File tree

1 file changed

+34
-3
lines changed

1 file changed

+34
-3
lines changed

docs/ce/self-host/deploy-helm.mdx

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,43 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
1212

1313
<Steps>
1414
<Step title="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:
16+
17+
```yaml values.yaml
18+
# Minimal configuration for initial setup
19+
digger:
20+
# Disable ingress for initial setup
21+
ingress:
22+
enabled: false
23+
24+
# Basic authentication settings
25+
secret:
26+
httpBasicAuthUsername: "admin"
27+
httpBasicAuthPassword: "changeme123" # CHANGE THIS!
28+
bearerAuthToken: "changeme456" # CHANGE THIS!
29+
hostname: "localhost" # Will be updated later
30+
31+
# Enable built-in PostgreSQL for testing
32+
postgres:
33+
enabled: true
34+
secret:
35+
useExistingSecret: false
36+
postgresPassword: "changeme789" # CHANGE THIS!
37+
```
1738

1839
<Info>
19-
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
2045
</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.
2152
</Step>
2253

2354
<Step title="Select Digger version">

0 commit comments

Comments
 (0)