1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00

OLS-970, corrected spelling of language specifiers

This commit is contained in:
Sergey Yedrikov
2024-08-27 13:37:56 -04:00
committed by openshift-cherrypick-robot
parent 4ea54944c2
commit b9edbbeecc
7 changed files with 7 additions and 7 deletions

View File

@@ -124,7 +124,7 @@ spec:
<12> Defines the amount of CPU and memory set by scheduler for the Webhook pod.
+
.Example output
[source,termnal]
[source,terminal]
----
certmanager.operator.openshift.io/cluster patched
----

View File

@@ -20,7 +20,7 @@ $ oc get pods --all-namespaces
----
+
.Example output
[source,terinal]
[source,terminal]
----
NAMESPACE NAME READY STATUS RESTARTS AGE
kube-system apiserver-watcher-ci-ln-47ltxtb-f76d1-mrffg-master-0 1/1 Running 0 39m

View File

@@ -8,7 +8,7 @@ The `kn func info` command prints information about a deployed function, such as
* Describe a function:
+
[source,termnal]
[source,terminal]
----
$ kn func info [-f <format> -n <namespace> -p <path>]
----

View File

@@ -44,7 +44,7 @@ The S2I tooling comes with powerful generation tools to speed up the process of
creating a new S2I image. The `s2i create` command produces all the necessary S2I
scripts and testing tools along with the `Makefile`:
[source,termnal]
[source,terminal]
----
$ s2i create <image_name> <destination_directory>
----

View File

@@ -16,7 +16,7 @@ If the `provisioning` network is enabled and you want to expand the cluster usin
. Edit the `provisioning` custom resource (CR) to enable deploying with Virtual Media on the `baremetal` network:
+
[source,terminmal]
[source,terminal]
----
oc edit provisioning
----

View File

@@ -193,7 +193,7 @@ $ cat <path>/<file_name>.pub
+
For example, run the following to view the `~/.ssh/id_ed25519.pub` public key:
+
[source,termanal]
[source,terminal]
----
$ cat ~/.ssh/id_ed25519.pub
----

View File

@@ -30,7 +30,7 @@ When creating your plugin, follow these general guidelines:
* Maintain a consistent look, feel, and behavior with other console pages.
* Follow link:https://www.i18next.com/[react-i18next] localization guidelines when creating your plugin. You can use the `useTranslation` hook like the one in the following example:
+
[source,ymal]
[source,typescript]
----
conster Header: React.FC = () => {
const { t } = useTranslation('plugin__console-demo-plugin');