1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00

Merge pull request #86275 from openshift-cherrypick-robot/cherry-pick-86235-to-enterprise-4.18

[enterprise-4.18] [OCPBUGS-45747]: Fixing command in HCP docs
This commit is contained in:
Laura Hinson
2024-12-13 10:19:04 -05:00
committed by GitHub

View File

@@ -19,13 +19,13 @@ $ hcp create nodepool agent \
--cluster-name <hosted_cluster_name> \// <1>
--name <nodepool_name> \// <2>
--node-count <worker_node_count> \// <3>
--agentLabelSelector '{"matchLabels": {"size": "medium"}}' <4>
--agentLabelSelector size=medium <4>
----
+
<1> Replace `<hosted_cluster_name>` with your hosted cluster name.
<2> Replace `<nodepool_name>` with the name of your node pool, for example, `<hosted_cluster_name>-extra-cpu`.
<3> Replace `<worker_node_count>` with the worker node count, for example, `2`.
<4> The `--agentLabelSelector` flag is optional. The node pool uses agents with the `"size" : "medium"` label.
<4> The `--agentLabelSelector` flag is optional. The node pool uses agents with the `size=medium` label.
. Check the status of the node pool by listing `nodepool` resources in the `clusters` namespace:
+