You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/concepts/workloads/pods/init-containers.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ field).
44
44
### Differences from regular containers
45
45
46
46
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
48
48
resource requests and limits for an init container are handled differently,
49
49
as documented in [Resources](#resources).
50
50
@@ -196,7 +196,7 @@ kubectl logs myapp-pod -c init-myservice # Inspect the first init container
196
196
kubectl logs myapp-pod -c init-mydb # Inspect the second init container
197
197
```
198
198
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 [Services](/docs/concepts/services-networking/service/) named
200
200
`mydb` and `myservice`.
201
201
202
202
Here's a configuration you can use to make those Services appear:
@@ -322,7 +322,7 @@ reasons:
322
322
have to be done by someone with root access to nodes.
323
323
* All containers in a Pod are terminated while `restartPolicy` is set to Always,
324
324
forcing a restart, and the init container completion record has been lost due
325
-
to garbage collection.
325
+
to [garbage collection](/docs/concepts/architecture/garbage-collection/).
326
326
327
327
The Pod will not be restarted when the init container image is changed, or the
328
328
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.
333
333
334
334
* 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)
335
335
* 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
+
* Let's know about [types of probes](/docs/concepts/workloads/pods/pod-lifecycle/#types-of-probe): liveness, readiness, startup probe
0 commit comments