Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Library Collections |
| 3 | Library String |
| 4 | Library RequestsLibrary.RequestsKeywords |
| 5 | Library OperatingSystem |
| 6 | Variables ../data/variables.py |
| 7 | |
| 8 | *** Variables *** |
George Keishing | 633b9ce | 2018-05-31 01:24:52 -0500 | [diff] [blame] | 9 | |
George Keishing | 1e2fbee | 2021-03-19 11:19:29 -0500 | [diff] [blame] | 10 | # By default power, support x86 as well. |
| 11 | ${PLATFORM_ARCH_TYPE} power |
| 12 | |
George Keishing | 985659a | 2021-06-23 02:52:13 -0500 | [diff] [blame] | 13 | # FFDC Redfish OEM path /<oem>/v1/ |
| 14 | ${OEM_REDFISH_PATH} ${EMPTY} |
| 15 | |
George Keishing | 6ceba1c | 2020-11-25 08:10:23 -0600 | [diff] [blame] | 16 | # Transition REST vs Redfish ONLY temporary changes for stagging |
| 17 | # automation infrastructure change and for continuity. |
George Keishing | d86e45c | 2021-03-19 07:38:14 -0500 | [diff] [blame] | 18 | ${REDFISH_SUPPORT_TRANS_STATE} ${0} |
| 19 | |
| 20 | # By default Delete all Redfish session per boot run. |
| 21 | ${REDFISH_DELETE_SESSIONS} ${1} |
George Keishing | 6ceba1c | 2020-11-25 08:10:23 -0600 | [diff] [blame] | 22 | |
George Keishing | 633b9ce | 2018-05-31 01:24:52 -0500 | [diff] [blame] | 23 | ${OPENBMC_MODEL} ${EMPTY} |
George Keishing | 136bcc6 | 2016-11-23 08:34:16 -0600 | [diff] [blame] | 24 | ${OPENBMC_HOST} ${EMPTY} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 25 | ${DBUS_PREFIX} ${EMPTY} |
| 26 | ${PORT} ${EMPTY} |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 27 | # AUTH_SUFFIX here is derived from variables.py |
| 28 | ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 29 | ${OPENBMC_USERNAME} root |
| 30 | ${OPENBMC_PASSWORD} 0penBmc |
George Keishing | af4ab32 | 2018-10-17 12:42:52 -0500 | [diff] [blame] | 31 | ${REST_USERNAME} root |
| 32 | ${REST_PASSWORD} 0penBmc |
manashsarma | 0f74c80 | 2021-11-10 04:37:02 -0600 | [diff] [blame] | 33 | ${OPENBMC_ADMIN_PASSWORD} 0penBmc |
| 34 | ${SERVICE_USER_PASSWORD} 0penBmc |
Tony Lee | 05aa70b | 2021-01-28 19:18:27 +0800 | [diff] [blame] | 35 | |
George Keishing | de7e045 | 2022-02-01 07:04:41 -0600 | [diff] [blame] | 36 | # For users privilege admin or sudo. |
George Keishing | 2104d5f | 2022-01-31 04:33:30 -0600 | [diff] [blame] | 37 | ${USER_TYPE} ${EMPTY} |
| 38 | |
Tony Lee | 2b97582 | 2021-04-01 11:15:00 +0800 | [diff] [blame] | 39 | ${CHASSIS_ID} chassis |
Tony Lee | 79940a5 | 2021-10-12 17:04:13 +0800 | [diff] [blame] | 40 | ${COMPONENT_NAME_OF_POWER_SUPPLY} powersupply |
Tony Lee | 2b97582 | 2021-04-01 11:15:00 +0800 | [diff] [blame] | 41 | |
Tony Lee | 05aa70b | 2021-01-28 19:18:27 +0800 | [diff] [blame] | 42 | # MTLS_ENABLED indicates whether mTLS is enabled. |
| 43 | ${MTLS_ENABLED} False |
| 44 | # Valid mTLS certificate for authentication. |
| 45 | ${VALID_CERT} ${EMPTY} |
| 46 | # Path of mTLS certificates directory. |
| 47 | ${CERT_DIR_PATH} ${EMPTY} |
| 48 | |
George Keishing | dad7d38 | 2022-02-01 02:56:29 -0600 | [diff] [blame] | 49 | ${IPMI_USERNAME} root |
Rahul Maheshwari | ea7d2de | 2017-03-16 06:50:09 -0500 | [diff] [blame] | 50 | ${IPMI_PASSWORD} 0penBmc |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 51 | ${MACHINE_TYPE} palmetto |
| 52 | ${DBUS_POLL_INTERVAL} 15s |
| 53 | ${OPENBMC_REBOOT_TIMEOUT} ${10} |
Rahul Maheshwari | ca2d687 | 2017-03-17 01:48:24 -0500 | [diff] [blame] | 54 | # IPMI_COMMAND here is set to "External" by default. User |
| 55 | # can override to "Dbus" from command line. |
| 56 | ${IPMI_COMMAND} External |
George Keishing | 39967eb | 2018-04-30 11:36:23 -0500 | [diff] [blame] | 57 | # IPMI chipher default. |
Rahul Maheshwari | 3aeae4e | 2020-04-03 07:45:50 -0500 | [diff] [blame] | 58 | ${IPMI_CIPHER_LEVEL} ${17} |
George Keishing | 75f55dc | 2021-03-29 10:48:09 -0500 | [diff] [blame] | 59 | # IPMI timeout default. |
| 60 | ${IPMI_TIMEOUT} ${3} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 61 | |
George Keishing | 2620672 | 2021-11-17 01:29:53 -0600 | [diff] [blame] | 62 | # Log default path for IPMI SOL. |
| 63 | ${IPMI_SOL_LOG_FILE} ${EXECDIR}${/}logs${/}sol_${OPENBMC_HOST} |
| 64 | |
chithrag | 0f0bd53 | 2022-04-05 09:49:53 +0000 | [diff] [blame] | 65 | # IPMI SOL console output types/parameters to verify. |
| 66 | ${SOL_BIOS_OUTPUT} ${EMPTY} |
| 67 | ${SOL_LOGIN_OUTPUT} ${EMPTY} |
| 68 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 69 | # PDU related parameters |
| 70 | ${PDU_TYPE} ${EMPTY} |
| 71 | ${PDU_IP} ${EMPTY} |
| 72 | ${PDU_USERNAME} ${EMPTY} |
| 73 | ${PDU_PASSWORD} ${EMPTY} |
| 74 | ${PDU_SLOT_NO} ${EMPTY} |
| 75 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 76 | # User define input SSH and HTTPS related parameters |
Michael Walsh | 73a86ac | 2019-11-08 14:24:09 -0600 | [diff] [blame] | 77 | ${SSH_PORT} 22 |
| 78 | ${HTTPS_PORT} 443 |
George Keishing | e33ad1d | 2019-12-09 11:17:36 -0600 | [diff] [blame] | 79 | ${IPMI_PORT} 623 |
George Keishing | 088166c | 2019-12-13 08:11:28 -0600 | [diff] [blame] | 80 | ${HOST_SOL_PORT} 2200 |
George Keishing | beec26d | 2016-11-09 06:57:28 -0600 | [diff] [blame] | 81 | ${OPENBMC_SERIAL_HOST} ${EMPTY} |
| 82 | ${OPENBMC_SERIAL_PORT} ${EMPTY} |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 83 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 84 | # OS related parameters. |
| 85 | ${OS_HOST} ${EMPTY} |
| 86 | ${OS_USERNAME} ${EMPTY} |
| 87 | ${OS_PASSWORD} ${EMPTY} |
| 88 | ${OS_WAIT_TIMEOUT} ${15*60} |
| 89 | |
Prashanth Katti | 01293ef | 2017-02-16 08:20:20 -0600 | [diff] [blame] | 90 | # Networking related parameters |
Prashanth Katti | bcb7d61 | 2019-08-09 06:04:10 -0500 | [diff] [blame] | 91 | ${NETWORK_PORT} 80 |
| 92 | ${PACKET_TYPE} tcp |
| 93 | ${ICMP_PACKETS} icmp |
| 94 | ${NETWORK_RETRY_TIME} 6 |
| 95 | ${NETWORK_TIMEOUT} 18 |
| 96 | ${ICMP_TIMESTAMP_REQUEST} 13 |
| 97 | ${ICMP_ECHO_REQUEST} 8 |
Tony Lee | 7c5f4b2 | 2019-12-06 17:21:31 +0800 | [diff] [blame] | 98 | ${CHANNEL_NUMBER} 1 |
Prashanth Katti | 2f80bf1 | 2021-06-17 07:43:25 -0500 | [diff] [blame] | 99 | ${TCP_PACKETS} tcp |
| 100 | ${ICMP_NETMASK_REQUEST} 17 |
| 101 | ${REDFISH_INTERFACE} 443 |
Prashanth Katti | b18762b | 2021-06-21 07:55:52 -0500 | [diff] [blame] | 102 | ${SYN_PACKETS} SYN |
| 103 | ${RESET_PACKETS} RST |
| 104 | ${FIN_PACKETS} FIN |
| 105 | ${SYN_ACK_RESET} SAR |
| 106 | ${ALL_FLAGS} ALL |
Tony Lee | 374a538 | 2021-08-09 19:22:44 +0800 | [diff] [blame] | 107 | # Used to set BMC static IPv4 configuration. |
| 108 | ${STATIC_IP} 10.10.10.10 |
| 109 | ${NETMASK} 255.255.255.0 |
| 110 | ${GATEWAY} 10.10.10.10 |
Prashanth Katti | bcb7d61 | 2019-08-09 06:04:10 -0500 | [diff] [blame] | 111 | |
George Keishing | a126e21 | 2017-03-24 08:07:17 -0500 | [diff] [blame] | 112 | # BMC debug tarball parameter |
| 113 | ${DEBUG_TARBALL_PATH} ${EMPTY} |
| 114 | |
Saqib Khan | fb1f6ae | 2017-04-26 13:24:41 -0500 | [diff] [blame] | 115 | # Upload Image parameters |
Charles Paul Hofer | c1fa2bc | 2017-08-18 16:44:03 -0500 | [diff] [blame] | 116 | ${TFTP_SERVER} ${EMPTY} |
| 117 | ${PNOR_TFTP_FILE_NAME} ${EMPTY} |
| 118 | ${BMC_TFTP_FILE_NAME} ${EMPTY} |
| 119 | ${IMAGE_FILE_PATH} ${EMPTY} |
| 120 | ${ALTERNATE_IMAGE_FILE_PATH} ${EMPTY} |
| 121 | ${PNOR_IMAGE_FILE_PATH} ${EMPTY} |
| 122 | ${BMC_IMAGE_FILE_PATH} ${EMPTY} |
| 123 | ${BAD_IMAGES_DIR_PATH} ${EMPTY} |
Charles Paul Hofer | b7842a5 | 2017-09-22 10:11:33 -0500 | [diff] [blame] | 124 | ${SKIP_UPDATE_IF_ACTIVE} false |
Saqib Khan | fb1f6ae | 2017-04-26 13:24:41 -0500 | [diff] [blame] | 125 | |
Charles Paul Hofer | 862685c | 2017-09-19 17:09:19 -0500 | [diff] [blame] | 126 | # Parameters for doing N-1 and N+1 code updates. |
| 127 | ${N_MINUS_ONE_IMAGE_FILE_PATH} ${EMPTY} |
| 128 | ${N_PLUS_ONE_IMAGE_FILE_PATH} ${EMPTY} |
| 129 | |
Andrew Geissler | aad0530 | 2017-09-13 22:20:34 +0000 | [diff] [blame] | 130 | # The caller must set this to the string "true" in order to delete images. The |
| 131 | # code is picky. |
Charles Paul Hofer | 2c73164 | 2017-08-03 18:13:27 -0500 | [diff] [blame] | 132 | ${DELETE_OLD_PNOR_IMAGES} false |
Charles Paul Hofer | 51b54c0 | 2017-09-13 22:13:49 -0500 | [diff] [blame] | 133 | ${DELETE_OLD_GUARD_FILE} false |
Charles Paul Hofer | 2c73164 | 2017-08-03 18:13:27 -0500 | [diff] [blame] | 134 | |
George Keishing | 830211e | 2017-07-19 08:44:07 -0500 | [diff] [blame] | 135 | # Caller can specify a value for LAST_KNOWN_GOOD_VERSION to indicate that if |
| 136 | # the machine already has that version on it, the update should be skipped. |
| 137 | ${LAST_KNOWN_GOOD_VERSION} ${EMPTY} |
| 138 | |
George Keishing | 3e28ea3 | 2017-12-19 03:13:52 -0600 | [diff] [blame] | 139 | # By default field mode is disabled. |
| 140 | ${FIELD_MODE} ${False} |
| 141 | |
Sivas SRR | e4c1e85 | 2018-09-26 23:36:35 -0500 | [diff] [blame] | 142 | # LDAP related variables. |
| 143 | ${LDAP_BASE_DN} ${EMPTY} |
| 144 | ${LDAP_BIND_DN} ${EMPTY} |
| 145 | ${LDAP_SERVER_HOST} ${EMPTY} |
| 146 | ${LDAP_SECURE_MODE} ${EMPTY} |
| 147 | ${LDAP_BIND_DN_PASSWORD} ${EMPTY} |
| 148 | ${LDAP_SEARCH_SCOPE} ${EMPTY} |
| 149 | ${LDAP_TYPE} ${EMPTY} |
| 150 | ${LDAP_USER} ${EMPTY} |
| 151 | ${LDAP_USER_PASSWORD} ${EMPTY} |
Nagarjun B | 1b82161 | 2021-12-06 22:52:04 +0530 | [diff] [blame] | 152 | ${GROUP_PRIVILEGE} ${EMPTY} |
| 153 | ${GROUP_NAME} ${EMPTY} |
| 154 | ${LDAP_SERVER_URI} ldap://${LDAP_SERVER_HOST} |
Sivas SRR | e4c1e85 | 2018-09-26 23:36:35 -0500 | [diff] [blame] | 155 | |
Peter D Phan | 5e56f52 | 2021-12-20 13:19:41 -0600 | [diff] [blame] | 156 | # General tool variables |
| 157 | # FFDC_DEFAULT == 1; use Default FFDC methods |
| 158 | ${FFDC_DEFAULT} ${1} |
| 159 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 160 | *** Keywords *** |
| 161 | Get Inventory Schema |
Joy Onyerikwu | f4a807b | 2018-06-20 08:43:54 -0500 | [diff] [blame] | 162 | [Documentation] Get inventory schema. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 163 | [Arguments] ${machine} |
| 164 | [Return] &{INVENTORY}[${machine}] |
| 165 | |
| 166 | Get Inventory Items Schema |
Joy Onyerikwu | f4a807b | 2018-06-20 08:43:54 -0500 | [diff] [blame] | 167 | [Documentation] Get inventory items schema. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 168 | [Arguments] ${machine} |
| 169 | [Return] &{INVENTORY_ITEMS}[${machine}] |
| 170 | |
| 171 | Get Sensor Schema |
Joy Onyerikwu | f4a807b | 2018-06-20 08:43:54 -0500 | [diff] [blame] | 172 | [Documentation] Get sensors schema. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 173 | [Arguments] ${machine} |
| 174 | [Return] &{SENSORS}[${machine}] |