You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.2 KiB
YAML
78 lines
2.2 KiB
YAML
# issue #340: Ensure templated delegate_to field works.
|
|
#
|
|
# Here we delegate from "test-targets" group to a templated "{{physical_host}}"
|
|
# variable, which contains "cd-normal-alias", which has a
|
|
# "mitogen_via=cd-alias", which in turn has an "ansible_host="alias-host".
|
|
#
|
|
# So the full stack should be:
|
|
# - First hop: hostname "alias-host", username "alias-user"
|
|
# - Second hop: hostname "cd-normal-alias"
|
|
|
|
- name: integration/connection_delegation/delegate_to_template.yml
|
|
vars:
|
|
physical_host: "cd-normal-alias"
|
|
physical_hosts: ["cd-normal-alias", "cd-normal-normal"]
|
|
hosts: test-targets
|
|
gather_facts: no
|
|
any_errors_fatal: true
|
|
tasks:
|
|
- meta: end_play
|
|
when: not is_mitogen
|
|
|
|
- mitogen_get_stack:
|
|
delegate_to: "{{ physical_host }}"
|
|
register: out
|
|
|
|
- assert_equal:
|
|
left: out.result
|
|
right: [
|
|
{
|
|
'kwargs': {
|
|
'check_host_keys': 'ignore',
|
|
'connect_timeout': 10,
|
|
'hostname': 'alias-host',
|
|
'identities_only': False,
|
|
'identity_file': null,
|
|
'password': null,
|
|
'port': null,
|
|
'python_path': null,
|
|
'ssh_args': [
|
|
'-o',
|
|
'ForwardAgent=yes',
|
|
'-o',
|
|
'ControlMaster=auto',
|
|
'-o',
|
|
'ControlPersist=60s',
|
|
],
|
|
'ssh_debug_level': null,
|
|
'ssh_path': 'ssh',
|
|
'username': 'alias-user',
|
|
},
|
|
'method': 'ssh',
|
|
},
|
|
{
|
|
'kwargs': {
|
|
'check_host_keys': 'ignore',
|
|
'connect_timeout': 10,
|
|
'hostname': 'cd-normal-alias',
|
|
'identities_only': False,
|
|
'identity_file': null,
|
|
'password': null,
|
|
'port': null,
|
|
'python_path': null,
|
|
'ssh_args': [
|
|
'-o',
|
|
'ForwardAgent=yes',
|
|
'-o',
|
|
'ControlMaster=auto',
|
|
'-o',
|
|
'ControlPersist=60s',
|
|
],
|
|
'ssh_debug_level': null,
|
|
'ssh_path': 'ssh',
|
|
'username': null,
|
|
},
|
|
'method': 'ssh',
|
|
}
|
|
]
|