Compare commits
3 Commits
master
...
35a5052e2b
Author | SHA1 | Date | |
---|---|---|---|
35a5052e2b | |||
390b0c6257 | |||
3b5b1f258d |
19
README.md
19
README.md
@ -60,7 +60,7 @@ The PVC Bootstrap system is designed to heavily leverage Redfish in its automati
|
||||
|
||||
1. Connect power to the servers, but do not manually power on the servers - Redfish will handle this aspect after characterizing each host, as well as manage boot, RAID array creation (as documented in `bootstrap.yml`), BIOS configuration, etc.
|
||||
|
||||
1. Wait for the cluster bootstrapping to complete; you can watch the output of the `pvcbootstrapd` and `pvcbootstrapd-worker` services on the Bootstrap host to see progress. If supported, the indicator LEDs of the nodes will be lit during setup and will be disabled upon completion to provide a physical indication of the process.
|
||||
1. Wait for the cluster bootstrapping to complete; you can watch the output of the `pvcbootstrapd` and `pvcbootstrapd-worker` services on the Bootstrap host to see progress, or configure the system to send webhooks to a remote target (e.g. Slack/Mattermost messages). If supported, the indicator LEDs of the nodes will be lit during setup and will be disabled upon completion to provide a physical indication of the process.
|
||||
|
||||
1. Verify and power off the servers and put them into production; you may need to complete several post-install tasks (for instance setting the production BMC networking via `sudo ifup ipmi` on each node) before the cluster is completely finished.
|
||||
|
||||
@ -84,7 +84,7 @@ The PVC Bootstrap system can still handle nodes without Redfish support, for ins
|
||||
|
||||
1. Power on the servers and set them to boot temporarily (one time) from PXE.
|
||||
|
||||
1. Wait for the cluster bootstrapping to complete; you can watch the output of the `pvcbootstrapd` and `pvcbootstrapd-worker` services on the Bootstrap host to see progress. If supported, the indicator LEDs of the nodes will be lit during setup and will be disabled upon completion to provide a physical indication of the process.
|
||||
1. Wait for the cluster bootstrapping to complete; you can watch the output of the `pvcbootstrapd` and `pvcbootstrapd-worker` services on the Bootstrap host to see progress, or configure the system to send webhooks to a remote target (e.g. Slack/Mattermost messages). If supported, the indicator LEDs of the nodes will be lit during setup and will be disabled upon completion to provide a physical indication of the process.
|
||||
|
||||
1. Verify and power off the servers and put them into production; you may need to complete several post-install tasks (for instance setting the production BMC networking via `sudo ifup ipmi` on each node) before the cluster is completely finished.
|
||||
|
||||
@ -150,13 +150,22 @@ filesystem="ext4"
|
||||
# The hostname of the system (set per-run)
|
||||
target_hostname="hv1.example.tld"
|
||||
|
||||
# The target system disk path
|
||||
# The target system disk path; must be a single disk (mdadm/software RAID is not supported)
|
||||
# This will usually use a `detect` string. A "detect" string is a string in the form "detect:<NAME>:<HUMAN-SIZE>:<ID>".
|
||||
# Detect strings allow for automatic determination of Linux block device paths from known basic information
|
||||
# about disks by leveraging "lsscsi" on the target host. The "NAME" should be some descriptive identifier,
|
||||
# for instance the manufacturer (e.g. "INTEL"), the "HUMAN-SIZE" should be the labeled human-readable size
|
||||
# of the device (e.g. "480GB", "1.92TB"), and "ID" specifies the Nth 0-indexed device which matches the
|
||||
# NAME" and "HUMAN-SIZE" values (e.g. "2" would match the third device with the corresponding "NAME" and
|
||||
# "HUMAN-SIZE"). When matching against sizes, there is +/- 3% flexibility to account for base-1000 vs.
|
||||
# base-1024 differences and rounding errors. The "NAME" may contain whitespace but if so the entire detect
|
||||
# string should be quoted, and is case-insensitive.
|
||||
target_disk="detect:LOGICAL:146GB:0"
|
||||
|
||||
# SSH key method (usually tftp)
|
||||
# SSH key fetch method (usually tftp)
|
||||
target_keys_method="tftp"
|
||||
|
||||
# SSH key path (usually keys.txt)
|
||||
# SSH key fetch path (usually keys.txt)
|
||||
target_keys_path="keys.txt"
|
||||
|
||||
# Deploy username (usually deploy)
|
||||
|
Reference in New Issue
Block a user