Skip to content

Commit 2b1743c

Browse files
committed
Minor updates to 2022-12-13-host-process-containers-ga blog
Signed-off-by: Mark Rossetti <[email protected]>
1 parent fa72a2a commit 2b1743c

File tree

1 file changed

+5
-5
lines changed
  • content/en/blog/_posts/2022-12-13-host-process-containers-ga

1 file changed

+5
-5
lines changed

content/en/blog/_posts/2022-12-13-host-process-containers-ga/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: blog
3-
title: "Kubernetes 1.26: Windows HostProcess Containers Are Going Generally Available"
3+
title: "Kubernetes 1.26: Windows HostProcess Containers Are Generally Available"
44
date: 2022-12-13
55
slug: windows-host-process-containers-ga
66
---
@@ -12,12 +12,12 @@ containers, has finally made it to **GA in Kubernetes 1.26**!
1212

1313
What are HostProcess containers and why are they useful?
1414

15-
Cluster operators are often faced with the need to configure their nodes upon provisioning. Whether it's
15+
Cluster operators are often faced with the need to configure their nodes upon provisioning such as
1616
installing Windows services, configuring registry keys, managing TLS certificates,
1717
making network configuration changes, or even deploying monitoring tools such as a Prometheus's node-exporter.
1818
Previously, performing these actions on Windows nodes was usually done by running PowerShell scripts
1919
over SSH or WinRM sessions and/or working with your cloud provider's virtual machine management tooling.
20-
HostProcess containers now enable you to do all of this and more with minimal effort.
20+
HostProcess containers now enable you to do all of this and more with minimal effort using Kubernetes native APIs.
2121

2222
With HostProcess containers you can now package any payload
2323
into the container image, map volumes into containers at runtime, and manage them like any other Kubernetes workload.
@@ -28,7 +28,7 @@ Windows nodes to perform administrative duties.
2828

2929
[HostProcess containers](/docs/tasks/configure-pod-container/create-hostprocess-pod/) differ
3030
quite significantly from regular Windows Server containers.
31-
They are run directly as processes on the host under the access policies of
31+
They are run directly as processes on the host with the access policies of
3232
a user you specify. HostProcess containers run as either the built-in Windows system accounts or
3333
ephemeral users within a user group defined by you. HostProcess containers also share
3434
the host's network namespace and access/configure storage mounts visible to the host.
@@ -99,7 +99,7 @@ You can run HostProcess containers from within a
9999
To get started with running Windows containers,
100100
see the general guidance for [deploying Windows nodes](/docs/setup/production-environment/windows/).
101101
If you have a compatible node (for example: Windows as the operating system
102-
containerd v1.7 or later), you can deploy a Pod with one
102+
with containerd v1.7 or later as the container runtime), you can deploy a Pod with one
103103
or more HostProcess containers.
104104
See the [Create a Windows HostProcess Pod - Prerequisites](/docs/tasks/configure-pod-container/create-hostprocess-pod/#before-you-begin)
105105
for more information.

0 commit comments

Comments
 (0)