Skip to content

Commit

Permalink
feat(kubernetes): configure max pods per node (#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh authored May 3, 2023
1 parent 20d0c4e commit 9ad34bc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/markdown-pages/install-with-kurl/advanced-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,4 +284,14 @@ The install scripts are idempotent. Re-run the scripts with different flags to c
<code>curl https://kurl.sh/latest | sudo bash -s kubernetes-upgrade-ignore-preflight-errors=CoreDNSUnsupportedPlugins</code>
</td>
</tr>
<tr>
<td><code>kubernetes-max-pods-per-node</code></td>
<td>The maximum number of Pods that can run on each node (default 110).
<br/>
<br/>
<strong>Example:</strong>
<br/>
<code>curl https://kurl.sh/latest | sudo bash -s kubernetes-max-pods-per-node=200</code>
</td>
</tr>
</table>
5 changes: 5 additions & 0 deletions static/versionDetails.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@
"flag": "upgradeIgnorePreflightErrors",
"description": "Bypass kubeadm upgrade preflight errors and warnings as described in <a target=\"blank\" href=\"https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-upgrade/#cmd-upgrade-plan\">kubeadm upgrade</a> section of the Kubernetes documentation.",
"type": "string"
},
{
"flag": "maxPodsPerNode",
"description": "The maximum number of Pods that can run on each node (default 110).",
"type": "string"
}
],
"flannel": [
Expand Down

1 comment on commit 9ad34bc

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.