blob: 710fdb1b8ffb7f57ed8d98ce913b045c74f42f5f [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
George Keishing1e2fbee2021-03-19 11:19:29 -050010# By default power, support x86 as well.
11${PLATFORM_ARCH_TYPE} power
12
George Keishing985659a2021-06-23 02:52:13 -050013# FFDC Redfish OEM path /<oem>/v1/
14${OEM_REDFISH_PATH} ${EMPTY}
15
George Keishing6ceba1c2020-11-25 08:10:23 -060016# Transition REST vs Redfish ONLY temporary changes for stagging
17# automation infrastructure change and for continuity.
George Keishingd86e45c2021-03-19 07:38:14 -050018${REDFISH_SUPPORT_TRANS_STATE} ${0}
19
20# By default Delete all Redfish session per boot run.
21${REDFISH_DELETE_SESSIONS} ${1}
George Keishing6ceba1c2020-11-25 08:10:23 -060022
George Keishing633b9ce2018-05-31 01:24:52 -050023${OPENBMC_MODEL} ${EMPTY}
George Keishing136bcc62016-11-23 08:34:16 -060024${OPENBMC_HOST} ${EMPTY}
Chris Austenb29d2e82016-06-07 12:25:35 -050025${DBUS_PREFIX} ${EMPTY}
26${PORT} ${EMPTY}
George Keishingfbeaecc2016-08-16 05:24:31 -050027# AUTH_SUFFIX here is derived from variables.py
28${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
Chris Austenb29d2e82016-06-07 12:25:35 -050029${OPENBMC_USERNAME} root
30${OPENBMC_PASSWORD} 0penBmc
George Keishingaf4ab322018-10-17 12:42:52 -050031${REST_USERNAME} root
32${REST_PASSWORD} 0penBmc
Tony Lee05aa70b2021-01-28 19:18:27 +080033
Tony Lee2b975822021-04-01 11:15:00 +080034${CHASSIS_ID} chassis
Tony Lee79940a52021-10-12 17:04:13 +080035${COMPONENT_NAME_OF_POWER_SUPPLY} powersupply
Tony Lee2b975822021-04-01 11:15:00 +080036
Tony Lee05aa70b2021-01-28 19:18:27 +080037# MTLS_ENABLED indicates whether mTLS is enabled.
38${MTLS_ENABLED} False
39# Valid mTLS certificate for authentication.
40${VALID_CERT} ${EMPTY}
41# Path of mTLS certificates directory.
42${CERT_DIR_PATH} ${EMPTY}
43
Rahul Maheshwariea7d2de2017-03-16 06:50:09 -050044${IPMI_PASSWORD} 0penBmc
Chris Austenb29d2e82016-06-07 12:25:35 -050045${MACHINE_TYPE} palmetto
46${DBUS_POLL_INTERVAL} 15s
47${OPENBMC_REBOOT_TIMEOUT} ${10}
Rahul Maheshwarica2d6872017-03-17 01:48:24 -050048# IPMI_COMMAND here is set to "External" by default. User
49# can override to "Dbus" from command line.
50${IPMI_COMMAND} External
George Keishing39967eb2018-04-30 11:36:23 -050051# IPMI chipher default.
Rahul Maheshwari3aeae4e2020-04-03 07:45:50 -050052${IPMI_CIPHER_LEVEL} ${17}
George Keishing75f55dc2021-03-29 10:48:09 -050053# IPMI timeout default.
54${IPMI_TIMEOUT} ${3}
Chris Austenb29d2e82016-06-07 12:25:35 -050055
56# PDU related parameters
57${PDU_TYPE} ${EMPTY}
58${PDU_IP} ${EMPTY}
59${PDU_USERNAME} ${EMPTY}
60${PDU_PASSWORD} ${EMPTY}
61${PDU_SLOT_NO} ${EMPTY}
62
George Keishing4d6c1da2016-07-15 05:51:22 -050063# User define input SSH and HTTPS related parameters
Michael Walsh73a86ac2019-11-08 14:24:09 -060064${SSH_PORT} 22
65${HTTPS_PORT} 443
George Keishinge33ad1d2019-12-09 11:17:36 -060066${IPMI_PORT} 623
George Keishing088166c2019-12-13 08:11:28 -060067${HOST_SOL_PORT} 2200
George Keishingbeec26d2016-11-09 06:57:28 -060068${OPENBMC_SERIAL_HOST} ${EMPTY}
69${OPENBMC_SERIAL_PORT} ${EMPTY}
George Keishing4d6c1da2016-07-15 05:51:22 -050070
Michael Walsh49ab0f42016-07-20 11:44:33 -050071# OS related parameters.
72${OS_HOST} ${EMPTY}
73${OS_USERNAME} ${EMPTY}
74${OS_PASSWORD} ${EMPTY}
75${OS_WAIT_TIMEOUT} ${15*60}
76
Prashanth Katti01293ef2017-02-16 08:20:20 -060077# Networking related parameters
Prashanth Kattibcb7d612019-08-09 06:04:10 -050078${NETWORK_PORT} 80
79${PACKET_TYPE} tcp
80${ICMP_PACKETS} icmp
81${NETWORK_RETRY_TIME} 6
82${NETWORK_TIMEOUT} 18
83${ICMP_TIMESTAMP_REQUEST} 13
84${ICMP_ECHO_REQUEST} 8
Tony Lee7c5f4b22019-12-06 17:21:31 +080085${CHANNEL_NUMBER} 1
Prashanth Katti2f80bf12021-06-17 07:43:25 -050086${TCP_PACKETS} tcp
87${ICMP_NETMASK_REQUEST} 17
88${REDFISH_INTERFACE} 443
Prashanth Kattib18762b2021-06-21 07:55:52 -050089${SYN_PACKETS} SYN
90${RESET_PACKETS} RST
91${FIN_PACKETS} FIN
92${SYN_ACK_RESET} SAR
93${ALL_FLAGS} ALL
Tony Lee374a5382021-08-09 19:22:44 +080094# Used to set BMC static IPv4 configuration.
95${STATIC_IP} 10.10.10.10
96${NETMASK} 255.255.255.0
97${GATEWAY} 10.10.10.10
Prashanth Kattibcb7d612019-08-09 06:04:10 -050098
George Keishinga126e212017-03-24 08:07:17 -050099# BMC debug tarball parameter
100${DEBUG_TARBALL_PATH} ${EMPTY}
101
Saqib Khanfb1f6ae2017-04-26 13:24:41 -0500102# Upload Image parameters
Charles Paul Hoferc1fa2bc2017-08-18 16:44:03 -0500103${TFTP_SERVER} ${EMPTY}
104${PNOR_TFTP_FILE_NAME} ${EMPTY}
105${BMC_TFTP_FILE_NAME} ${EMPTY}
106${IMAGE_FILE_PATH} ${EMPTY}
107${ALTERNATE_IMAGE_FILE_PATH} ${EMPTY}
108${PNOR_IMAGE_FILE_PATH} ${EMPTY}
109${BMC_IMAGE_FILE_PATH} ${EMPTY}
110${BAD_IMAGES_DIR_PATH} ${EMPTY}
Charles Paul Hoferb7842a52017-09-22 10:11:33 -0500111${SKIP_UPDATE_IF_ACTIVE} false
Saqib Khanfb1f6ae2017-04-26 13:24:41 -0500112
Charles Paul Hofer862685c2017-09-19 17:09:19 -0500113# Parameters for doing N-1 and N+1 code updates.
114${N_MINUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
115${N_PLUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
116
Andrew Geissleraad05302017-09-13 22:20:34 +0000117# The caller must set this to the string "true" in order to delete images. The
118# code is picky.
Charles Paul Hofer2c731642017-08-03 18:13:27 -0500119${DELETE_OLD_PNOR_IMAGES} false
Charles Paul Hofer51b54c02017-09-13 22:13:49 -0500120${DELETE_OLD_GUARD_FILE} false
Charles Paul Hofer2c731642017-08-03 18:13:27 -0500121
George Keishing830211e2017-07-19 08:44:07 -0500122# Caller can specify a value for LAST_KNOWN_GOOD_VERSION to indicate that if
123# the machine already has that version on it, the update should be skipped.
124${LAST_KNOWN_GOOD_VERSION} ${EMPTY}
125
George Keishing3e28ea32017-12-19 03:13:52 -0600126# By default field mode is disabled.
127${FIELD_MODE} ${False}
128
Sivas SRRe4c1e852018-09-26 23:36:35 -0500129# LDAP related variables.
130${LDAP_BASE_DN} ${EMPTY}
131${LDAP_BIND_DN} ${EMPTY}
132${LDAP_SERVER_HOST} ${EMPTY}
133${LDAP_SECURE_MODE} ${EMPTY}
134${LDAP_BIND_DN_PASSWORD} ${EMPTY}
135${LDAP_SEARCH_SCOPE} ${EMPTY}
136${LDAP_TYPE} ${EMPTY}
137${LDAP_USER} ${EMPTY}
138${LDAP_USER_PASSWORD} ${EMPTY}
139
Chris Austenb29d2e82016-06-07 12:25:35 -0500140*** Keywords ***
141Get Inventory Schema
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500142 [Documentation] Get inventory schema.
Chris Austenb29d2e82016-06-07 12:25:35 -0500143 [Arguments] ${machine}
144 [Return] &{INVENTORY}[${machine}]
145
146Get Inventory Items Schema
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500147 [Documentation] Get inventory items schema.
Chris Austenb29d2e82016-06-07 12:25:35 -0500148 [Arguments] ${machine}
149 [Return] &{INVENTORY_ITEMS}[${machine}]
150
151Get Sensor Schema
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500152 [Documentation] Get sensors schema.
Chris Austenb29d2e82016-06-07 12:25:35 -0500153 [Arguments] ${machine}
154 [Return] &{SENSORS}[${machine}]