Updates install docs, READMEs, troubleshooting guides, and CI/CD tutorial to reference Headlamp's own install namespace (headlamp) instead of kube-system for where the Headlamp plugin/UI is installed. Out-of-scope (left unchanged): - Source code references to kube-system (controller workload location) - Test files with kube-system in mock configs Files changed: - docs/getting-started/installation.md - docs/getting-started/quick-start.md - docs/troubleshooting/README.md - docs/troubleshooting/common-errors.md - docs/troubleshooting/controller-issues.md - docs/troubleshooting/encryption-failures.md - docs/troubleshooting/permission-errors.md - docs/tutorials/ci-cd-integration.md - docs/development/workflow.md Co-Authored-By: Paperclip <noreply@paperclip.ing>
Troubleshooting Guide
Common issues and solutions for the Headlamp Sealed Secrets plugin.
Quick Links
- Common Errors - Frequent error messages and fixes
- Controller Issues - Connection and deployment problems
- Encryption Failures - Debugging encryption errors
- Permission Errors - RBAC troubleshooting
Quick Diagnosis
Plugin Not Visible in Headlamp
Symptoms: "Sealed Secrets" not showing in sidebar
Quick Checks:
# 1. Check plugin directory exists
ls -la ~/Library/Application\ Support/Headlamp/plugins/headlamp-sealed-secrets/
# 2. Check plugin files are present
ls ~/Library/Application\ Support/Headlamp/plugins/headlamp-sealed-secrets/dist/
# 3. Check Headlamp version
headlamp --version # Should be v0.13.0+
Solution: See Installation Guide
Controller Not Found
Symptoms: "Failed to fetch controller certificate" or health status shows unhealthy
Quick Checks:
# Check controller is running
kubectl get pods -n headlamp -l name=sealed-secrets-controller
# Check service exists
kubectl get svc -n headlamp sealed-secrets-controller
Solution: See Controller Issues
Permission Denied
Symptoms: "Forbidden" errors, missing buttons in UI
Quick Checks:
# Test your permissions
kubectl auth can-i list sealedsecrets.bitnami.com
kubectl auth can-i create sealedsecrets.bitnami.com
kubectl auth can-i get secrets
Solution: See Permission Errors
Encryption Fails
Symptoms: "Encryption failed" when creating sealed secrets
Quick Checks:
# Check certificate is valid
kubectl get secret -n headlamp sealed-secrets-key -o jsonpath='{.data.tls\.crt}' | base64 -d | openssl x509 -noout -dates
Solution: See Encryption Failures
Getting Help
If you can't find a solution:
-
Check the logs:
# Headlamp logs (depends on installation method) # For desktop app: tail -f ~/Library/Logs/Headlamp/main.log # Controller logs kubectl logs -n headlamp -l name=sealed-secrets-controller -
Enable browser console:
- View → Toggle Developer Tools
- Look for errors in Console tab
-
Search GitHub Issues:
-
Ask for Help:
Reporting Bugs
When reporting an issue, include:
- Plugin version: Check Settings page or
package.json - Headlamp version:
headlamp --version - Kubernetes version:
kubectl version --short - Controller version:
kubectl get deployment -n headlamp sealed-secrets-controller -o jsonpath='{.spec.template.spec.containers[0].image}' - Error messages: Full error text from UI or console
- Browser console logs: Copy from Developer Tools
- Steps to reproduce: What you did before the error
Common Patterns
Error Message Format
Plugin errors typically follow this format:
[Context]: Specific error message
Examples:
Failed to fetch certificate: Network errorValidation failed: Name must be a valid DNS-1123 subdomainEncryption failed: Invalid public key
Health Check Failures
The plugin checks controller health every 30 seconds. If health checks fail:
- Transient failures: Wait 1-2 minutes for retry
- Persistent failures: Check controller status
- Network issues: Verify cluster connectivity
RBAC Failures
Missing permissions hide UI elements:
| Permission Missing | UI Impact |
|---|---|
list sealedsecrets |
No sealed secrets shown |
create sealedsecrets |
"Create" button hidden |
delete sealedsecrets |
"Delete" button disabled |
get secrets |
"Decrypt" button hidden |
Next Steps
- Common Errors - Start with most frequent issues
- User Guide - Review feature documentation
- GitHub Issues - Search existing issues