We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c86c3c + 8be3b89 commit 05d0425Copy full SHA for 05d0425
docs/ce/self-host/deploy-helm.mdx
@@ -262,3 +262,21 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
262
- Verify SSL certificates are valid
263
</Accordion>
264
265
+<Accordion title="Invalid URL error when creating GitHub App">
266
+ If you get an "Invalid URL" error when creating the GitHub App from manifest:
267
+
268
+ 1. **Check URL format in your values.yaml:**
269
+ ```yaml
270
+ digger:
271
+ ingress:
272
+ host: "digger.example.com" # NO https:// prefix
273
+ secret:
274
+ hostname: "https://digger.example.com" # REQUIRES https:// prefix
275
+ ```
276
277
+ 2. **Restart deployment after fixing URLs:**
278
+ ```bash
279
+ kubectl rollout restart deployment/digger-backend -n digger
280
281
+</Accordion>
282
0 commit comments