blob: 57d13539f1068ef074d763207984f27084bce6e2 [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
George Keishing39967eb2018-04-30 11:36:23 -050023# IPMI chipher default.
24${IPMI_CIPHER_LEVEL} ${3}
Chris Austenb29d2e82016-06-07 12:25:35 -050025
26# PDU related parameters
27${PDU_TYPE} ${EMPTY}
28${PDU_IP} ${EMPTY}
29${PDU_USERNAME} ${EMPTY}
30${PDU_PASSWORD} ${EMPTY}
31${PDU_SLOT_NO} ${EMPTY}
32
George Keishing4d6c1da2016-07-15 05:51:22 -050033# User define input SSH and HTTPS related parameters
34${SSH_PORT} ${EMPTY}
35${HTTPS_PORT} ${EMPTY}
George Keishingbeec26d2016-11-09 06:57:28 -060036${OPENBMC_SERIAL_HOST} ${EMPTY}
37${OPENBMC_SERIAL_PORT} ${EMPTY}
George Keishing4d6c1da2016-07-15 05:51:22 -050038
Michael Walsh49ab0f42016-07-20 11:44:33 -050039# OS related parameters.
40${OS_HOST} ${EMPTY}
41${OS_USERNAME} ${EMPTY}
42${OS_PASSWORD} ${EMPTY}
43${OS_WAIT_TIMEOUT} ${15*60}
44
Prashanth Katti01293ef2017-02-16 08:20:20 -060045# Networking related parameters
Prashanth Katti3690dc02017-11-22 07:21:24 -060046${NETWORK_PORT} 80
47${PACKET_TYPE} tcp
48${NETWORK_RETRY_TIME} 6
49${NETWORK_TIMEOUT} 12
Prashanth Katti01293ef2017-02-16 08:20:20 -060050
George Keishinga126e212017-03-24 08:07:17 -050051# BMC debug tarball parameter
52${DEBUG_TARBALL_PATH} ${EMPTY}
53
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050054# Upload Image parameters
Charles Paul Hoferc1fa2bc2017-08-18 16:44:03 -050055${TFTP_SERVER} ${EMPTY}
56${PNOR_TFTP_FILE_NAME} ${EMPTY}
57${BMC_TFTP_FILE_NAME} ${EMPTY}
58${IMAGE_FILE_PATH} ${EMPTY}
59${ALTERNATE_IMAGE_FILE_PATH} ${EMPTY}
60${PNOR_IMAGE_FILE_PATH} ${EMPTY}
61${BMC_IMAGE_FILE_PATH} ${EMPTY}
62${BAD_IMAGES_DIR_PATH} ${EMPTY}
Charles Paul Hoferb7842a52017-09-22 10:11:33 -050063${SKIP_UPDATE_IF_ACTIVE} false
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050064
Charles Paul Hofer862685c2017-09-19 17:09:19 -050065# Parameters for doing N-1 and N+1 code updates.
66${N_MINUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
67${N_PLUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
68
Andrew Geissleraad05302017-09-13 22:20:34 +000069# The caller must set this to the string "true" in order to delete images. The
70# code is picky.
Charles Paul Hofer2c731642017-08-03 18:13:27 -050071${DELETE_OLD_PNOR_IMAGES} false
Charles Paul Hofer51b54c02017-09-13 22:13:49 -050072${DELETE_OLD_GUARD_FILE} false
Charles Paul Hofer2c731642017-08-03 18:13:27 -050073
George Keishing830211e2017-07-19 08:44:07 -050074# Caller can specify a value for LAST_KNOWN_GOOD_VERSION to indicate that if
75# the machine already has that version on it, the update should be skipped.
76${LAST_KNOWN_GOOD_VERSION} ${EMPTY}
77
George Keishing3e28ea32017-12-19 03:13:52 -060078# By default field mode is disabled.
79${FIELD_MODE} ${False}
80
Chris Austenb29d2e82016-06-07 12:25:35 -050081*** Keywords ***
82Get Inventory Schema
83 [Arguments] ${machine}
84 [Return] &{INVENTORY}[${machine}]
85
86Get Inventory Items Schema
87 [Arguments] ${machine}
88 [Return] &{INVENTORY_ITEMS}[${machine}]
89
90Get Sensor Schema
91 [Arguments] ${machine}
92 [Return] &{SENSORS}[${machine}]