blob: 48ab60e9b6a923421b9c84f96816b0385a0fa5dc [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 Keishing633b9ce2018-05-31 01:24:52 -05009
10${OPENBMC_MODEL} ${EMPTY}
George Keishing136bcc62016-11-23 08:34:16 -060011${OPENBMC_HOST} ${EMPTY}
Chris Austenb29d2e82016-06-07 12:25:35 -050012${DBUS_PREFIX} ${EMPTY}
13${PORT} ${EMPTY}
George Keishingfbeaecc2016-08-16 05:24:31 -050014# AUTH_SUFFIX here is derived from variables.py
15${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
Chris Austenb29d2e82016-06-07 12:25:35 -050016${OPENBMC_USERNAME} root
17${OPENBMC_PASSWORD} 0penBmc
Rahul Maheshwariea7d2de2017-03-16 06:50:09 -050018${IPMI_PASSWORD} 0penBmc
Chris Austenb29d2e82016-06-07 12:25:35 -050019${MACHINE_TYPE} palmetto
20${DBUS_POLL_INTERVAL} 15s
21${OPENBMC_REBOOT_TIMEOUT} ${10}
Rahul Maheshwarica2d6872017-03-17 01:48:24 -050022# IPMI_COMMAND here is set to "External" by default. User
23# can override to "Dbus" from command line.
24${IPMI_COMMAND} External
George Keishing39967eb2018-04-30 11:36:23 -050025# IPMI chipher default.
26${IPMI_CIPHER_LEVEL} ${3}
Chris Austenb29d2e82016-06-07 12:25:35 -050027
28# PDU related parameters
29${PDU_TYPE} ${EMPTY}
30${PDU_IP} ${EMPTY}
31${PDU_USERNAME} ${EMPTY}
32${PDU_PASSWORD} ${EMPTY}
33${PDU_SLOT_NO} ${EMPTY}
34
George Keishing4d6c1da2016-07-15 05:51:22 -050035# User define input SSH and HTTPS related parameters
36${SSH_PORT} ${EMPTY}
37${HTTPS_PORT} ${EMPTY}
George Keishingbeec26d2016-11-09 06:57:28 -060038${OPENBMC_SERIAL_HOST} ${EMPTY}
39${OPENBMC_SERIAL_PORT} ${EMPTY}
George Keishing4d6c1da2016-07-15 05:51:22 -050040
Michael Walsh49ab0f42016-07-20 11:44:33 -050041# OS related parameters.
42${OS_HOST} ${EMPTY}
43${OS_USERNAME} ${EMPTY}
44${OS_PASSWORD} ${EMPTY}
45${OS_WAIT_TIMEOUT} ${15*60}
46
Prashanth Katti01293ef2017-02-16 08:20:20 -060047# Networking related parameters
Prashanth Katti3690dc02017-11-22 07:21:24 -060048${NETWORK_PORT} 80
49${PACKET_TYPE} tcp
50${NETWORK_RETRY_TIME} 6
51${NETWORK_TIMEOUT} 12
Prashanth Katti01293ef2017-02-16 08:20:20 -060052
George Keishinga126e212017-03-24 08:07:17 -050053# BMC debug tarball parameter
54${DEBUG_TARBALL_PATH} ${EMPTY}
55
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050056# Upload Image parameters
Charles Paul Hoferc1fa2bc2017-08-18 16:44:03 -050057${TFTP_SERVER} ${EMPTY}
58${PNOR_TFTP_FILE_NAME} ${EMPTY}
59${BMC_TFTP_FILE_NAME} ${EMPTY}
60${IMAGE_FILE_PATH} ${EMPTY}
61${ALTERNATE_IMAGE_FILE_PATH} ${EMPTY}
62${PNOR_IMAGE_FILE_PATH} ${EMPTY}
63${BMC_IMAGE_FILE_PATH} ${EMPTY}
64${BAD_IMAGES_DIR_PATH} ${EMPTY}
Charles Paul Hoferb7842a52017-09-22 10:11:33 -050065${SKIP_UPDATE_IF_ACTIVE} false
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050066
Charles Paul Hofer862685c2017-09-19 17:09:19 -050067# Parameters for doing N-1 and N+1 code updates.
68${N_MINUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
69${N_PLUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
70
Andrew Geissleraad05302017-09-13 22:20:34 +000071# The caller must set this to the string "true" in order to delete images. The
72# code is picky.
Charles Paul Hofer2c731642017-08-03 18:13:27 -050073${DELETE_OLD_PNOR_IMAGES} false
Charles Paul Hofer51b54c02017-09-13 22:13:49 -050074${DELETE_OLD_GUARD_FILE} false
Charles Paul Hofer2c731642017-08-03 18:13:27 -050075
George Keishing830211e2017-07-19 08:44:07 -050076# Caller can specify a value for LAST_KNOWN_GOOD_VERSION to indicate that if
77# the machine already has that version on it, the update should be skipped.
78${LAST_KNOWN_GOOD_VERSION} ${EMPTY}
79
George Keishing3e28ea32017-12-19 03:13:52 -060080# By default field mode is disabled.
81${FIELD_MODE} ${False}
82
Chris Austenb29d2e82016-06-07 12:25:35 -050083*** Keywords ***
84Get Inventory Schema
85 [Arguments] ${machine}
86 [Return] &{INVENTORY}[${machine}]
87
88Get Inventory Items Schema
89 [Arguments] ${machine}
90 [Return] &{INVENTORY_ITEMS}[${machine}]
91
92Get Sensor Schema
93 [Arguments] ${machine}
94 [Return] &{SENSORS}[${machine}]