@@ -262,87 +262,3 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
262
262
- Verify SSL certificates are valid
263
263
</Accordion >
264
264
265
- ## Advanced Configuration
266
-
267
- <Accordion title = " Using existing secrets" >
268
- If you prefer to manage secrets separately, you can reference an existing Kubernetes secret:
269
-
270
- ``` yaml values.yaml
271
- digger :
272
- secret :
273
- useExistingSecret : true
274
- existingSecretName : " digger-secrets"
275
- ` ` `
276
- </Accordion>
277
-
278
- <Accordion title="Resource configuration">
279
- Configure resource limits and requests:
280
-
281
- ` ` ` yaml values.yaml
282
- digger :
283
- resources :
284
- requests :
285
- cpu : 100m
286
- memory : 128Mi
287
- limits :
288
- cpu : 500m
289
- memory : 512Mi
290
- ` ` `
291
- </Accordion>
292
-
293
- <Accordion title="Full values.yaml example">
294
- ` ` ` yaml values.yaml
295
- digger :
296
- image :
297
- repository : registry.digger.dev/diggerhq/digger_backend
298
- tag : " v0.6.106"
299
- pullPolicy : IfNotPresent
300
-
301
- service :
302
- type : ClusterIP
303
- port : 3000
304
-
305
- ingress :
306
- enabled : true
307
- host : " digger.example.com"
308
- annotations :
309
- kubernetes.io/ingress.class : " nginx"
310
- cert-manager.io/cluster-issuer : " letsencrypt-prod"
311
-
312
- secret :
313
- httpBasicAuthUsername : " admin"
314
- httpBasicAuthPassword : " secure-password-123"
315
- bearerAuthToken : " secure-bearer-token-456"
316
- hostname : " https://digger.example.com" # Include https:// prefix
317
-
318
- githubOrg : " your-github-org"
319
- githubAppID : " 123456"
320
- githubAppClientID : " Iv1.abc123def456"
321
- githubAppClientSecret : " github_app_client_secret"
322
- githubAppKeyFile : " LS0tLS1CRUdJTi..."
323
- githubWebhookSecret : " webhook_secret"
324
-
325
- postgres :
326
- user : " digger"
327
- database : " digger"
328
- host : " postgresql.example.com"
329
- password : " postgres-password"
330
- sslmode : " require"
331
-
332
- resources :
333
- requests :
334
- cpu : 100m
335
- memory : 128Mi
336
- limits :
337
- cpu : 500m
338
- memory : 512Mi
339
-
340
- # For testing only - use external database in production
341
- postgres :
342
- enabled : false
343
- # If you enable the built-in postgres:
344
- # secret:
345
- # useExistingSecret: false
346
- # password: "test-password"
347
- ```
348
- </Accordion >
0 commit comments