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.
|
|
|
# OSA: Verify delegating the connection back to the container succeeds.
|
|
|
|
|
|
|
|
- name: integration/connection_delegation/osa_delegate_to_self.yml
|
|
|
|
hosts: osa-container-1
|
|
|
|
vars:
|
|
|
|
target: osa-container-1
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- meta: end_play
|
|
|
|
when: not is_mitogen
|
|
|
|
|
|
|
|
- mitogen_get_stack:
|
|
|
|
delegate_to: "{{target}}"
|
|
|
|
register: out
|
|
|
|
|
|
|
|
- assert_equal:
|
|
|
|
left: out.result
|
|
|
|
right: [
|
|
|
|
{
|
|
|
|
'kwargs': {
|
|
|
|
'container': 'osa-container-1',
|
|
|
|
'docker_path': null,
|
|
|
|
'kind': 'lxc',
|
|
|
|
'lxc_info_path': null,
|
|
|
|
'lxc_path': null,
|
|
|
|
'machinectl_path': null,
|
|
|
|
'python_path': ["/usr/bin/python"],
|
issue #251, #412, #434: fix connection configuration brainwrong
This refactors connection.py to pull the two huge dict-building
functions out into new transport_transport_config.PlayContextSpec and
MitogenViaSpec classes, leaving a lot more room to breath in both files
to figure out exactly how connection configuration should work.
The changes made in 1f21a30 / 3d58832 are updated or completely removed,
the original change was misguided, in a bid to fix connection delegation
taking variables from the wrong place when delegate_to was active.
The Python path no longer defaults to '/usr/bin/python', this does not
appear to be Ansible's normal behaviour. This has changed several times,
so it may have to change again, and it may cause breakage after release.
Connection delegation respects the c.DEFAULT_REMOTE_USER whereas the
previous version simply tried to fetch whatever was in the
'ansible_user' hostvar. Many more connection delegation variables closer
match vanilla's handling, but this still requires more work. Some of the
variables need access to the command line, and upstream are in the
process of changing all that stuff around.
6 years ago
|
|
|
'username': 'ansible-cfg-remote-user',
|
|
|
|
},
|
|
|
|
'method': 'setns',
|
|
|
|
},
|
|
|
|
]
|