Skip to content

Commit a3fc330

Browse files
committed
incorporated the review comments.
1 parent ff636ab commit a3fc330

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/concepts/workloads/pods/init-containers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ kubectl logs myapp-pod -c init-myservice # Inspect the first init container
196196
kubectl logs myapp-pod -c init-mydb # Inspect the second init container
197197
```
198198

199-
At this point, those init containers will be waiting to discover [Services](/docs/concepts/services-networking/service/) named
199+
At this point, those init containers will be waiting to discover {{< glossary_tooltip text="Services" term_id="service" >}} named
200200
`mydb` and `myservice`.
201201

202202
Here's a configuration you can use to make those Services appear:
@@ -322,7 +322,7 @@ reasons:
322322
have to be done by someone with root access to nodes.
323323
* All containers in a Pod are terminated while `restartPolicy` is set to Always,
324324
forcing a restart, and the init container completion record has been lost due
325-
to [garbage collection](/docs/concepts/architecture/garbage-collection/).
325+
to {{< glossary_tooltip text="garbage collection" term_id="garbage-collection" >}}.
326326

327327
The Pod will not be restarted when the init container image is changed, or the
328328
init container completion record has been lost due to garbage collection. This
@@ -334,4 +334,4 @@ Kubernetes, consult the documentation for the version you are using.
334334
* Read about [creating a Pod that has an init container](/docs/tasks/configure-pod-container/configure-pod-initialization/#create-a-pod-that-has-an-init-container)
335335
* Learn how to [debug init containers](/docs/tasks/debug/debug-application/debug-init-containers/)
336336
* Read about an overview of [kubelet](/docs/reference/command-line-tools-reference/kubelet/) and [kubectl](/docs/reference/kubectl/)
337-
* Let's know about [types of probes](/docs/concepts/workloads/pods/pod-lifecycle/#types-of-probe): liveness, readiness, startup probe
337+
* Learn about the [types of probes](/docs/concepts/workloads/pods/pod-lifecycle/#types-of-probe): liveness, readiness, startup probe.

0 commit comments

Comments
 (0)