@@ -36,7 +36,7 @@ digger:
3636 # Docker image
3737 image :
3838 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
4040
4141 # Service configuration
4242 service :
@@ -52,23 +52,26 @@ digger:
5252 secretName : " digger-tls" # If using TLS
5353
5454 # Required secrets
55- secrets :
55+ secret :
5656 httpBasicAuthUsername : " admin"
5757 httpBasicAuthPassword : " <generate-strong-password>"
5858 bearerAuthToken : " <generate-strong-token>"
5959 hostname : " digger.example.com"
6060
6161 # GitHub App credentials (filled after setup)
6262 githubOrg : " "
63- githubAppId : " "
64- githubAppClientId : " "
63+ githubAppID : " " # Note: uppercase ID
64+ githubAppClientID : " "
6565 githubAppClientSecret : " "
66- githubAppPrivateKey : " "
66+ githubAppKeyFile : " " # base64 encoded private key
6767 githubWebhookSecret : " "
6868
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>"
7275
7376 # Resource limits (optional)
7477 resources :
@@ -85,8 +88,12 @@ digger:
8588#### Option 1: External PostgreSQL (Recommended for production)
8689` ` ` yaml
8790digger :
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
9097` ` `
9198
9299#### Option 2: Built-in PostgreSQL (Testing only)
0 commit comments