Lines Matching full:bmc

2 Documentation   Module for testing BMC via XCAT.
21 Add BMC Nodes To XCAT
22 [Documentation] Connect and add BMC nodes.
25 # Add BMC nodes one by one and check whether it is successfully added.
26 FOR ${bmc} IN @{BMC_LIST}
27 Add Nodes To XCAT ${bmc}
28 Validate Added Node ${bmc}
36 # Power on each BMC node and validate the power status.
37 FOR ${bmc} IN @{BMC_LIST}
38 Power On Via XCAT ${bmc}
39 Validate Power Status Via XCAT ${bmc} ${poweron_flag}
47 # Power off each BMC node and validate the power status.
48 FOR ${bmc} IN @{BMC_LIST}
49 Power Off Via XCAT ${bmc}
50 Validate Power Status Via XCAT ${bmc} ${poweroff_flag}
55 [Documentation] Add BMC nodes into group.
58 # Add BMC nodes to group and validate.
59 FOR ${bmc} IN @{BMC_LIST}
60 Add Nodes To Group ${bmc} ${GROUP}
61 Validate Node Added In Group ${bmc} ${GROUP}
78 # List the BMC nodes.
82 # Validate power status on each BMC node one by one.
101 # List the BMC nodes.
104 # Validate power status on each BMC node one by one.
112 # This keyword verifies the REST connectivity between XCAT and the BMC node.
115 # Performing this operation only on one BMC node.
121 # It basically stress the BMC node and test REST implementation
122 # of the BMC node
144 # Get temperature reading from each BMC node.
146 FOR ${bmc} IN @{BMC_LIST}
147 ${temp_reading}= Get Hardware Vitals Via XCAT ${bmc} temp
148 Should Match ${temp_reading} ${bmc}* C
149 Log \n Temperature reading on $[bmc}\n ${temp_reading}
163 # Get fanspeed from each BMC node.
165 FOR ${bmc} IN @{BMC_LIST}
166 ${fanspeed}= Get Hardware Vitals Via XCAT ${bmc} fanspeed
167 Should Match ${fanspeed} ${bmc}* RPMS
168 Log \n fanspeed on $[bmc}\n ${fanspeed}
177 # node1: No attributes returned from the BMC.
178 # BMC node is not returning anything, this will fail at present.
180 # Get voltage reading from each BMC node.
182 FOR ${bmc} IN @{BMC_LIST}
183 ${voltage}= Get Hardware Vitals Via XCAT ${bmc} voltage
184 Log \n Voltage reading on $[bmc}\n ${voltage}
193 # node1: No attributes returned from the BMC.
194 # BMC node is not returning anything, this will fail at present.
196 # Get wattage reading from each BMC node.
198 FOR ${bmc} IN @{BMC_LIST}
199 ${wattage}= Get Hardware Vitals Via XCAT ${bmc} wattage
200 Log \n Wattage reading on $[bmc}\n ${wattage}
216 # Get all the BMC nodes from the config file.
217 ${nodes}= Get List Of BMC Nodes
218 # Make a list of BMC nodes.
220 Log To Console BMC nodes to be added:\n ${BMC_LIST}