Merge "Stop using heat-admin as ansible_ssh_user" into stable/wallaby

This commit is contained in:
Zuul 2022-07-21 14:36:23 +00:00 committed by Gerrit Code Review
commit b118e84a3a
5 changed files with 5 additions and 5 deletions

View File

@ -1529,7 +1529,7 @@ class TestDeployOvercloud(fakes.TestDeployOvercloud):
],
'baremetal_deployed_path': env_path,
'ssh_public_keys': 'sekrit',
'ssh_user_name': 'heat-admin',
'ssh_user_name': 'tripleo-admin',
'ssh_private_key_file': self.tmp_dir.join('id_rsa.pub'),
'manage_network_ports': True,
'configure_networking': False,

View File

@ -357,7 +357,7 @@ class TestProvisionNode(fakes.TestOvercloudNode):
],
'baremetal_deployed_path': mock.ANY,
'ssh_public_keys': 'I am a key',
'ssh_user_name': 'heat-admin',
'ssh_user_name': 'tripleo-admin',
'ssh_private_key_file': key_file_name,
'node_timeout': 3600,
'concurrency': 20,

View File

@ -44,7 +44,7 @@ class Authorize(command.Command):
parser.add_argument(
'--overcloud-ssh-user',
default='heat-admin',
default='tripleo-admin',
help=_('User for ssh access to overcloud nodes')
)
parser.add_argument(

View File

@ -690,7 +690,7 @@ class DeployOvercloud(command.Command):
)
parser.add_argument(
'--overcloud-ssh-user',
default='heat-admin',
default='tripleo-admin',
help=_('User for ssh access to overcloud nodes')
)
parser.add_argument(

View File

@ -244,7 +244,7 @@ class ProvisionNode(command.Command):
default=utils.env('OVERCLOUD_STACK_NAME',
default='overcloud'))
parser.add_argument('--overcloud-ssh-user',
default='heat-admin',
default='tripleo-admin',
help=_('User for SSH access to newly deployed '
'nodes'))
parser.add_argument('--overcloud-ssh-key',