From c78633e97e32b5f8e8bee7eea0c130e1d0032f7e Mon Sep 17 00:00:00 2001 From: JuleeB1 <42522858+JuleeB1@users.noreply.github.com> Date: Mon, 20 Aug 2018 15:13:54 -0500 Subject: [PATCH] Applied Note Formatting (#9930) * Applied Note Formatting Added the note style tags. * Add line breaks --- .../debug-application-cluster/debug-service.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/content/en/docs/tasks/debug-application-cluster/debug-service.md b/content/en/docs/tasks/debug-application-cluster/debug-service.md index 42f52513c6..4b868bbd9a 100644 --- a/content/en/docs/tasks/debug-application-cluster/debug-service.md +++ b/content/en/docs/tasks/debug-application-cluster/debug-service.md @@ -79,8 +79,8 @@ deployment.apps/hostnames created ``` `kubectl` commands will print the type and name of the resource created or mutated, which can then be used in subsequent commands. -Note that this is the same as if you had started the `Deployment` with -the following YAML: +{{< note >}} +**Note:** This is the same as if you started the `Deployment` with the following YAML: ```yaml apiVersion: apps/v1 @@ -104,6 +104,7 @@ spec: - containerPort: 9376 protocol: TCP ``` +{{< /note >}} Confirm your `Pods` are running: @@ -213,8 +214,8 @@ Note the suffix here: "default.svc.cluster.local". The "default" is the The "cluster.local" is your cluster domain, which COULD be different in your own cluster. -You can also try this from a `Node` in the cluster (note: 10.0.0.10 is my DNS -`Service`, yours might be different): +You can also try this from a `Node` in the cluster: +{{< note >}}**Note:** 10.0.0.10 is my DNS `Service`, yours might be different){{< /note >}} ```shell u@node$ nslookup hostnames.default.svc.cluster.local 10.0.0.10 @@ -383,8 +384,8 @@ as the `Service` selecting for `run=hostnames`, but the `Deployment` specifying At this point, we know that your `Service` exists and has selected your `Pods`. Let's check that the `Pods` are actually working - we can bypass the `Service` -mechanism and go straight to the `Pods`. Note that these commands use the `Pod` -port (9376), rather than the `Service` port (80). +mechanism and go straight to the `Pods`. +{{< note >}}**Note:** These commands use the `Pod` port (9376), rather than the `Service` port (80).{{< /note >}} ```shell u@pod$ wget -qO- 10.244.0.5:9376