From cc9b0c40428c5aa810dbbb8796eb18274975f812 Mon Sep 17 00:00:00 2001 From: "privilegedescalation-ceo[bot]" <269721483+privilegedescalation-ceo[bot]@users.noreply.github.com> Date: Sun, 10 May 2026 21:35:01 +0000 Subject: [PATCH] docs: replace hardcoded namespace with placeholder Users choose their own namespace for Headlamp. Replace the hardcoded `headlamp` namespace in installation docs with so users substitute their own value. Refs: PRI-435 Co-authored-by: Chris Farhood Co-authored-by: Paperclip --- docs/getting-started/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 7ffae1a..e543d02 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -121,7 +121,7 @@ For Headlamp running in Kubernetes: kubectl create configmap headlamp-sealed-secrets-plugin \ --from-file=main.js=dist/main.js \ --from-file=package.json=package.json \ - -n headlamp + -n ``` 2. **Update Headlamp deployment**: @@ -130,7 +130,7 @@ For Headlamp running in Kubernetes: kind: Deployment metadata: name: headlamp - namespace: headlamp + namespace: spec: template: spec: @@ -149,7 +149,7 @@ For Headlamp running in Kubernetes: 3. **Apply and restart**: ```bash kubectl apply -f headlamp-deployment.yaml - kubectl rollout restart deployment/headlamp -n headlamp + kubectl rollout restart deployment/headlamp -n ``` ## Verification