@@ -36,7 +36,7 @@ digger:
36
36
# Docker image
37
37
image :
38
38
repository : registry.digger.dev/diggerhq/digger_backend
39
- tag : " v0.6.106" # Check for latest version
39
+ tag : " v0.6.106" # Should match appVersion in Chart.yaml
40
40
41
41
# Service configuration
42
42
service :
@@ -52,23 +52,26 @@ digger:
52
52
secretName : " digger-tls" # If using TLS
53
53
54
54
# Required secrets
55
- secrets :
55
+ secret :
56
56
httpBasicAuthUsername : " admin"
57
57
httpBasicAuthPassword : " <generate-strong-password>"
58
58
bearerAuthToken : " <generate-strong-token>"
59
59
hostname : " digger.example.com"
60
60
61
61
# GitHub App credentials (filled after setup)
62
62
githubOrg : " "
63
- githubAppId : " "
64
- githubAppClientId : " "
63
+ githubAppID : " " # Note: uppercase ID
64
+ githubAppClientID : " "
65
65
githubAppClientSecret : " "
66
- githubAppPrivateKey : " "
66
+ githubAppKeyFile : " " # base64 encoded private key
67
67
githubWebhookSecret : " "
68
68
69
- # Database configuration
70
- databaseURL : " " # Leave empty if using built-in postgres
71
- postgresPassword : " <generate-strong-password>"
69
+ # PostgreSQL configuration
70
+ postgres :
71
+ user : " postgres"
72
+ database : " digger"
73
+ host : " your-postgres-host"
74
+ password : " <generate-strong-password>"
72
75
73
76
# Resource limits (optional)
74
77
resources :
@@ -85,8 +88,12 @@ digger:
85
88
#### Option 1: External PostgreSQL (Recommended for production)
86
89
` ` ` yaml
87
90
digger :
88
- secrets :
89
- databaseURL : " postgresql://user:password@host:5432/digger"
91
+ postgres :
92
+ user : " digger"
93
+ database : " digger"
94
+ host : " postgresql.example.com"
95
+ password : " your-secure-password"
96
+ sslmode : " require" # or "disable" for non-SSL connections
90
97
` ` `
91
98
92
99
#### Option 2: Built-in PostgreSQL (Testing only)
0 commit comments