Have the add node syntax use long flags and more consistent with all quickstarts

Signed-off-by: Troy Caro <troy.caro@pitt.edu>
This commit is contained in:
Troy Caro
2023-11-19 19:08:08 -05:00
parent 7ee74a2fc8
commit 9b5f0f2304
3 changed files with 4 additions and 4 deletions

View File

@@ -139,7 +139,7 @@ configuration, we can set them in the default profile as follows:
.. code-block:: bash
sudo wwctl profile set -y default --netname default --netmask 255.255.255.0 --gateway 192.168.200.1
sudo wwctl profile set -y default --netdev eth0 --netmask 255.255.255.0 --gateway 192.168.200.1
sudo wwctl profile list
Add a node
@@ -159,7 +159,7 @@ configurations.
.. code-block:: bash
sudo wwctl node add n0000.cluster --netname default -I 192.168.200.100 --discoverable
sudo wwctl node add n0000.cluster --ipaddr 192.168.200.100 --discoverable true
sudo wwctl node list -a n0000
Turn on your compute node and watch it boot!

View File

@@ -187,7 +187,7 @@ configurations.
.. code-block:: bash
sudo wwctl node add n0000.cluster --ipaddr 192.168.200.100 --discoverable
sudo wwctl node add n0000.cluster --ipaddr 192.168.200.100 --discoverable true
At this point you can view the basic configuration of this node by
typing the following:

View File

@@ -164,7 +164,7 @@ configurations.
.. code-block:: bash
sudo wwctl node add n0000.cluster --netdev eth0 -I 192.168.200.100 --discoverable
sudo wwctl node add n0000.cluster --netdev eth0 --ipaddr 192.168.200.100 --discoverable true
sudo wwctl node list -a n0000.cluster
Warewulf Overlays