Fabric Configuration
Overview
The fab.yaml
file is the configuration file for the fabric. It supplies
the configuration of the users, their credentials, logging, telemetry, and
other non wiring related settings. The fab.yaml
file is composed of multiple
YAML documents inside of a single file. Per the YAML spec 3 hyphens (---
) on
a single line separate the end of one object from the beginning of the next.
There are two YAML objects in the fab.yaml
file. For more information about
how to use hhfab init
, run hhfab init --help
.
HHFAB workflow
After hhfab
has been downloaded:
hhfab init
(see different flags to customize initial configuration)- Adjust the
fab.yaml
file to your needs - Build your wiring diagram
hhfab validate
- (optionally)
hhfab diagram
hhfab build
Or import existing fab.yaml
and wiring files:
hhfab init -c fab.yaml -w wiring-file.yaml -w extra-wiring-file.yaml
hhfab validate
- Build your wiring diagram
- (optionally)
hhfab diagram
hhfab build
After the above workflow a user will have a .img file suitable for installing the control node, then bringing up the switches which comprise the fabric.
Complete Example File
Configure Control Node and Switch Users
Control Node Users
Configuring control node and switch users is done either passing
--default-password-hash
to hhfab init
or editing the resulting fab.yaml
file emitted by hhfab init
. The default username on the control node is
core
.
Switch Users
There are two users on the switches, admin
and operator
. The operator
user has
read-only access to sonic-cli
command on the switches. The admin
user has
broad administrative power on the switch.
In order to avoid conflicts, do not use the following usernames: operator
,hhagent
,netops
.
NTP and DHCP
The control node uses public NTP servers from Cloudflare and Google by default. The control node runs a DHCP server on the management network. See the example file.
Control Node
The control node is the host that manages all the switches, runs k3s, and serves images. The management interface is for the control node to manage the fabric switches, not end-user management of the control node. For end-user management of the control node specify the external interface name.
Telemetry
There is an option to enable Grafana Alloy on all switches to forward metrics and logs to the configured targets using Prometheus Remote-Write API and Loki API. Metrics includes port speeds, counters, errors, operational status, transceivers, fans, power supplies, temperature sensors, BGP neighbors, LLDP neighbors, and more. Logs include Hedgehog agent logs.
Telemetry can be enabled after installation of the fabric. Open the following YAML file in an editor on the control node. Modify the fields as needed. Logs can be pushed to a Grafana instance at the customer environment, or to Grafana cloud.
To enable the telemetry after install use:
For additional options, see the AlloyConfig
struct in Fabric repo.