fix: restore kube-system for sealed-secrets-controller refs
Reverts docs changes from 143b2c3 that incorrectly replaced
kube-system with headlamp for sealed-secrets-controller commands.
The sealed-secrets-controller runs in kube-system, NOT headlamp.
Only the Headlamp app install namespace was changed to headlamp.
Changes:
- Revert -n headlamp → -n kube-system in all sealed-secrets-controller
kubectl commands across all docs files
- Revert sealed-secrets-controller.kube-system DNS reference
- Revert --controller-namespace=headlamp → --controller-namespace=kube-system
- Revert 'namespace headlamp' → 'namespace kube-system' in error messages
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
committed by
Gandalf the Greybeard [agent]
parent
143b2c36e0
commit
876fb062fe
@@ -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 headlamp \
|
||||
kubectl get secret -n kube-system \
|
||||
-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 headlamp \
|
||||
Or use the controller's certificate endpoint:
|
||||
|
||||
```bash
|
||||
curl http://sealed-secrets-controller.headlamp:8080/v1/cert.pem > sealed-secrets-cert.pem
|
||||
curl http://sealed-secrets-controller.kube-system: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 headlamp \
|
||||
# kubectl get secret -n kube-system \
|
||||
# -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