Documentation has incorrect json data in kubectl command (dsR10, r10)

closes-bug: 2094838

Change-Id: I0a143382b0ec0e8f17b0bd5b64c2428c21a7a524
Signed-off-by: Suzana Fernandes <Suzana.Fernandes@windriver.com>
This commit is contained in:
Suzana Fernandes 2025-01-14 17:20:09 +00:00
parent 5699adcbc8
commit 7eb070c1aa
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ In this example, |OIDC|/|LDAP| authentication is setup for local |LDAP|.
.. code-block::
$ kubectl get secret system-local-ca -n cert-manager -o=jsonpath='{.\ `data.ca <http://data.ca>`__\\.crt}' | base64 --decode > /home/sysadmin/oidc/local-ldap-ca-cert.crt
$ kubectl get secret system-local-ca -n cert-manager -o=jsonpath='{.data.ca\.crt}' | base64 --decode > /home/sysadmin/oidc/local-ldap-ca-cert.crt
$ kubectl create secret generic local-ldap-ca-cert --from-file=/home/sysadmin/oidc/local-ldap-ca-cert.crt -n kube-system

View File

@ -40,7 +40,7 @@ This procedure should be performed on your Linux-based system.
$ sudo apt-get update
# Install Docker Packages
$ sudo apt-get install docker-ce docker-ce-cli `containerd.io <http://containerd.io>`__ docker-buildx-plugin docker-compose-plugin
$ sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# Verify that the Docker Engine installation is successful by running the hello-world image.
$ sudo docker run hello-world