From 86b838f84ed252127fa673c583d7338167b85563 Mon Sep 17 00:00:00 2001 From: Matt Spencer <99685508+mtspn@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:46:22 -0800 Subject: [PATCH] Update 09_persistent_configurations.md --- 101-lab/content/09_persistent_configurations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/101-lab/content/09_persistent_configurations.md b/101-lab/content/09_persistent_configurations.md index 2c58abc..603cbeb 100644 --- a/101-lab/content/09_persistent_configurations.md +++ b/101-lab/content/09_persistent_configurations.md @@ -152,7 +152,7 @@ type: Opaque echo "SSdtIFVMVFJBIFNFQ1JFVA==" | base64 -d ``` -- To edit an existing secret, from the webconsole you can navigate to the secret and select the `YAML` tab or `oc edit secret rocketchat-[username]-secret` from the cli. Secrets are base64 encoded. If adding new values or editing existing values of a Secret it is often easier to +- To edit an existing secret, from the webconsole you can navigate to the secret and select the `YAML` tab or `oc -n [-dev] edit secret rocketchat-[username]-secret` from the cli. Secrets are base64 encoded. If adding new values or editing existing values of a Secret it is often easier to edit in plain text and have it b64 encoded for you. To do this you will need to modify the `data` field and change it to `stringData` prior to adding or editing values.