Skip to content

Commit 05d0425

Browse files
authored
Merge pull request #2056 from diggerhq/docs/add-helm-verification-step
docs: add troubleshooting for GitHub App Invalid URL error
2 parents 3c86c3c + 8be3b89 commit 05d0425

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,3 +262,21 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
262262
- Verify SSL certificates are valid
263263
</Accordion>
264264

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

Comments
 (0)