mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-03-15 19:58:28 +00:00
* Try adding EE support. * Use GHA instead of AZP for EE tests. * Update changelog fragment, extend tests. * Disable current_container_facts test. * Increase verbosity. * 2.9 compatibility. * Use docker instead of podman for building EE and running tests in it. * Output some more information (helpful for debugging). * Fix GHA handling for current_container_facts. * Try to fix permissions.
29 lines
605 B
YAML
29 lines
605 B
YAML
---
|
|
- name: Retrieve information on current container
|
|
community.docker.current_container_facts:
|
|
register: result
|
|
|
|
# The following two tasks are useful if we ever have to debug why this fails.
|
|
|
|
- name: Print all Ansible facts
|
|
debug:
|
|
var: ansible_facts
|
|
|
|
- name: Read some files
|
|
slurp:
|
|
src: "{{ item }}"
|
|
loop:
|
|
- /proc/self/cpuset
|
|
- /proc/1/cgroup
|
|
- /proc/1/environ
|
|
|
|
- name: Print facts returned by module
|
|
debug:
|
|
var: result.ansible_facts
|
|
|
|
- name: Validate results
|
|
assert:
|
|
that:
|
|
- ansible_module_running_in_container
|
|
- ansible_module_container_type != ''
|