File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
content/en/docs/concepts/workloads/pods Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -296,22 +296,22 @@ Your {{< glossary_tooltip text="container runtime" term_id="container-runtime" >
296
296
Any container in a pod can run in privileged mode to use operating system administrative capabilities
297
297
that would otherwise be inaccessible. This is available for both Windows and Linux.
298
298
299
- ### Linux containers
299
+ ### Linux priviledged containers
300
300
301
301
In Linux, any container in a Pod can enable privileged mode using the ` privileged ` (Linux) flag
302
302
on the [ security context] ( /docs/tasks/configure-pod-container/security-context/ ) of the
303
303
container spec. This is useful for containers that want to use operating system administrative
304
304
capabilities such as manipulating the network stack or accessing hardware devices.
305
305
306
- ### Windows containers
306
+ ### Windows priviledged containers
307
307
308
308
{{< feature-state for_k8s_version="v1.26" state="stable" >}}
309
309
310
310
In Windows, you can create a [ Windows HostProcess pod] ( /docs/tasks/configure-pod-container/create-hostprocess-pod )
311
311
by setting the ` windowsOptions.hostProcess ` flag on the security context of the pod spec. All containers in these
312
312
pods must run as Windows HostProcess containers. HostProcess pods run directly on the host and can also be used
313
313
to perform administrative tasks as is done with Linux privileged containers. In order to use this feature, the
314
- ` WindowsHostProcessContainers ` [ feature gate] ( /docs/reference/command-line-tools-reference/feature-gates/ ) must be enabled.
314
+ ` WindowsHostProcessContainers ` [ feature gate] ( /docs/reference/command-line-tools-reference/feature-gates/ ) must be enabled.
315
315
316
316
317
317
## Static Pods
You can’t perform that action at this time.
0 commit comments