Skip to content

Commit 3b7a561

Browse files
authored
Fix nits in user-guide-windows-containers (#28379)
* Fix nits in user-guide-windows-containers * Replace 'master' with 'control plane'
1 parent f470819 commit 3b7a561

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/en/docs/setup/production-environment/windows/user-guide-windows-containers.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This guide walks you through the steps to configure and deploy a Windows contain
2626
## Before you begin
2727

2828
* Create a Kubernetes cluster that includes a
29-
[master and a worker node running Windows Server](/docs/tasks/administer-cluster/kubeadm/adding-windows-nodes)
29+
control plane and a [worker node running Windows Server](/docs/tasks/administer-cluster/kubeadm/adding-windows-nodes/)
3030
* It is important to note that creating and deploying services and workloads on Kubernetes
3131
behaves in much the same way for Linux and Windows containers.
3232
[Kubectl commands](/docs/reference/kubectl/overview/) to interface with the cluster are identical.
@@ -105,15 +105,15 @@ the container port 80 is exposed directly to the service.
105105
1. Check that the deployment succeeded. To verify:
106106

107107
* Two containers per pod on the Windows node, use `docker ps`
108-
* Two pods listed from the Linux master, use `kubectl get pods`
109-
* Node-to-pod communication across the network, `curl` port 80 of your pod IPs from the Linux master
108+
* Two pods listed from the Linux control plane node, use `kubectl get pods`
109+
* Node-to-pod communication across the network, `curl` port 80 of your pod IPs from the Linux control plane node
110110
to check for a web server response
111111
* Pod-to-pod communication, ping between pods (and across hosts, if you have more than one Windows node)
112112
using docker exec or kubectl exec
113113
* Service-to-pod communication, `curl` the virtual service IP (seen under `kubectl get services`)
114-
from the Linux master and from individual pods
114+
from the Linux control plane node and from individual pods
115115
* Service discovery, `curl` the service name with the Kubernetes [default DNS suffix](/docs/concepts/services-networking/dns-pod-service/#services)
116-
* Inbound connectivity, `curl` the NodePort from the Linux master or machines outside of the cluster
116+
* Inbound connectivity, `curl` the NodePort from the Linux control plane node or machines outside of the cluster
117117
* Outbound connectivity, `curl` external IPs from inside the pod using kubectl exec
118118

119119
{{< note >}}
@@ -184,7 +184,7 @@ For example: `--register-with-taints='os=windows:NoSchedule'`
184184

185185
By adding a taint to all Windows nodes, nothing will be scheduled on them (that includes existing Linux Pods).
186186
In order for a Windows Pod to be scheduled on a Windows node,
187-
it would need both the nodeSelector to choose Windows, and the appropriate matching toleration.
187+
it would need both the nodeSelector and the appropriate matching toleration to choose Windows.
188188

189189
```yaml
190190
nodeSelector:

0 commit comments

Comments
 (0)