From 58fc76db5b976b322e93f1970314a2dc9ce79b51 Mon Sep 17 00:00:00 2001 From: openDesk Bot Date: Wed, 13 Nov 2024 11:54:41 +0000 Subject: [PATCH] docs: Fix erroneous kubectl commands for fetching of secrets --- docs/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 9cb05ff6..2b6ae354 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -419,12 +419,12 @@ openDesk deploys with the standard user account `Administrator`, which password NAMESPACE=your-namespace # Get password for IAM "Administrator" account -kubectl -n ${NAMESPACE} secret ums-nubus-credentials -o jsonpath='{.data.administrator_password}' | base64 -d +kubectl -n ${NAMESPACE} get secret ums-nubus-credentials -o jsonpath='{.data.administrator_password}' | base64 -d ``` In openDesk Community Edition, you get two more default accounts: -- `default.admin`: `kubectl -n ${NAMESPACE} secret ums-nubus-credentials -o jsonpath='{.data.admin_password}' | base64 -d` -- `default.user`: `kubectl -n ${NAMESPACE} secret ums-nubus-credentials -o jsonpath='{.data.user_password}' | base64 -d` +- `default.admin`: `kubectl -n ${NAMESPACE} get secret ums-nubus-credentials -o jsonpath='{.data.admin_password}' | base64 -d` +- `default.user`: `kubectl -n ${NAMESPACE} get secret ums-nubus-credentials -o jsonpath='{.data.user_password}' | base64 -d` ## Using from external repository