blob: 74a5fcdd5dc7fc4fea4b05fb7384fc9f2afcc34c [file] [log] [blame]
Chris Austenb29d2e82016-06-07 12:25:35 -05001*** Settings ***
2Library Collections
3Library String
4Library RequestsLibrary.RequestsKeywords
5Library OperatingSystem
6Variables ../data/variables.py
7
8*** Variables ***
George Keishing136bcc62016-11-23 08:34:16 -06009${OPENBMC_HOST} ${EMPTY}
Chris Austenb29d2e82016-06-07 12:25:35 -050010${DBUS_PREFIX} ${EMPTY}
11${PORT} ${EMPTY}
George Keishingfbeaecc2016-08-16 05:24:31 -050012# AUTH_SUFFIX here is derived from variables.py
13${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
Chris Austenb29d2e82016-06-07 12:25:35 -050014${OPENBMC_USERNAME} root
15${OPENBMC_PASSWORD} 0penBmc
Rahul Maheshwariea7d2de2017-03-16 06:50:09 -050016${IPMI_PASSWORD} 0penBmc
Chris Austenb29d2e82016-06-07 12:25:35 -050017${MACHINE_TYPE} palmetto
18${DBUS_POLL_INTERVAL} 15s
19${OPENBMC_REBOOT_TIMEOUT} ${10}
Rahul Maheshwarica2d6872017-03-17 01:48:24 -050020# IPMI_COMMAND here is set to "External" by default. User
21# can override to "Dbus" from command line.
22${IPMI_COMMAND} External
Chris Austenb29d2e82016-06-07 12:25:35 -050023
24# PDU related parameters
25${PDU_TYPE} ${EMPTY}
26${PDU_IP} ${EMPTY}
27${PDU_USERNAME} ${EMPTY}
28${PDU_PASSWORD} ${EMPTY}
29${PDU_SLOT_NO} ${EMPTY}
30
George Keishing4d6c1da2016-07-15 05:51:22 -050031# User define input SSH and HTTPS related parameters
32${SSH_PORT} ${EMPTY}
33${HTTPS_PORT} ${EMPTY}
George Keishingbeec26d2016-11-09 06:57:28 -060034${OPENBMC_SERIAL_HOST} ${EMPTY}
35${OPENBMC_SERIAL_PORT} ${EMPTY}
George Keishing4d6c1da2016-07-15 05:51:22 -050036
Michael Walsh49ab0f42016-07-20 11:44:33 -050037# OS related parameters.
38${OS_HOST} ${EMPTY}
39${OS_USERNAME} ${EMPTY}
40${OS_PASSWORD} ${EMPTY}
41${OS_WAIT_TIMEOUT} ${15*60}
42
Prashanth Katti01293ef2017-02-16 08:20:20 -060043# Networking related parameters
44${NETWORK_PORT} 80
45${PACKET_TYPE} tcp
46
George Keishinga126e212017-03-24 08:07:17 -050047# BMC debug tarball parameter
48${DEBUG_TARBALL_PATH} ${EMPTY}
49
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050050# Upload Image parameters
Charles Paul Hofer6b972682017-07-20 11:36:56 -050051${TFTP_SERVER} ${EMPTY}
52${PNOR_TFTP_FILE_NAME} ${EMPTY}
53${BMC_TFTP_FILE_NAME} ${EMPTY}
54${IMAGE_FILE_PATH} ${EMPTY}
55${PNOR_IMAGE_FILE_PATH} ${EMPTY}
56${BMC_IMAGE_FILE_PATH} ${EMPTY}
57${BAD_IMAGES_DIR_PATH} ${EMPTY}
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050058
Charles Paul Hofer2c731642017-08-03 18:13:27 -050059# The caller must set this to the string "true" in order to delete images. The
60# code is picky.
61${DELETE_OLD_PNOR_IMAGES} false
62
George Keishing830211e2017-07-19 08:44:07 -050063# Caller can specify a value for LAST_KNOWN_GOOD_VERSION to indicate that if
64# the machine already has that version on it, the update should be skipped.
65${LAST_KNOWN_GOOD_VERSION} ${EMPTY}
66
Chris Austenb29d2e82016-06-07 12:25:35 -050067*** Keywords ***
68Get Inventory Schema
69 [Arguments] ${machine}
70 [Return] &{INVENTORY}[${machine}]
71
72Get Inventory Items Schema
73 [Arguments] ${machine}
74 [Return] &{INVENTORY_ITEMS}[${machine}]
75
76Get Sensor Schema
77 [Arguments] ${machine}
78 [Return] &{SENSORS}[${machine}]