diff --git a/infrared_plugin/plugin.spec b/infrared_plugin/plugin.spec index 8c8425e91..bafaf6485 100644 --- a/infrared_plugin/plugin.spec +++ b/infrared_plugin/plugin.spec @@ -129,6 +129,10 @@ subparsers: type: Value help: hostname or IP address to be used to connect to undercloud host ansible_variable: undercloud_ssh_hostname + overcloud-ssh-username: + type: Value + help: user name to be used to connect to TripleO Overcloud hosts + ansible_variable: overcloud_ssh_username - title: Run stage options: diff --git a/roles/tobiko-configure/defaults/main.yaml b/roles/tobiko-configure/defaults/main.yaml index f021d2ee5..9bb35c07d 100644 --- a/roles/tobiko-configure/defaults/main.yaml +++ b/roles/tobiko-configure/defaults/main.yaml @@ -12,6 +12,7 @@ test_default_conf: tripleo: undercloud_ssh_hostname: "{{ undercloud_ssh_hostname }}" + overcloud_ssh_username: "{{ overcloud_ssh_username }}" test_log_debug: false @@ -22,5 +23,6 @@ test_runner_timeout: 14400. stackrc_file: '{{ ansible_user_dir }}/overcloudrc' undercloud_hostname: '{{ groups.get("undercloud", []) | first | default("undercloud-0") }}' - undercloud_ssh_hostname: '' + +overcloud_ssh_username: ''