Merge "chore: fix spelling mistakes"
This commit is contained in:
@@ -473,7 +473,7 @@ see :doc:`/admin/power-sync`. When this issue has been corrected with the
|
|||||||
credential, modern Ironic users should find the node recover automatically.
|
credential, modern Ironic users should find the node recover automatically.
|
||||||
|
|
||||||
.. warning::
|
.. warning::
|
||||||
Operators re-using the same credentials with a centrally managed credential
|
Operators reusing the same credentials with a centrally managed credential
|
||||||
management system with separate BMC configuration should be careful about
|
management system with separate BMC configuration should be careful about
|
||||||
credential rotations. These operators risk causing the account to access the
|
credential rotations. These operators risk causing the account to access the
|
||||||
BMC to be locked out, and should likely explicitly set nodes to ``maintenance``
|
BMC to be locked out, and should likely explicitly set nodes to ``maintenance``
|
||||||
@@ -486,7 +486,7 @@ credential, modern Ironic users should find the node recover automatically.
|
|||||||
The Ironic project recommends:
|
The Ironic project recommends:
|
||||||
|
|
||||||
* Unique passwords be used for each baremetal node.
|
* Unique passwords be used for each baremetal node.
|
||||||
* Operators leverage good password practices by not re-using the credentials
|
* Operators leverage good password practices by not reusing the credentials
|
||||||
for other tools or systems.
|
for other tools or systems.
|
||||||
|
|
||||||
Disk Images
|
Disk Images
|
||||||
|
|||||||
@@ -226,7 +226,7 @@ Indexes will not fix everything
|
|||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
Indexes are not a magical cure-all for all API or database performance issues,
|
Indexes are not a magical cure-all for all API or database performance issues,
|
||||||
but they are an increadibly important part depending on data access and query
|
but they are an incredibly important part depending on data access and query
|
||||||
patterns.
|
patterns.
|
||||||
|
|
||||||
The underlying object layer and data conversions including record pagination
|
The underlying object layer and data conversions including record pagination
|
||||||
|
|||||||
@@ -462,7 +462,7 @@ def _get_connection(node, lambda_fun, *args):
|
|||||||
except sushy.exceptions.AccessError as e:
|
except sushy.exceptions.AccessError as e:
|
||||||
LOG.warning('For node %(node)s, we received an authentication '
|
LOG.warning('For node %(node)s, we received an authentication '
|
||||||
'access error from address %(address)s with auth_type '
|
'access error from address %(address)s with auth_type '
|
||||||
'%(auth_type)s. The client will not be re-used upon '
|
'%(auth_type)s. The client will not be reused upon '
|
||||||
'the next re-attempt. Please ensure your using the '
|
'the next re-attempt. Please ensure your using the '
|
||||||
'correct credentials. Error: %(error)s',
|
'correct credentials. Error: %(error)s',
|
||||||
{'address': driver_info['address'],
|
{'address': driver_info['address'],
|
||||||
|
|||||||
@@ -1569,7 +1569,7 @@ class TestMigrationsMySQL(MigrationCheckersMixin,
|
|||||||
insert_node = nodes.insert().values(data)
|
insert_node = nodes.insert().values(data)
|
||||||
connection.execute(insert_node)
|
connection.execute(insert_node)
|
||||||
|
|
||||||
# Re-uses the same query to fetch current results
|
# Reuses the same query to fetch current results
|
||||||
i_info = connection.execute(
|
i_info = connection.execute(
|
||||||
sqlalchemy.text(
|
sqlalchemy.text(
|
||||||
"SELECT instance_info from nodes WHERE uuid = "
|
"SELECT instance_info from nodes WHERE uuid = "
|
||||||
|
|||||||
@@ -4146,7 +4146,7 @@ class IPMIToolShellinaboxTestCase(db_base.DbTestCase):
|
|||||||
mock_start.return_value = None
|
mock_start.return_value = None
|
||||||
mock_info.return_value = {'port': None}
|
mock_info.return_value = {'port': None}
|
||||||
mock_alloc.return_value = 1234
|
mock_alloc.return_value = 1234
|
||||||
# Ensure allocated port is not re-used
|
# Ensure allocated port is not reused
|
||||||
dii = self.node.driver_internal_info
|
dii = self.node.driver_internal_info
|
||||||
dii['allocated_ipmi_terminal_port'] = 4321
|
dii['allocated_ipmi_terminal_port'] = 4321
|
||||||
self.node.driver_internal_info = dii
|
self.node.driver_internal_info = dii
|
||||||
@@ -4365,7 +4365,7 @@ class IPMIToolSocatDriverTestCase(IPMIToolShellinaboxTestCase):
|
|||||||
mock_start.return_value = None
|
mock_start.return_value = None
|
||||||
mock_info.return_value = {'port': None}
|
mock_info.return_value = {'port': None}
|
||||||
mock_alloc.return_value = 1234
|
mock_alloc.return_value = 1234
|
||||||
# Ensure allocated port is not re-used
|
# Ensure allocated port is not reused
|
||||||
dii = self.node.driver_internal_info
|
dii = self.node.driver_internal_info
|
||||||
dii['allocated_ipmi_terminal_port'] = 4321
|
dii['allocated_ipmi_terminal_port'] = 4321
|
||||||
self.node.driver_internal_info = dii
|
self.node.driver_internal_info = dii
|
||||||
|
|||||||
Reference in New Issue
Block a user