Troubleshooting
Common Issues
Webhook Not Found (404)
Symptom:
HTTP/1.1 404 Not FoundCauses & Solutions:
Incorrect URL path
# Wrong: Missing prefix curl http://localhost:8080/my-webhook # Correct: Include full path curl http://localhost:8080/webhooks/v1alpha2/my-webhookConfiguration mismatch
# Configuration entrypointUrl: /github/events # URL should be: /webhooks/v1alpha2/github/events
Authentication Failed (401)
Symptom:
Solutions:
Check secret/token
Check headers
Rate Limit Exceeded (429)
Symptom:
Solutions:
Increase limits
Add burst capacity
Storage Connection Failed
Symptom:
Solutions:
Check connectivity
Verify credentials
Template Errors
Symptom:
Solutions:
Check syntax
Handle nil values
Validate JSON
Debugging Techniques
Enable Debug Logging
Check Configuration
Monitor Metrics
Test Individual Components
Error Messages
spec not found
Webhook not configured
Check configuration
security validation failed
Auth failed
Check credentials
rate limit exceeded
Too many requests
Wait or increase limits
connection refused
Storage down
Check storage service
context deadline exceeded
Timeout
Check storage service
invalid template
Template error
Fix template syntax
environment variable not found
Missing env var
Export variable
FAQ
Getting Help
Check logs: Enable debug logging
Review configuration: Validate YAML syntax
Test components: Isolate the issue
GitHub Issues: Report bugs
Community: Ask questions
Most issues can be resolved by checking configuration and connectivity.
Last updated