Skip to content

Commit a631f1b

Browse files
authored
Merge pull request #41514 from T-Lakshmi/init-containers
updated init-containers page
2 parents bbd5ea3 + a3fc330 commit a631f1b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ field).
4444
### Differences from regular containers
4545

4646
Init containers support all the fields and features of app containers,
47-
including resource limits, volumes, and security settings. However, the
47+
including resource limits, [volumes](/docs/concepts/storage/volumes/), and security settings. However, the
4848
resource requests and limits for an init container are handled differently,
4949
as documented in [Resources](#resources).
5050

@@ -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 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.
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
@@ -333,4 +333,5 @@ Kubernetes, consult the documentation for the version you are using.
333333

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/)
336-
336+
* Read about an overview of [kubelet](/docs/reference/command-line-tools-reference/kubelet/) and [kubectl](/docs/reference/kubectl/)
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)