Merge "[BGP] undercloud_ssh_key_filename added to infrared plugin options"

This commit is contained in:
Zuul 2022-12-12 12:25:50 +00:00 committed by Gerrit Code Review
commit 4d7d9e8225
3 changed files with 7 additions and 1 deletions

View File

@ -149,6 +149,10 @@ subparsers:
type: Value
help: hostname or IP address to be used to connect to undercloud host
ansible_variable: undercloud_ssh_hostname
undercloud_ssh_key_filename:
type: Value
help: SSH key filename to connect to undercloud host
ansible_variable: undercloud_ssh_key_filename
overcloud-ssh-username:
type: Value
help: user name to be used to connect to TripleO Overcloud hosts

View File

@ -13,6 +13,7 @@ test_default_conf:
tripleo:
undercloud_ssh_hostname: "{{ undercloud_ssh_hostname }}"
overcloud_ssh_username: "{{ overcloud_ssh_username }}"
undercloud_ssh_key_filename: "{{ undercloud_ssh_key_filename }}"
test_log_debug: ''
@ -24,5 +25,6 @@ stackrc_file: '{{ ansible_user_dir }}/overcloudrc'
undercloud_hostname: '{{ groups.get("undercloud", []) | first | default("undercloud-0") }}'
undercloud_ssh_hostname: ''
undercloud_ssh_key_filename: ''
overcloud_ssh_username: ''

View File

@ -1,6 +1,6 @@
---
- name: "pick undercloud SSH shotname from inventory"
- name: "pick undercloud SSH hostname from inventory"
set_fact:
undercloud_ssh_hostname: >-
{{ hostvars[undercloud_hostname].ansible_fqdn |