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
@@ -33,7 +33,7 @@ The sealing certificate is the public key used to encrypt secrets. You can downl
|
||||
Alternatively, fetch it directly from the controller:
|
||||
|
||||
```bash
|
||||
kubectl get secret -n kube-system \
|
||||
kubectl get secret -n headlamp \
|
||||
-l sealedsecrets.bitnami.com/sealed-secrets-key=active \
|
||||
-o jsonpath='{.items[0].data.tls\.crt}' | base64 -d > sealed-secrets-cert.pem
|
||||
```
|
||||
@@ -41,7 +41,7 @@ kubectl get secret -n kube-system \
|
||||
Or use the controller's certificate endpoint:
|
||||
|
||||
```bash
|
||||
curl http://sealed-secrets-controller.kube-system:8080/v1/cert.pem > sealed-secrets-cert.pem
|
||||
curl http://sealed-secrets-controller.headlamp:8080/v1/cert.pem > sealed-secrets-cert.pem
|
||||
```
|
||||
|
||||
## Step 2: Install kubeseal CLI
|
||||
@@ -107,7 +107,7 @@ jobs:
|
||||
echo "${{ secrets.SEALED_SECRETS_CERT }}" > sealed-secrets-cert.pem
|
||||
|
||||
# Option 2: From cluster (requires kubectl access)
|
||||
# kubectl get secret -n kube-system \
|
||||
# kubectl get secret -n headlamp \
|
||||
# -l sealedsecrets.bitnami.com/sealed-secrets-key=active \
|
||||
# -o jsonpath='{.items[0].data.tls\.crt}' | base64 -d > sealed-secrets-cert.pem
|
||||
|
||||
|
||||
Reference in New Issue
Block a user