Skip to content

Commit a80bfa9

Browse files
committed
update based on feedback
1 parent b647aa1 commit a80bfa9

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

articles/aks/windows-faq.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Yes. For the implications of making a change and the options that are available,
6969

7070
## What is the default TCP timeout in Windows OS?
7171

72-
The default TCP timeout in Windows OS is 4 minutes. AKS does not change or update this value. When a user's application uses a longer timeout, the TCP connections between different containers in the same node will be closed after 4 minutes.
72+
The default TCP timeout in Windows OS is 4 minutes. This value is not configurable. When a user's application uses a longer timeout, the TCP connections between different containers in the same node will be closed after 4 minutes.
7373

7474
## Why am I seeing an error when I try to create a new Windows agent pool?
7575

@@ -88,7 +88,16 @@ To fix this error:
8888

8989
If you have specified a value in `--max-pods` that is less than the number of pods you want to create, you may see the error "No available addresses".
9090

91-
To fix this error:
91+
To fix this error, use the `az aks nodepool add` command with a high enough `--max-pods` value:
92+
93+
```azurecli
94+
az aks nodepool add \
95+
--cluster-name $CLUSTER_NAME \
96+
--resource-group $RESOURCE_GROUP \
97+
--name $NODEPOOL_NAME \
98+
--max-pods 3
99+
```
100+
See [documentation](https://learn.microsoft.com/cli/azure/aks/nodepool?view=azure-cli-latest#az-aks-nodepool-add:~:text=for%20system%20nodepool.-,%2D%2Dmax%2Dpods%20%2Dm,-The%20maximum%20number) on `--max-pods` for more details.
92101

93102
## Why is there an unexpected user named "sshd" on my VM node?
94103

0 commit comments

Comments
 (0)