docs: redirect Headlamp install namespace from kube-system to headlamp
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>
This commit is contained in:
committed by
Gandalf the Greybeard [agent]
parent
ecdee4a95a
commit
143b2c36e0
@@ -208,13 +208,13 @@ headlamp --version # Should be >= v0.13.0
|
||||
|
||||
**Verify controller is running**:
|
||||
```bash
|
||||
kubectl get pods -n kube-system -l name=sealed-secrets-controller
|
||||
kubectl get pods -n headlamp -l name=sealed-secrets-controller
|
||||
# Should show: Running pod
|
||||
```
|
||||
|
||||
**Check controller service**:
|
||||
```bash
|
||||
kubectl get svc -n kube-system sealed-secrets-controller
|
||||
kubectl get svc -n headlamp sealed-secrets-controller
|
||||
# Should exist with ClusterIP
|
||||
```
|
||||
|
||||
@@ -231,7 +231,7 @@ kubectl apply -f https://github.com/bitnami-labs/sealed-secrets/releases/downloa
|
||||
kubectl get sealedsecrets --all-namespaces
|
||||
|
||||
# Can you get the service?
|
||||
kubectl get svc -n kube-system sealed-secrets-controller
|
||||
kubectl get svc -n headlamp sealed-secrets-controller
|
||||
```
|
||||
|
||||
**Verify CRD exists**:
|
||||
|
||||
@@ -162,7 +162,7 @@ For CI/CD or offline encryption:
|
||||
|
||||
**Check controller status**:
|
||||
```bash
|
||||
kubectl get pods -n kube-system -l name=sealed-secrets-controller
|
||||
kubectl get pods -n headlamp -l name=sealed-secrets-controller
|
||||
```
|
||||
|
||||
**If not running**, install it:
|
||||
@@ -197,7 +197,7 @@ rules:
|
||||
|
||||
2. **Verify controller connectivity**:
|
||||
```bash
|
||||
kubectl get svc -n kube-system sealed-secrets-controller
|
||||
kubectl get svc -n headlamp sealed-secrets-controller
|
||||
```
|
||||
|
||||
3. **Check browser console**:
|
||||
|
||||
Reference in New Issue
Block a user