Skip to content

Commit c4f9c35

Browse files
committed
Partial fix for debugging service page
We are kinda abusing the `{{ note }}` shortcode, which is not meant for lengthy, verbose contents. We should not try include code snippets inside a note.
1 parent 12f1ff2 commit c4f9c35

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

content/en/docs/tasks/debug-application-cluster/debug-service.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ kubectl scale deployment hostnames --replicas=3
6161
deployment.apps/hostnames scaled
6262
```
6363

64-
{{< note >}}
65-
This is the same as if you had started the Deployment with the following
64+
Note that this is the same as if you had started the Deployment with the following
6665
YAML:
6766

6867
```yaml
@@ -89,7 +88,6 @@ spec:
8988
9089
The label "app" is automatically set by `kubectl create deployment` to the name of the
9190
Deployment.
92-
{{< /note >}}
9391

9492
You can confirm your Pods are running:
9593

@@ -195,7 +193,6 @@ hostnames ClusterIP 10.0.1.175 <none> 80/TCP 5s
195193

196194
Now you know that the Service exists.
197195

198-
{{< note >}}
199196
As before, this is the same as if you had started the Service with YAML:
200197

201198
```yaml
@@ -218,7 +215,6 @@ spec:
218215
In order to highlight the full range of configuration, the Service you created
219216
here uses a different port number than the Pods. For many real-world
220217
Services, these values might be the same.
221-
{{< /note >}}
222218

223219
## Does the Service work by DNS name?
224220

0 commit comments

Comments
 (0)