Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Making node-pools command more general & match to clusters command #5816

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/admins/cluster-config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ A ``gcloud container clusters create`` command can succintly express the
configuration of our kubernetes cluster. The following command represents
the currently favored configuration.

This creates the GKE cluster. It may host one or more node pools:

.. code:: bash

gcloud container clusters create \
Expand All @@ -42,6 +44,8 @@ the currently favored configuration.
--tags=hub-cluster \
<cluster-name>

Here's how we add a node pool to the cluster, beyond the default pool:

.. code:: bash

gcloud container node-pools create \
Expand All @@ -56,7 +60,7 @@ the currently favored configuration.
--disk-size=200 --disk-type=pd-balanced \
--no-enable-autoupgrade \
--tags=hub-cluster \
--cluster=spring-2024 \
--cluster=<cluster-name> \
user-<pool-name>-<yyyy>-<mm>-<dd>


Expand Down
Loading