From 0dadc1eaf39ca13e30a2475b42e88a65579f86b8 Mon Sep 17 00:00:00 2001 From: JuleeB1 <42522858+JuleeB1@users.noreply.github.com> Date: Mon, 20 Aug 2018 15:44:48 -0500 Subject: [PATCH] Added Note Formatting (#9933) Added the Note tag to the text --- .../docs/tasks/debug-application-cluster/debug-application.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/en/docs/tasks/debug-application-cluster/debug-application.md b/content/en/docs/tasks/debug-application-cluster/debug-application.md index 969be001bd..0d9dd609b5 100644 --- a/content/en/docs/tasks/debug-application-cluster/debug-application.md +++ b/content/en/docs/tasks/debug-application-cluster/debug-application.md @@ -84,7 +84,9 @@ Alternately, you can run commands inside that container with `exec`: $ kubectl exec ${POD_NAME} -c ${CONTAINER_NAME} -- ${CMD} ${ARG1} ${ARG2} ... ${ARGN} ``` -Note that `-c ${CONTAINER_NAME}` is optional and can be omitted for Pods that only contain a single container. +{{< note >}} +**Note:** `-c ${CONTAINER_NAME}` is optional. You can omit it for Pods that only contain a single container. +{{< /note >}} As an example, to look at the logs from a running Cassandra pod, you might run