blob: 3113fa90f2549b44adef6bdfe925f77464a60604 [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 Keishing6ceba1c2020-11-25 08:10:23 -060013# Transition REST vs Redfish ONLY temporary changes for stagging
14# automation infrastructure change and for continuity.
George Keishingd86e45c2021-03-19 07:38:14 -050015${REDFISH_SUPPORT_TRANS_STATE} ${0}
16
17# By default Delete all Redfish session per boot run.
18${REDFISH_DELETE_SESSIONS} ${1}
George Keishing6ceba1c2020-11-25 08:10:23 -060019
George Keishing633b9ce2018-05-31 01:24:52 -050020${OPENBMC_MODEL} ${EMPTY}
George Keishing136bcc62016-11-23 08:34:16 -060021${OPENBMC_HOST} ${EMPTY}
Chris Austenb29d2e82016-06-07 12:25:35 -050022${DBUS_PREFIX} ${EMPTY}
23${PORT} ${EMPTY}
George Keishingfbeaecc2016-08-16 05:24:31 -050024# AUTH_SUFFIX here is derived from variables.py
25${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
Chris Austenb29d2e82016-06-07 12:25:35 -050026${OPENBMC_USERNAME} root
27${OPENBMC_PASSWORD} 0penBmc
George Keishingaf4ab322018-10-17 12:42:52 -050028${REST_USERNAME} root
29${REST_PASSWORD} 0penBmc
Tony Lee05aa70b2021-01-28 19:18:27 +080030
Tony Lee2b975822021-04-01 11:15:00 +080031${CHASSIS_ID} chassis
32
Tony Lee05aa70b2021-01-28 19:18:27 +080033# MTLS_ENABLED indicates whether mTLS is enabled.
34${MTLS_ENABLED} False
35# Valid mTLS certificate for authentication.
36${VALID_CERT} ${EMPTY}
37# Path of mTLS certificates directory.
38${CERT_DIR_PATH} ${EMPTY}
39
Rahul Maheshwariea7d2de2017-03-16 06:50:09 -050040${IPMI_PASSWORD} 0penBmc
Chris Austenb29d2e82016-06-07 12:25:35 -050041${MACHINE_TYPE} palmetto
42${DBUS_POLL_INTERVAL} 15s
43${OPENBMC_REBOOT_TIMEOUT} ${10}
Rahul Maheshwarica2d6872017-03-17 01:48:24 -050044# IPMI_COMMAND here is set to "External" by default. User
45# can override to "Dbus" from command line.
46${IPMI_COMMAND} External
George Keishing39967eb2018-04-30 11:36:23 -050047# IPMI chipher default.
Rahul Maheshwari3aeae4e2020-04-03 07:45:50 -050048${IPMI_CIPHER_LEVEL} ${17}
George Keishing75f55dc2021-03-29 10:48:09 -050049# IPMI timeout default.
50${IPMI_TIMEOUT} ${3}
Chris Austenb29d2e82016-06-07 12:25:35 -050051
52# PDU related parameters
53${PDU_TYPE} ${EMPTY}
54${PDU_IP} ${EMPTY}
55${PDU_USERNAME} ${EMPTY}
56${PDU_PASSWORD} ${EMPTY}
57${PDU_SLOT_NO} ${EMPTY}
58
George Keishing4d6c1da2016-07-15 05:51:22 -050059# User define input SSH and HTTPS related parameters
Michael Walsh73a86ac2019-11-08 14:24:09 -060060${SSH_PORT} 22
61${HTTPS_PORT} 443
George Keishinge33ad1d2019-12-09 11:17:36 -060062${IPMI_PORT} 623
George Keishing088166c2019-12-13 08:11:28 -060063${HOST_SOL_PORT} 2200
George Keishingbeec26d2016-11-09 06:57:28 -060064${OPENBMC_SERIAL_HOST} ${EMPTY}
65${OPENBMC_SERIAL_PORT} ${EMPTY}
George Keishing4d6c1da2016-07-15 05:51:22 -050066
Michael Walsh49ab0f42016-07-20 11:44:33 -050067# OS related parameters.
68${OS_HOST} ${EMPTY}
69${OS_USERNAME} ${EMPTY}
70${OS_PASSWORD} ${EMPTY}
71${OS_WAIT_TIMEOUT} ${15*60}
72
Prashanth Katti01293ef2017-02-16 08:20:20 -060073# Networking related parameters
Prashanth Kattibcb7d612019-08-09 06:04:10 -050074${NETWORK_PORT} 80
75${PACKET_TYPE} tcp
76${ICMP_PACKETS} icmp
77${NETWORK_RETRY_TIME} 6
78${NETWORK_TIMEOUT} 18
79${ICMP_TIMESTAMP_REQUEST} 13
80${ICMP_ECHO_REQUEST} 8
Tony Lee7c5f4b22019-12-06 17:21:31 +080081${CHANNEL_NUMBER} 1
Prashanth Katti2f80bf12021-06-17 07:43:25 -050082${TCP_PACKETS} tcp
83${ICMP_NETMASK_REQUEST} 17
84${REDFISH_INTERFACE} 443
Prashanth Kattibcb7d612019-08-09 06:04:10 -050085
George Keishinga126e212017-03-24 08:07:17 -050086# BMC debug tarball parameter
87${DEBUG_TARBALL_PATH} ${EMPTY}
88
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050089# Upload Image parameters
Charles Paul Hoferc1fa2bc2017-08-18 16:44:03 -050090${TFTP_SERVER} ${EMPTY}
91${PNOR_TFTP_FILE_NAME} ${EMPTY}
92${BMC_TFTP_FILE_NAME} ${EMPTY}
93${IMAGE_FILE_PATH} ${EMPTY}
94${ALTERNATE_IMAGE_FILE_PATH} ${EMPTY}
95${PNOR_IMAGE_FILE_PATH} ${EMPTY}
96${BMC_IMAGE_FILE_PATH} ${EMPTY}
97${BAD_IMAGES_DIR_PATH} ${EMPTY}
Charles Paul Hoferb7842a52017-09-22 10:11:33 -050098${SKIP_UPDATE_IF_ACTIVE} false
Saqib Khanfb1f6ae2017-04-26 13:24:41 -050099
Charles Paul Hofer862685c2017-09-19 17:09:19 -0500100# Parameters for doing N-1 and N+1 code updates.
101${N_MINUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
102${N_PLUS_ONE_IMAGE_FILE_PATH} ${EMPTY}
103
Andrew Geissleraad05302017-09-13 22:20:34 +0000104# The caller must set this to the string "true" in order to delete images. The
105# code is picky.
Charles Paul Hofer2c731642017-08-03 18:13:27 -0500106${DELETE_OLD_PNOR_IMAGES} false
Charles Paul Hofer51b54c02017-09-13 22:13:49 -0500107${DELETE_OLD_GUARD_FILE} false
Charles Paul Hofer2c731642017-08-03 18:13:27 -0500108
George Keishing830211e2017-07-19 08:44:07 -0500109# Caller can specify a value for LAST_KNOWN_GOOD_VERSION to indicate that if
110# the machine already has that version on it, the update should be skipped.
111${LAST_KNOWN_GOOD_VERSION} ${EMPTY}
112
George Keishing3e28ea32017-12-19 03:13:52 -0600113# By default field mode is disabled.
114${FIELD_MODE} ${False}
115
Sivas SRRe4c1e852018-09-26 23:36:35 -0500116# LDAP related variables.
117${LDAP_BASE_DN} ${EMPTY}
118${LDAP_BIND_DN} ${EMPTY}
119${LDAP_SERVER_HOST} ${EMPTY}
120${LDAP_SECURE_MODE} ${EMPTY}
121${LDAP_BIND_DN_PASSWORD} ${EMPTY}
122${LDAP_SEARCH_SCOPE} ${EMPTY}
123${LDAP_TYPE} ${EMPTY}
124${LDAP_USER} ${EMPTY}
125${LDAP_USER_PASSWORD} ${EMPTY}
126
Chris Austenb29d2e82016-06-07 12:25:35 -0500127*** Keywords ***
128Get Inventory Schema
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500129 [Documentation] Get inventory schema.
Chris Austenb29d2e82016-06-07 12:25:35 -0500130 [Arguments] ${machine}
131 [Return] &{INVENTORY}[${machine}]
132
133Get Inventory Items Schema
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500134 [Documentation] Get inventory items schema.
Chris Austenb29d2e82016-06-07 12:25:35 -0500135 [Arguments] ${machine}
136 [Return] &{INVENTORY_ITEMS}[${machine}]
137
138Get Sensor Schema
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500139 [Documentation] Get sensors schema.
Chris Austenb29d2e82016-06-07 12:25:35 -0500140 [Arguments] ${machine}
141 [Return] &{SENSORS}[${machine}]