diff options
author | wenjuan dong <dong.wenjuan@zte.com.cn> | 2018-10-25 06:05:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-10-25 06:05:48 +0000 |
commit | 23bf63c4616040cb0d69cd26238af2a4a7c00a90 (patch) | |
tree | f4f10c0afdf8ba69d6ea640e5cbf779a3ac49409 /doctor_tests/installer/apex.py | |
parent | 61eb3927ada784cc3dffb5ddd17f66e47871f708 (diff) | |
parent | 2a1d82ade82c3076a630af41da493da5a606993d (diff) |
Merge "fix the username to login undercloud in Apex"
Diffstat (limited to 'doctor_tests/installer/apex.py')
-rw-r--r-- | doctor_tests/installer/apex.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doctor_tests/installer/apex.py b/doctor_tests/installer/apex.py index 694adb88..31850a74 100644 --- a/doctor_tests/installer/apex.py +++ b/doctor_tests/installer/apex.py @@ -16,6 +16,7 @@ from doctor_tests.installer.base import BaseInstaller class ApexInstaller(BaseInstaller): node_user_name = 'heat-admin' + installer_username = 'stack' cm_set_script = 'set_config.py' nc_set_compute_script = 'set_compute_config.py' cg_set_script = 'set_congress.py' @@ -26,7 +27,7 @@ class ApexInstaller(BaseInstaller): def __init__(self, conf, log): super(ApexInstaller, self).__init__(conf, log) self.client = SSHClient(self.conf.installer.ip, - self.conf.installer.username, + self.installer_username, key_filename=self.conf.installer.key_file, look_for_keys=True) self.key_file = None |