Code Monkey home page Code Monkey logo

Comments (9)

sshnaidm avatar sshnaidm commented on May 24, 2024 1

OK, I got it reproduced finally, happens with root on ubuntu 20 and podman 2.0.2

from ansible-podman-collections.

sshnaidm avatar sshnaidm commented on May 24, 2024 1

@yajo I think I figured out what is the problem, please try #95 if it helps.

from ansible-podman-collections.

sshnaidm avatar sshnaidm commented on May 24, 2024

@jaudriga I'm trying to reproduce it with ubuntu 20, but can't now. Do you have specific Apparmor settings? What is your network setup for containers?

from ansible-podman-collections.

sshnaidm avatar sshnaidm commented on May 24, 2024

@jaudriga any news about it? Is it still an issue?

from ansible-podman-collections.

yajo avatar yajo commented on May 24, 2024

I'm having the same issue, yes. Maybe it only happens with root podman?

from ansible-podman-collections.

sshnaidm avatar sshnaidm commented on May 24, 2024

Yeah, I found reproducing of "bridge" issue in #80 . In root containers default network mode is bridge, while in rootless it's slirp4netns. So that's ok, will be fixed.
Although I still can't reproduce issue with apparmor security options. I think it might be related to apparmor config. If someone has the same, please comment how I can reproduce it.

from ansible-podman-collections.

yajo avatar yajo commented on May 24, 2024

This seems to be still happening. According to my tests, this happens when you add the container to a pod that had open ports.

playbook
- name: add ubuntu host
  hosts: localhost
  tasks:
    - name: add ubuntu 20.04 host
      add_host:
        ansible_host: "192.168.122.207"
        name: ubuntu

- name: test
  hosts: ubuntu
  collections:
    - containers.podman
  tasks:
    - name: create pod
      podman_pod:
        name: traefik_pod
        publish:
          - "10080:10080"
          - "10443:10443"

    - &container
      name: start traefik container
      podman_container:
        image: docker.io/library/traefik:2.2
        name: traefik
        pod: traefik_pod
        restart_policy: unless-stopped
        state: started
        command:
          - --entryPoints.web-insecure.address=:10080
          - --entryPoints.web-main.address=:10443
          - --entryPoints.web-main.http.tls=true
          - --log.level=DEBUG
          - --providers.file.directory=/etc/traefik/dynamic
          - --providers.file.watch=true

    - *container

    - name: remove traefik pod
      podman_pod:
        name: traefik_pod
        state: absent
Execution results
➤ ansible-playbook test.yml -vvv
ansible-playbook 2.9.9
  config file = /var/home/yajo/mydevel/mando/ansible.cfg
  configured module search path = ['/var/home/yajo/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /var/home/yajo/mydevel/mando/.venv/lib64/python3.8/site-packages/ansible
  executable location = /var/home/yajo/mydevel/mando/.venv/bin/ansible-playbook
  python version = 3.8.3 (default, May 29 2020, 00:00:00) [GCC 10.1.1 20200507 (Red Hat 10.1.1-1)]
Using /var/home/yajo/mydevel/mando/ansible.cfg as config file
host_list declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
Skipping due to inventory source not existing or not being readable by the current user
script declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
auto declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
Skipping due to inventory source not existing or not being readable by the current user
yaml declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
Skipping due to inventory source not existing or not being readable by the current user
ini declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
Skipping due to inventory source not existing or not being readable by the current user
toml declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
[WARNING]: No inventory was parsed, only implicit localhost is available
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'

PLAYBOOK: test.yml ***************************************************************************************************************************************************************************************************************************
2 plays in test.yml

PLAY [add ubuntu host] ***********************************************************************************************************************************************************************************************************************

TASK [Gathering Facts] ***********************************************************************************************************************************************************************************************************************
task path: /var/home/yajo/mydevel/mando/test.yml:1
<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: yajo
<127.0.0.1> EXEC /bin/sh -c 'echo ~yajo && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /var/home/yajo/.ansible/tmp `"&& mkdir /var/home/yajo/.ansible/tmp/ansible-tmp-1595871241.613532-233322-275955578192700 && echo ansible-tmp-1595871241.613532-233322-275955578192700="` echo /var/home/yajo/.ansible/tmp/ansible-tmp-1595871241.613532-233322-275955578192700 `" ) && sleep 0'
Using module file /var/home/yajo/mydevel/mando/.venv/lib64/python3.8/site-packages/ansible/modules/system/setup.py
<127.0.0.1> PUT /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmpzs16dcvo TO /var/home/yajo/.ansible/tmp/ansible-tmp-1595871241.613532-233322-275955578192700/AnsiballZ_setup.py
<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /var/home/yajo/.ansible/tmp/ansible-tmp-1595871241.613532-233322-275955578192700/ /var/home/yajo/.ansible/tmp/ansible-tmp-1595871241.613532-233322-275955578192700/AnsiballZ_setup.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '/var/home/yajo/mydevel/mando/.venv/bin/python /var/home/yajo/.ansible/tmp/ansible-tmp-1595871241.613532-233322-275955578192700/AnsiballZ_setup.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c 'rm -f -r /var/home/yajo/.ansible/tmp/ansible-tmp-1595871241.613532-233322-275955578192700/ > /dev/null 2>&1 && sleep 0'
ok: [localhost]
META: ran handlers

TASK [add ubuntu 20.04 host] *****************************************************************************************************************************************************************************************************************
task path: /var/home/yajo/mydevel/mando/test.yml:4
creating host via 'add_host': hostname=ubuntu
changed: [localhost] => {
    "add_host": {
        "groups": [],
        "host_name": "ubuntu",
        "host_vars": {
            "ansible_host": "192.168.122.207"
        }
    },
    "changed": true
}
META: ran handlers
META: ran handlers

PLAY [test] **********************************************************************************************************************************************************************************************************************************

TASK [Gathering Facts] ***********************************************************************************************************************************************************************************************************************
task path: /var/home/yajo/mydevel/mando/test.yml:9
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
<192.168.122.207> (0, b'/home/yajo\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo /home/yajo/.ansible/tmp `"&& mkdir /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409 && echo ansible-tmp-1595871243.4744594-233500-247343717635409="` echo /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409 `" ) && sleep 0'"'"''
<192.168.122.207> (0, b'ansible-tmp-1595871243.4744594-233500-247343717635409=/home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409\n', b'')
<ubuntu> Attempting python interpreter discovery
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'echo PLATFORM; uname; echo FOUND; command -v '"'"'"'"'"'"'"'"'/usr/bin/python'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python3.7'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python3.6'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python3.5'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python2.7'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python2.6'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'/usr/libexec/platform-python'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'/usr/bin/python3'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python'"'"'"'"'"'"'"'"'; echo ENDFOUND && sleep 0'"'"''
<192.168.122.207> (0, b'PLATFORM\nLinux\nFOUND\n/usr/bin/python3\nENDFOUND\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'/usr/bin/python3 && sleep 0'"'"''
<192.168.122.207> (0, b'{"platform_dist_result": [], "osrelease_content": "NAME=\\"Ubuntu\\"\\nVERSION=\\"20.04 LTS (Focal Fossa)\\"\\nID=ubuntu\\nID_LIKE=debian\\nPRETTY_NAME=\\"Ubuntu 20.04 LTS\\"\\nVERSION_ID=\\"20.04\\"\\nHOME_URL=\\"https://www.ubuntu.com/\\"\\nSUPPORT_URL=\\"https://help.ubuntu.com/\\"\\nBUG_REPORT_URL=\\"https://bugs.launchpad.net/ubuntu/\\"\\nPRIVACY_POLICY_URL=\\"https://www.ubuntu.com/legal/terms-and-policies/privacy-policy\\"\\nVERSION_CODENAME=focal\\nUBUNTU_CODENAME=focal\\n"}\n', b'')
Using module file /var/home/yajo/mydevel/mando/.venv/lib64/python3.8/site-packages/ansible/modules/system/setup.py
<192.168.122.207> PUT /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmp_waghnja TO /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409/AnsiballZ_setup.py
<192.168.122.207> SSH: EXEC sftp -b - -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 '[192.168.122.207]'
<192.168.122.207> (0, b'sftp> put /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmp_waghnja /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409/AnsiballZ_setup.py\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'chmod u+x /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409/ /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409/AnsiballZ_setup.py && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 -tt 192.168.122.207 '/bin/sh -c '"'"'/usr/bin/python3 /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409/AnsiballZ_setup.py && sleep 0'"'"''
<192.168.122.207> (0, b'\r\n{"ansible_facts": {"ansible_distribution": "Ubuntu", "ansible_distribution_release": "focal", "ansible_distribution_version": "20.04", "ansible_distribution_major_version": "20", "ansible_distribution_file_path": "/etc/os-release", "ansible_distribution_file_variety": "Debian", "ansible_distribution_file_parsed": true, "ansible_os_family": "Debian", "ansible_virtualization_role": "guest", "ansible_virtualization_type": "kvm", "ansible_hostnqn": "", "ansible_system_capabilities_enforced": "True", "ansible_system_capabilities": [""], "ansible_system": "Linux", "ansible_kernel": "5.4.0-40-generic", "ansible_kernel_version": "#44-Ubuntu SMP Tue Jun 23 00:01:04 UTC 2020", "ansible_machine": "x86_64", "ansible_python_version": "3.8.2", "ansible_fqdn": "ubuntu-vm", "ansible_hostname": "ubuntu-vm", "ansible_nodename": "ubuntu-vm", "ansible_domain": "", "ansible_userspace_bits": "64", "ansible_architecture": "x86_64", "ansible_userspace_architecture": "x86_64", "ansible_machine_id": "2006f0497950494e8baa45b0b699bf8e", "ansible_selinux": {"status": "Missing selinux Python library"}, "ansible_selinux_python_present": false, "ansible_user_id": "yajo", "ansible_user_uid": 1000, "ansible_user_gid": 1000, "ansible_user_gecos": "Jairo", "ansible_user_dir": "/home/yajo", "ansible_user_shell": "/bin/bash", "ansible_real_user_id": 1000, "ansible_effective_user_id": 1000, "ansible_real_group_id": 1000, "ansible_effective_group_id": 1000, "ansible_is_chroot": false, "ansible_ssh_host_key_dsa_public": "AAAAB3NzaC1kc3MAAACBAPLQAiRNGqpO4VdtPUqRaNFW5OxK4/Hj51mpdoCieA9duVn/XxMfFmNl1X8QAIkIAn2Ddg0UarbK9dSJV6R6C4siAzhXwiK2nB2fQaB1QGlErQK4IH76qtfrV4Z0B7vygYOh0O1L+OU8+jvholo0HUOBrt3KiwtwLrtnjbrhUltnAAAAFQCRg8PlBvDLQnjUqe9JWmi35LKCowAAAIEA3v7V5yqTsin5pHkilvxAUh5MMHtIuxn5lHU+n9Afg4YTlKcsPRN5jAFWjCUZ1KhKWk00KIid45l5HnNVhrXxfupnAq5symvW/NYsL2fMGwL1YaY/ngcVkKgCX9WsKpc28vFRMPBlUsCrOh4ZsCCB8Bdsz/VgunhUvvbrWzbPQjgAAACAVRQBq8GvS+ltCXUCfL4zqQ/cedjIcF2Gc77NcOlmKQXn0DS6lkeEUsH6OnP2MDMS7OCT0pPe5foWDA7OHgp/EISuJ3z2OlEQ8icLDoDUIRM5giVber/VMkxbbiHFspAyOPwuNnqXUcgv5GqUUVDs4+PUL/C1kyFKPu+SiAUiaFc=", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABgQDMGF9fwmOsn1SrpX8RMFY8mjg2WttSkb+oEuxL5+tCASBzC/QM5vfHIUbeho0bHZruKuWPFA2rMLqT9NJlbueskaLFMBHwz8hqAErk6TMmkO+vGxmJcVgJ29e7KZff/2kysNpREPB+MrQyUxFxYv/5lphBU33bhENM2Cvt0KtGCSYarQQk7+763VV47xt8UzegdV//j6hOhvdZuYoZYnPXlqi0Ux8s87/yLJGgZU75VQvFnj/6nmTiQ6dQINbXjVRUAkppES0xiacJg7oLNAcxqljeK+rI7/qkQbfmvO/QYvW3tD24j6KwxXVoRVTs/srwZjFltNHs7pKV9iP3LNmbQ084YID4S+tqY3nl5hc2WlmFz0tJFdmVS/ZfjIwwlf4cjB9LMyxwl76XxKCC9Wa4VfmBoObT0UDZCDmSzDZhAKbeTmNHtYis8VC5nmHKuVCZO8HUS0Kbi92nDuB98cKTsHyWzcvdpkhbBF+YG3pSnXedZJGHNMWuSeQvw66tZP0=", "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGSiUAbBken1PX6HF38W1ZQ0pH1rSo7BHJwpd/YeRwBThLcT3k8NjE3nDNqThk3sdq3pFMVblX7XedBQNjUhM90=", "ansible_ssh_host_key_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAICzWc1P5P9GV50REG0ZuwsMmtq3Jl8gP4+F2eNcR55Wl", "ansible_processor": ["0", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "1", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "2", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "3", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "4", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "5", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "6", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "7", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "8", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "9", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "10", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz", "11", "GenuineIntel", "Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz"], "ansible_processor_count": 1, "ansible_processor_cores": 6, "ansible_processor_threads_per_core": 2, "ansible_processor_vcpus": 12, "ansible_memtotal_mb": 3933, "ansible_memfree_mb": 284, "ansible_swaptotal_mb": 0, "ansible_swapfree_mb": 0, "ansible_memory_mb": {"real": {"total": 3933, "used": 3649, "free": 284}, "nocache": {"free": 2910, "used": 1023}, "swap": {"total": 0, "free": 0, "used": 0, "cached": 0}}, "ansible_bios_date": "04/01/2014", "ansible_bios_version": "1.13.0-2.fc32", "ansible_form_factor": "Other", "ansible_product_name": "Standard PC (Q35 + ICH9, 2009)", "ansible_product_serial": "NA", "ansible_product_uuid": "NA", "ansible_product_version": "pc-q35-4.2", "ansible_system_vendor": "QEMU", "ansible_devices": {"loop1": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "112528", "sectorsize": "512", "size": "54.95 MB", "host": "", "holders": []}, "loop6": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "198624", "sectorsize": "512", "size": "96.98 MB", "host": "", "holders": []}, "loop4": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "61200", "sectorsize": "512", "size": "29.88 MB", "host": "", "holders": []}, "sr0": {"virtual": 1, "links": {"ids": ["ata-QEMU_DVD-ROM_QM00005"], "uuids": ["2020-04-23-08-02-07-00"], "labels": ["Ubuntu-Server\\\\x2020.04\\\\x20LTS\\\\x20amd64"], "masters": []}, "vendor": "QEMU", "model": "QEMU DVD-ROM", "sas_address": null, "sas_device_handle": null, "removable": "1", "support_discard": "0", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "1859584", "sectorsize": "2048", "size": "908.00 MB", "host": "SATA controller: Intel Corporation 82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode] (rev 02)", "holders": []}, "loop2": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "141248", "sectorsize": "512", "size": "68.97 MB", "host": "", "holders": []}, "loop0": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "55480", "sectorsize": "512", "size": "27.09 MB", "host": "", "holders": []}, "dm-0": {"virtual": 1, "links": {"ids": ["dm-name-ubuntu--vg-ubuntu--lv", "dm-uuid-LVM-ivfMHSpY4zDspz6B76FMBXOMMTMMZdzC1fnGlAvEmlMaSKiPx4xCJace3dC9df7V"], "uuids": ["c98b3fe3-7b57-4d2a-99de-e9507a015054"], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "512", "partitions": {}, "rotational": "1", "scheduler_mode": "", "sectors": "50323456", "sectorsize": "512", "size": "24.00 GB", "host": "", "holders": []}, "loop7": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "257736", "sectorsize": "512", "size": "125.85 MB", "host": "", "holders": []}, "loop5": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "146040", "sectorsize": "512", "size": "71.31 MB", "host": "", "holders": []}, "vda": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": "0x1af4", "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "512", "partitions": {"vda2": {"links": {"ids": [], "uuids": ["76b38d87-20b2-4aae-ac3d-6447030f770b"], "labels": [], "masters": []}, "start": "4096", "sectors": "2097152", "sectorsize": 512, "size": "1.00 GB", "uuid": "76b38d87-20b2-4aae-ac3d-6447030f770b", "holders": []}, "vda3": {"links": {"ids": ["lvm-pv-uuid-7SLGmU-4Nc4-B8WY-uPAG-QbOr-m8k7-xdgRtX"], "uuids": [], "labels": [], "masters": ["dm-0"]}, "start": "2101248", "sectors": "50325504", "sectorsize": 512, "size": "24.00 GB", "uuid": null, "holders": ["ubuntu--vg-ubuntu--lv"]}, "vda1": {"links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "start": "2048", "sectors": "2048", "sectorsize": 512, "size": "1.00 MB", "uuid": null, "holders": []}}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "52428800", "sectorsize": "512", "size": "25.00 GB", "host": "SCSI storage controller: Red Hat, Inc. Virtio block device (rev 01)", "holders": []}, "loop3": {"virtual": 1, "links": {"ids": [], "uuids": [], "labels": [], "masters": []}, "vendor": null, "model": null, "sas_address": null, "sas_device_handle": null, "removable": "0", "support_discard": "4096", "partitions": {}, "rotational": "1", "scheduler_mode": "mq-deadline", "sectors": "112552", "sectorsize": "512", "size": "54.96 MB", "host": "", "holders": []}}, "ansible_device_links": {"ids": {"sr0": ["ata-QEMU_DVD-ROM_QM00005"], "dm-0": ["dm-name-ubuntu--vg-ubuntu--lv", "dm-uuid-LVM-ivfMHSpY4zDspz6B76FMBXOMMTMMZdzC1fnGlAvEmlMaSKiPx4xCJace3dC9df7V"], "vda3": ["lvm-pv-uuid-7SLGmU-4Nc4-B8WY-uPAG-QbOr-m8k7-xdgRtX"]}, "uuids": {"sr0": ["2020-04-23-08-02-07-00"], "dm-0": ["c98b3fe3-7b57-4d2a-99de-e9507a015054"], "vda2": ["76b38d87-20b2-4aae-ac3d-6447030f770b"]}, "labels": {"sr0": ["Ubuntu-Server\\\\x2020.04\\\\x20LTS\\\\x20amd64"]}, "masters": {"vda3": ["dm-0"]}}, "ansible_uptime_seconds": 22090, "ansible_mounts": [{"mount": "/", "device": "/dev/mapper/ubuntu--vg-ubuntu--lv", "fstype": "ext4", "options": "rw,relatime", "size_total": 25294094336, "size_available": 17351192576, "block_size": 4096, "block_total": 6175316, "block_available": 4236131, "block_used": 1939185, "inode_total": 1572864, "inode_available": 1328874, "inode_used": 243990, "uuid": "c98b3fe3-7b57-4d2a-99de-e9507a015054"}, {"mount": "/boot", "device": "/dev/vda2", "fstype": "ext4", "options": "rw,relatime", "size_total": 1023303680, "size_available": 746983424, "block_size": 4096, "block_total": 249830, "block_available": 182369, "block_used": 67461, "inode_total": 65536, "inode_available": 65220, "inode_used": 316, "uuid": "76b38d87-20b2-4aae-ac3d-6447030f770b"}, {"mount": "/snap/snapd/7264", "device": "/dev/loop0", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 28442624, "size_available": 0, "block_size": 131072, "block_total": 217, "block_available": 0, "block_used": 217, "inode_total": 459, "inode_available": 0, "inode_used": 459, "uuid": "N/A"}, {"mount": "/snap/core18/1705", "device": "/dev/loop1", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 57671680, "size_available": 0, "block_size": 131072, "block_total": 440, "block_available": 0, "block_used": 440, "inode_total": 10765, "inode_available": 0, "inode_used": 10765, "uuid": "N/A"}, {"mount": "/snap/lxd/14804", "device": "/dev/loop2", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 72351744, "size_available": 0, "block_size": 131072, "block_total": 552, "block_available": 0, "block_used": 552, "inode_total": 1465, "inode_available": 0, "inode_used": 1465, "uuid": "N/A"}, {"mount": "/var/lib/containers/storage/overlay", "device": "/dev/mapper/ubuntu--vg-ubuntu--lv", "fstype": "ext4", "options": "rw,relatime,bind", "uuid": "c98b3fe3-7b57-4d2a-99de-e9507a015054"}, {"mount": "/snap/core18/1880", "device": "/dev/loop3", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 57671680, "size_available": 0, "block_size": 131072, "block_total": 440, "block_available": 0, "block_used": 440, "inode_total": 10756, "inode_available": 0, "inode_used": 10756, "uuid": "N/A"}, {"mount": "/snap/snapd/8542", "device": "/dev/loop4", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 31457280, "size_available": 0, "block_size": 131072, "block_total": 240, "block_available": 0, "block_used": 240, "inode_total": 463, "inode_available": 0, "inode_used": 463, "uuid": "N/A"}, {"mount": "/snap/lxd/16100", "device": "/dev/loop5", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 74842112, "size_available": 0, "block_size": 131072, "block_total": 571, "block_available": 0, "block_used": 571, "inode_total": 1495, "inode_available": 0, "inode_used": 1495, "uuid": "N/A"}, {"mount": "/snap/core/9665", "device": "/dev/loop6", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 101711872, "size_available": 0, "block_size": 131072, "block_total": 776, "block_available": 0, "block_used": 776, "inode_total": 12862, "inode_available": 0, "inode_used": 12862, "uuid": "N/A"}, {"mount": "/snap/docker/471", "device": "/dev/loop7", "fstype": "squashfs", "options": "ro,nodev,relatime", "size_total": 131989504, "size_available": 0, "block_size": 131072, "block_total": 1007, "block_available": 0, "block_used": 1007, "inode_total": 3405, "inode_available": 0, "inode_used": 3405, "uuid": "N/A"}], "ansible_apparmor": {"status": "enabled"}, "ansible_local": {}, "ansible_cmdline": {"BOOT_IMAGE": "/vmlinuz-5.4.0-40-generic", "root": "/dev/mapper/ubuntu--vg-ubuntu--lv", "ro": true, "debian-installer/language": "es", "keyboard-configuration/layoutcode?": "es"}, "ansible_proc_cmdline": {"BOOT_IMAGE": "/vmlinuz-5.4.0-40-generic", "root": "/dev/mapper/ubuntu--vg-ubuntu--lv", "ro": true, "debian-installer/language": "es", "keyboard-configuration/layoutcode?": "es"}, "ansible_date_time": {"year": "2020", "month": "07", "weekday": "lunes", "weekday_number": "1", "weeknumber": "30", "day": "27", "hour": "17", "minute": "34", "second": "04", "epoch": "1595871244", "date": "2020-07-27", "time": "17:34:04", "iso8601_micro": "2020-07-27T17:34:04.052775Z", "iso8601": "2020-07-27T17:34:04Z", "iso8601_basic": "20200727T173404052705", "iso8601_basic_short": "20200727T173404", "tz": "UTC", "tz_offset": "+0000"}, "ansible_lsb": {"id": "Ubuntu", "description": "Ubuntu 20.04 LTS", "release": "20.04", "codename": "focal", "major_release": "20"}, "ansible_iscsi_iqn": "", "ansible_fips": false, "ansible_fibre_channel_wwn": [], "ansible_service_mgr": "systemd", "ansible_python": {"version": {"major": 3, "minor": 8, "micro": 2, "releaselevel": "final", "serial": 0}, "version_info": [3, 8, 2, "final", 0], "executable": "/usr/bin/python3", "has_sslcontext": true, "type": "cpython"}, "ansible_env": {"USER": "yajo", "SSH_CLIENT": "192.168.122.1 59472 22", "XDG_SESSION_TYPE": "tty", "SHLVL": "0", "MOTD_SHOWN": "pam", "HOME": "/home/yajo", "SSH_TTY": "/dev/pts/0", "DBUS_SESSION_BUS_ADDRESS": "unix:path=/run/user/1000/bus", "LOGNAME": "yajo", "_": "/bin/sh", "XDG_SESSION_CLASS": "user", "TERM": "xterm-256color", "XDG_SESSION_ID": "40", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games", "XDG_RUNTIME_DIR": "/run/user/1000", "LANG": "C", "SHELL": "/bin/bash", "PWD": "/home/yajo", "SSH_CONNECTION": "192.168.122.1 59472 192.168.122.207 22", "LC_ALL": "C", "LC_NUMERIC": "C"}, "ansible_dns": {"nameservers": ["127.0.0.53"], "options": {"edns0": true}}, "ansible_interfaces": ["cni-podman0", "docker0", "veth3649abf3", "enp1s0", "lo"], "ansible_lo": {"device": "lo", "mtu": 65536, "active": true, "type": "loopback", "promisc": false, "ipv4": {"address": "127.0.0.1", "broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0"}, "ipv6": [{"address": "::1", "prefix": "128", "scope": "host"}], "features": {"rx_checksumming": "on [fixed]", "tx_checksumming": "on", "tx_checksum_ipv4": "off [fixed]", "tx_checksum_ip_generic": "on [fixed]", "tx_checksum_ipv6": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "tx_checksum_sctp": "on [fixed]", "scatter_gather": "on", "tx_scatter_gather": "on [fixed]", "tx_scatter_gather_fraglist": "on [fixed]", "tcp_segmentation_offload": "on", "tx_tcp_segmentation": "on", "tx_tcp_ecn_segmentation": "on", "tx_tcp_mangleid_segmentation": "on", "tx_tcp6_segmentation": "on", "generic_segmentation_offload": "on", "generic_receive_offload": "on", "large_receive_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "tx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "receive_hashing": "off [fixed]", "highdma": "on [fixed]", "rx_vlan_filter": "off [fixed]", "vlan_challenged": "on [fixed]", "tx_lockless": "on [fixed]", "netns_local": "on [fixed]", "tx_gso_robust": "off [fixed]", "tx_fcoe_segmentation": "off [fixed]", "tx_gre_segmentation": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_ipxip4_segmentation": "off [fixed]", "tx_ipxip6_segmentation": "off [fixed]", "tx_udp_tnl_segmentation": "off [fixed]", "tx_udp_tnl_csum_segmentation": "off [fixed]", "tx_gso_partial": "off [fixed]", "tx_sctp_segmentation": "on", "tx_esp_segmentation": "off [fixed]", "tx_udp_segmentation": "off [fixed]", "fcoe_mtu": "off [fixed]", "tx_nocache_copy": "off [fixed]", "loopback": "on [fixed]", "rx_fcs": "off [fixed]", "rx_all": "off [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "l2_fwd_offload": "off [fixed]", "hw_tc_offload": "off [fixed]", "esp_hw_offload": "off [fixed]", "esp_tx_csum_hw_offload": "off [fixed]", "rx_udp_tunnel_port_offload": "off [fixed]", "tls_hw_tx_offload": "off [fixed]", "tls_hw_rx_offload": "off [fixed]", "rx_gro_hw": "off [fixed]", "tls_hw_record": "off [fixed]"}, "timestamping": ["tx_software", "rx_software", "software"], "hw_timestamp_filters": []}, "ansible_veth3649abf3": {"device": "veth3649abf3", "macaddress": "0a:30:61:40:34:1f", "mtu": 1500, "active": true, "type": "ether", "speed": 10000, "promisc": true, "ipv6": [{"address": "fe80::830:61ff:fe40:341f", "prefix": "64", "scope": "link"}], "features": {"rx_checksumming": "on", "tx_checksumming": "on", "tx_checksum_ipv4": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_checksum_ipv6": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "tx_checksum_sctp": "on", "scatter_gather": "on", "tx_scatter_gather": "on", "tx_scatter_gather_fraglist": "on", "tcp_segmentation_offload": "on", "tx_tcp_segmentation": "on", "tx_tcp_ecn_segmentation": "on", "tx_tcp_mangleid_segmentation": "on", "tx_tcp6_segmentation": "on", "generic_segmentation_offload": "on", "generic_receive_offload": "on", "large_receive_offload": "off [fixed]", "rx_vlan_offload": "on", "tx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "receive_hashing": "off [fixed]", "highdma": "on", "rx_vlan_filter": "off [fixed]", "vlan_challenged": "off [fixed]", "tx_lockless": "on [fixed]", "netns_local": "off [fixed]", "tx_gso_robust": "off [fixed]", "tx_fcoe_segmentation": "off [fixed]", "tx_gre_segmentation": "on", "tx_gre_csum_segmentation": "on", "tx_ipxip4_segmentation": "on", "tx_ipxip6_segmentation": "on", "tx_udp_tnl_segmentation": "on", "tx_udp_tnl_csum_segmentation": "on", "tx_gso_partial": "off [fixed]", "tx_sctp_segmentation": "on", "tx_esp_segmentation": "off [fixed]", "tx_udp_segmentation": "off [fixed]", "fcoe_mtu": "off [fixed]", "tx_nocache_copy": "off", "loopback": "off [fixed]", "rx_fcs": "off [fixed]", "rx_all": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "on", "rx_vlan_stag_filter": "off [fixed]", "l2_fwd_offload": "off [fixed]", "hw_tc_offload": "off [fixed]", "esp_hw_offload": "off [fixed]", "esp_tx_csum_hw_offload": "off [fixed]", "rx_udp_tunnel_port_offload": "off [fixed]", "tls_hw_tx_offload": "off [fixed]", "tls_hw_rx_offload": "off [fixed]", "rx_gro_hw": "off [fixed]", "tls_hw_record": "off [fixed]"}, "timestamping": ["tx_software", "rx_software", "software"], "hw_timestamp_filters": []}, "ansible_enp1s0": {"device": "enp1s0", "macaddress": "52:54:00:49:67:fc", "mtu": 1500, "active": true, "module": "virtio_net", "type": "ether", "pciid": "virtio0", "speed": -1, "promisc": false, "ipv4": {"address": "192.168.122.207", "broadcast": "192.168.122.255", "netmask": "255.255.255.0", "network": "192.168.122.0"}, "ipv6": [{"address": "fe80::5054:ff:fe49:67fc", "prefix": "64", "scope": "link"}], "features": {"rx_checksumming": "on [fixed]", "tx_checksumming": "on", "tx_checksum_ipv4": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_checksum_ipv6": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "tx_checksum_sctp": "off [fixed]", "scatter_gather": "on", "tx_scatter_gather": "on", "tx_scatter_gather_fraglist": "off [fixed]", "tcp_segmentation_offload": "on", "tx_tcp_segmentation": "on", "tx_tcp_ecn_segmentation": "on", "tx_tcp_mangleid_segmentation": "off", "tx_tcp6_segmentation": "on", "generic_segmentation_offload": "on", "generic_receive_offload": "on", "large_receive_offload": "off", "rx_vlan_offload": "off [fixed]", "tx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "receive_hashing": "off [fixed]", "highdma": "on [fixed]", "rx_vlan_filter": "on [fixed]", "vlan_challenged": "off [fixed]", "tx_lockless": "off [fixed]", "netns_local": "off [fixed]", "tx_gso_robust": "on [fixed]", "tx_fcoe_segmentation": "off [fixed]", "tx_gre_segmentation": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_ipxip4_segmentation": "off [fixed]", "tx_ipxip6_segmentation": "off [fixed]", "tx_udp_tnl_segmentation": "off [fixed]", "tx_udp_tnl_csum_segmentation": "off [fixed]", "tx_gso_partial": "off [fixed]", "tx_sctp_segmentation": "off [fixed]", "tx_esp_segmentation": "off [fixed]", "tx_udp_segmentation": "off [fixed]", "fcoe_mtu": "off [fixed]", "tx_nocache_copy": "off", "loopback": "off [fixed]", "rx_fcs": "off [fixed]", "rx_all": "off [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "l2_fwd_offload": "off [fixed]", "hw_tc_offload": "off [fixed]", "esp_hw_offload": "off [fixed]", "esp_tx_csum_hw_offload": "off [fixed]", "rx_udp_tunnel_port_offload": "off [fixed]", "tls_hw_tx_offload": "off [fixed]", "tls_hw_rx_offload": "off [fixed]", "rx_gro_hw": "off [fixed]", "tls_hw_record": "off [fixed]"}, "timestamping": ["tx_software", "rx_software", "software"], "hw_timestamp_filters": []}, "ansible_docker0": {"device": "docker0", "macaddress": "02:42:4f:fa:92:f2", "mtu": 1500, "active": false, "type": "bridge", "interfaces": [], "id": "8000.02424ffa92f2", "stp": false, "promisc": false, "ipv4": {"address": "172.17.0.1", "broadcast": "172.17.255.255", "netmask": "255.255.0.0", "network": "172.17.0.0"}, "ipv6": [{"address": "fe80::42:4fff:fefa:92f2", "prefix": "64", "scope": "link"}], "features": {"rx_checksumming": "off [fixed]", "tx_checksumming": "on", "tx_checksum_ipv4": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_checksum_ipv6": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "tx_checksum_sctp": "off [fixed]", "scatter_gather": "on", "tx_scatter_gather": "on", "tx_scatter_gather_fraglist": "on", "tcp_segmentation_offload": "on", "tx_tcp_segmentation": "on", "tx_tcp_ecn_segmentation": "on", "tx_tcp_mangleid_segmentation": "on", "tx_tcp6_segmentation": "on", "generic_segmentation_offload": "on", "generic_receive_offload": "on", "large_receive_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "tx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "receive_hashing": "off [fixed]", "highdma": "on", "rx_vlan_filter": "off [fixed]", "vlan_challenged": "off [fixed]", "tx_lockless": "on [fixed]", "netns_local": "on [fixed]", "tx_gso_robust": "on", "tx_fcoe_segmentation": "on", "tx_gre_segmentation": "on", "tx_gre_csum_segmentation": "on", "tx_ipxip4_segmentation": "on", "tx_ipxip6_segmentation": "on", "tx_udp_tnl_segmentation": "on", "tx_udp_tnl_csum_segmentation": "on", "tx_gso_partial": "on", "tx_sctp_segmentation": "on", "tx_esp_segmentation": "on", "tx_udp_segmentation": "on", "fcoe_mtu": "off [fixed]", "tx_nocache_copy": "off", "loopback": "off [fixed]", "rx_fcs": "off [fixed]", "rx_all": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "l2_fwd_offload": "off [fixed]", "hw_tc_offload": "off [fixed]", "esp_hw_offload": "off [fixed]", "esp_tx_csum_hw_offload": "off [fixed]", "rx_udp_tunnel_port_offload": "off [fixed]", "tls_hw_tx_offload": "off [fixed]", "tls_hw_rx_offload": "off [fixed]", "rx_gro_hw": "off [fixed]", "tls_hw_record": "off [fixed]"}, "timestamping": ["rx_software", "software"], "hw_timestamp_filters": []}, "ansible_cni_podman0": {"device": "cni-podman0", "macaddress": "9a:b5:9b:b8:4f:bb", "mtu": 1500, "active": true, "type": "bridge", "interfaces": ["veth3649abf3"], "id": "8000.9ab59bb84fbb", "stp": false, "promisc": false, "ipv4": {"address": "10.88.0.1", "broadcast": "10.88.255.255", "netmask": "255.255.0.0", "network": "10.88.0.0"}, "ipv6": [{"address": "fe80::98b5:9bff:feb8:4fbb", "prefix": "64", "scope": "link"}], "features": {"rx_checksumming": "off [fixed]", "tx_checksumming": "on", "tx_checksum_ipv4": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_checksum_ipv6": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "tx_checksum_sctp": "off [fixed]", "scatter_gather": "on", "tx_scatter_gather": "on", "tx_scatter_gather_fraglist": "on", "tcp_segmentation_offload": "on", "tx_tcp_segmentation": "on", "tx_tcp_ecn_segmentation": "on", "tx_tcp_mangleid_segmentation": "on", "tx_tcp6_segmentation": "on", "generic_segmentation_offload": "on", "generic_receive_offload": "on", "large_receive_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "tx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "receive_hashing": "off [fixed]", "highdma": "on", "rx_vlan_filter": "off [fixed]", "vlan_challenged": "off [fixed]", "tx_lockless": "on [fixed]", "netns_local": "on [fixed]", "tx_gso_robust": "off [requested on]", "tx_fcoe_segmentation": "off [requested on]", "tx_gre_segmentation": "on", "tx_gre_csum_segmentation": "on", "tx_ipxip4_segmentation": "on", "tx_ipxip6_segmentation": "on", "tx_udp_tnl_segmentation": "on", "tx_udp_tnl_csum_segmentation": "on", "tx_gso_partial": "on", "tx_sctp_segmentation": "on", "tx_esp_segmentation": "on", "tx_udp_segmentation": "on", "fcoe_mtu": "off [fixed]", "tx_nocache_copy": "off", "loopback": "off [fixed]", "rx_fcs": "off [fixed]", "rx_all": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "l2_fwd_offload": "off [fixed]", "hw_tc_offload": "off [fixed]", "esp_hw_offload": "off [fixed]", "esp_tx_csum_hw_offload": "off [fixed]", "rx_udp_tunnel_port_offload": "off [fixed]", "tls_hw_tx_offload": "off [fixed]", "tls_hw_rx_offload": "off [fixed]", "rx_gro_hw": "off [fixed]", "tls_hw_record": "off [fixed]"}, "timestamping": ["rx_software", "software"], "hw_timestamp_filters": []}, "ansible_default_ipv4": {"gateway": "192.168.122.1", "interface": "enp1s0", "address": "192.168.122.207", "broadcast": "192.168.122.255", "netmask": "255.255.255.0", "network": "192.168.122.0", "macaddress": "52:54:00:49:67:fc", "mtu": 1500, "type": "ether", "alias": "enp1s0"}, "ansible_default_ipv6": {}, "ansible_all_ipv4_addresses": ["192.168.122.207", "172.17.0.1", "10.88.0.1"], "ansible_all_ipv6_addresses": ["fe80::830:61ff:fe40:341f", "fe80::5054:ff:fe49:67fc", "fe80::42:4fff:fefa:92f2", "fe80::98b5:9bff:feb8:4fbb"], "ansible_pkg_mgr": "apt", "gather_subset": ["all"], "module_setup": true}, "invocation": {"module_args": {"gather_subset": ["all"], "gather_timeout": 10, "filter": "*", "fact_path": "/etc/ansible/facts.d"}}}\r\n', b'Shared connection to 192.168.122.207 closed.\r\n')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'rm -f -r /home/yajo/.ansible/tmp/ansible-tmp-1595871243.4744594-233500-247343717635409/ > /dev/null 2>&1 && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
ok: [ubuntu]
META: ran handlers

TASK [create pod] ****************************************************************************************************************************************************************************************************************************
task path: /var/home/yajo/mydevel/mando/test.yml:14
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
<192.168.122.207> (0, b'/home/yajo\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo /home/yajo/.ansible/tmp `"&& mkdir /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046 && echo ansible-tmp-1595871244.3467197-233518-58286554030046="` echo /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046 `" ) && sleep 0'"'"''
<192.168.122.207> (0, b'ansible-tmp-1595871244.3467197-233518-58286554030046=/home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046\n', b'')
Using module file /var/home/yajo/mydevel/mando/collections/ansible_collections/containers/podman/plugins/modules/podman_pod.py
<192.168.122.207> PUT /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmp5ffsw0z4 TO /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046/AnsiballZ_podman_pod.py
<192.168.122.207> SSH: EXEC sftp -b - -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 '[192.168.122.207]'
<192.168.122.207> (0, b'sftp> put /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmp5ffsw0z4 /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046/AnsiballZ_podman_pod.py\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'chmod u+x /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046/ /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046/AnsiballZ_podman_pod.py && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 -tt 192.168.122.207 '/bin/sh -c '"'"'/usr/bin/python3 /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046/AnsiballZ_podman_pod.py && sleep 0'"'"''
<192.168.122.207> (0, b'\r\n{"changed": true, "actions": ["created traefik_pod"], "pod": {"Id": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4", "Name": "traefik_pod", "Created": "2020-07-27T17:34:04.812033838Z", "CreateCommand": ["podman", "pod", "create", "--name", "traefik_pod", "--publish", "10080:10080", "--publish", "10443:10443"], "State": "Created", "Hostname": "traefik_pod", "CreateCgroup": false, "CgroupParent": "/libpod_parent", "CgroupPath": "/libpod_parent/e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4", "CreateInfra": false, "InfraContainerID": "457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "SharedNamespaces": ["uts", "ipc", "net"], "NumContainers": 1, "Containers": [{"Id": "457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "Name": "e3cf7ea7fc13-infra", "State": "configured"}]}, "podman_actions": ["podman pod create --name traefik_pod --publish 10080:10080 --publish 10443:10443"], "stdout": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4\\n", "stderr": "", "invocation": {"module_args": {"name": "traefik_pod", "publish": ["10080:10080", "10443:10443"], "state": "created", "recreate": false, "executable": "podman", "debug": false, "add_host": null, "cgroup_parent": null, "dns": null, "dns_opt": null, "dns_search": null, "hostname": null, "infra": null, "infra_conmon_pidfile": null, "infra_command": null, "infra_image": null, "ip": null, "label": null, "label_file": null, "mac_address": null, "network": null, "no_hosts": null, "pod_id_file": null, "share": null}}}\r\n', b'Shared connection to 192.168.122.207 closed.\r\n')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'rm -f -r /home/yajo/.ansible/tmp/ansible-tmp-1595871244.3467197-233518-58286554030046/ > /dev/null 2>&1 && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
changed: [ubuntu] => {
    "actions": [
        "created traefik_pod"
    ],
    "changed": true,
    "invocation": {
        "module_args": {
            "add_host": null,
            "cgroup_parent": null,
            "debug": false,
            "dns": null,
            "dns_opt": null,
            "dns_search": null,
            "executable": "podman",
            "hostname": null,
            "infra": null,
            "infra_command": null,
            "infra_conmon_pidfile": null,
            "infra_image": null,
            "ip": null,
            "label": null,
            "label_file": null,
            "mac_address": null,
            "name": "traefik_pod",
            "network": null,
            "no_hosts": null,
            "pod_id_file": null,
            "publish": [
                "10080:10080",
                "10443:10443"
            ],
            "recreate": false,
            "share": null,
            "state": "created"
        }
    },
    "pod": {
        "CgroupParent": "/libpod_parent",
        "CgroupPath": "/libpod_parent/e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4",
        "Containers": [
            {
                "Id": "457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
                "Name": "e3cf7ea7fc13-infra",
                "State": "configured"
            }
        ],
        "CreateCgroup": false,
        "CreateCommand": [
            "podman",
            "pod",
            "create",
            "--name",
            "traefik_pod",
            "--publish",
            "10080:10080",
            "--publish",
            "10443:10443"
        ],
        "CreateInfra": false,
        "Created": "2020-07-27T17:34:04.812033838Z",
        "Hostname": "traefik_pod",
        "Id": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4",
        "InfraContainerID": "457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
        "Name": "traefik_pod",
        "NumContainers": 1,
        "SharedNamespaces": [
            "uts",
            "ipc",
            "net"
        ],
        "State": "Created"
    },
    "podman_actions": [
        "podman pod create --name traefik_pod --publish 10080:10080 --publish 10443:10443"
    ],
    "stderr": "",
    "stderr_lines": [],
    "stdout": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4\n",
    "stdout_lines": [
        "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4"
    ]
}

TASK [start traefik container] ***************************************************************************************************************************************************************************************************************
task path: /var/home/yajo/mydevel/mando/test.yml:21
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
<192.168.122.207> (0, b'/home/yajo\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo /home/yajo/.ansible/tmp `"&& mkdir /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225 && echo ansible-tmp-1595871245.11321-233529-88604926151225="` echo /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225 `" ) && sleep 0'"'"''
<192.168.122.207> (0, b'ansible-tmp-1595871245.11321-233529-88604926151225=/home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225\n', b'')
Using module file /var/home/yajo/mydevel/mando/collections/ansible_collections/containers/podman/plugins/modules/podman_container.py
<192.168.122.207> PUT /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmp3e1j7lf0 TO /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225/AnsiballZ_podman_container.py
<192.168.122.207> SSH: EXEC sftp -b - -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 '[192.168.122.207]'
<192.168.122.207> (0, b'sftp> put /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmp3e1j7lf0 /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225/AnsiballZ_podman_container.py\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'chmod u+x /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225/ /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225/AnsiballZ_podman_container.py && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 -tt 192.168.122.207 '/bin/sh -c '"'"'/usr/bin/python3 /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225/AnsiballZ_podman_container.py && sleep 0'"'"''
<192.168.122.207> (0, b'\r\n{"changed": true, "actions": ["started traefik"], "container": {"Id": "f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593", "Created": "2020-07-27T17:34:05.730213764Z", "Path": "/entrypoint.sh", "Args": ["--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"], "State": {"OciVersion": "1.0.2-dev", "Status": "running", "Running": true, "Paused": false, "Restarting": false, "OOMKilled": false, "Dead": false, "Pid": 2679434, "ConmonPid": 2679423, "ExitCode": 0, "Error": "", "StartedAt": "2020-07-27T17:34:06.204457919Z", "FinishedAt": "0001-01-01T00:00:00Z", "Healthcheck": {"Status": "", "FailingStreak": 0, "Log": null}}, "Image": "de086c281ea7b4116c64a917309e249ae9063c663cd8e41c234bc54b88cfcd2c", "ImageName": "docker.io/library/traefik:2.2", "Rootfs": "", "Pod": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4", "ResolvConfPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/resolv.conf", "HostnamePath": "/run/user/1000/containers/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/hostname", "HostsPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/hosts", "StaticDir": "/home/yajo/.local/share/containers/storage/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata", "OCIConfigPath": "/home/yajo/.local/share/containers/storage/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/config.json", "OCIRuntime": "runc", "LogPath": "/home/yajo/.local/share/containers/storage/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/ctr.log", "LogTag": "", "ConmonPidFile": "/run/user/1000/containers/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/conmon.pid", "Name": "traefik", "RestartCount": 0, "Driver": "vfs", "MountLabel": "", "ProcessLabel": "", "AppArmorProfile": "", "EffectiveCaps": ["CAP_AUDIT_WRITE", "CAP_CHOWN", "CAP_DAC_OVERRIDE", "CAP_FOWNER", "CAP_FSETID", "CAP_KILL", "CAP_MKNOD", "CAP_NET_BIND_SERVICE", "CAP_NET_RAW", "CAP_SETFCAP", "CAP_SETGID", "CAP_SETPCAP", "CAP_SETUID", "CAP_SYS_CHROOT"], "BoundingCaps": ["CAP_AUDIT_WRITE", "CAP_CHOWN", "CAP_DAC_OVERRIDE", "CAP_FOWNER", "CAP_FSETID", "CAP_KILL", "CAP_MKNOD", "CAP_NET_BIND_SERVICE", "CAP_NET_RAW", "CAP_SETFCAP", "CAP_SETGID", "CAP_SETPCAP", "CAP_SETUID", "CAP_SYS_CHROOT"], "ExecIDs": [], "GraphDriver": {"Name": "vfs", "Data": null}, "Mounts": [], "Dependencies": ["457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e"], "NetworkSettings": {"EndpointID": "", "Gateway": "", "IPAddress": "", "IPPrefixLen": 0, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "", "Bridge": "", "SandboxID": "", "HairpinMode": false, "LinkLocalIPv6Address": "", "LinkLocalIPv6PrefixLen": 0, "Ports": {}, "SandboxKey": ""}, "ExitCommand": ["/usr/bin/podman", "--root", "/home/yajo/.local/share/containers/storage", "--runroot", "/run/user/1000/containers", "--log-level", "error", "--cgroup-manager", "cgroupfs", "--tmpdir", "/run/user/1000/libpod/tmp", "--runtime", "runc", "--storage-driver", "vfs", "--events-backend", "file", "container", "cleanup", "f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593"], "Namespace": "", "IsInfra": false, "Config": {"Hostname": "traefik_pod", "Domainname": "", "User": "", "AttachStdin": false, "AttachStdout": false, "AttachStderr": false, "Tty": false, "OpenStdin": false, "StdinOnce": false, "Env": ["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "TERM=xterm", "container=podman", "HOSTNAME=traefik_pod", "HOME=/root"], "Cmd": ["--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"], "Image": "docker.io/library/traefik:2.2", "Volumes": null, "WorkingDir": "/", "Entrypoint": "/entrypoint.sh", "OnBuild": null, "Labels": {"org.opencontainers.image.description": "A modern reverse-proxy", "org.opencontainers.image.documentation": "https://docs.traefik.io", "org.opencontainers.image.title": "Traefik", "org.opencontainers.image.url": "https://traefik.io", "org.opencontainers.image.vendor": "Containous", "org.opencontainers.image.version": "v2.2.7"}, "Annotations": {"io.container.manager": "libpod", "io.kubernetes.cri-o.ContainerType": "container", "io.kubernetes.cri-o.Created": "2020-07-27T17:34:05.730213764Z", "io.kubernetes.cri-o.SandboxID": "traefik_pod", "io.kubernetes.cri-o.TTY": "false", "io.podman.annotations.autoremove": "FALSE", "io.podman.annotations.init": "FALSE", "io.podman.annotations.privileged": "FALSE", "io.podman.annotations.publish-all": "FALSE", "org.opencontainers.image.stopSignal": "15"}, "StopSignal": 15, "CreateCommand": ["podman", "container", "run", "--name", "traefik", "--pod", "traefik_pod", "--restart=unless-stopped", "--detach=True", "docker.io/library/traefik:2.2", "--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"]}, "HostConfig": {"Binds": [], "CgroupMode": "host", "ContainerIDFile": "", "LogConfig": {"Type": "k8s-file", "Config": null}, "NetworkMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "PortBindings": {}, "RestartPolicy": {"Name": "unless-stopped", "MaximumRetryCount": 0}, "AutoRemove": false, "VolumeDriver": "", "VolumesFrom": null, "CapAdd": [], "CapDrop": [], "Dns": [], "DnsOptions": [], "DnsSearch": [], "ExtraHosts": [], "GroupAdd": [], "IpcMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "Cgroup": "", "Cgroups": "default", "Links": null, "OomScoreAdj": 0, "PidMode": "private", "Privileged": false, "PublishAllPorts": false, "ReadonlyRootfs": false, "SecurityOpt": [], "Tmpfs": {}, "UTSMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "UsernsMode": "", "ShmSize": 65536000, "Runtime": "oci", "ConsoleSize": [0, 0], "Isolation": "", "CpuShares": 0, "Memory": 0, "NanoCpus": 0, "CgroupParent": "/libpod_parent/e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4", "BlkioWeight": 0, "BlkioWeightDevice": null, "BlkioDeviceReadBps": null, "BlkioDeviceWriteBps": null, "BlkioDeviceReadIOps": null, "BlkioDeviceWriteIOps": null, "CpuPeriod": 0, "CpuQuota": 0, "CpuRealtimePeriod": 0, "CpuRealtimeRuntime": 0, "CpusetCpus": "", "CpusetMems": "", "Devices": [], "DiskQuota": 0, "KernelMemory": 0, "MemoryReservation": 0, "MemorySwap": 0, "MemorySwappiness": 0, "OomKillDisable": false, "PidsLimit": 0, "Ulimits": [], "CpuCount": 0, "CpuPercent": 0, "IOMaximumIOps": 0, "IOMaximumBandwidth": 0}}, "podman_actions": ["podman run --name traefik --pod traefik_pod --restart=unless-stopped --detach=True docker.io/library/traefik:2.2 --entryPoints.web-insecure.address=:10080 --entryPoints.web-main.address=:10443 --entryPoints.web-main.http.tls=true --log.level=DEBUG --providers.file.directory=/etc/traefik/dynamic --providers.file.watch=true"], "stdout": "f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593\\n", "stderr": "", "invocation": {"module_args": {"image": "docker.io/library/traefik:2.2", "name": "traefik", "pod": "traefik_pod", "restart_policy": "unless-stopped", "state": "started", "command": ["--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"], "executable": "podman", "detach": true, "debug": false, "force_restart": false, "image_strict": false, "recreate": false, "annotation": null, "authfile": null, "blkio_weight": null, "blkio_weight_device": null, "cap_add": null, "cap_drop": null, "cgroup_parent": null, "cgroupns": null, "cgroups": null, "cidfile": null, "cmd_args": null, "conmon_pidfile": null, "cpu_period": null, "cpu_rt_period": null, "cpu_rt_runtime": null, "cpu_shares": null, "cpus": null, "cpuset_cpus": null, "cpuset_mems": null, "detach_keys": null, "device": null, "device_read_bps": null, "device_read_iops": null, "device_write_bps": null, "device_write_iops": null, "dns": null, "dns_option": null, "dns_search": null, "entrypoint": null, "env": null, "env_file": null, "env_host": null, "etc_hosts": null, "expose": null, "gidmap": null, "group_add": null, "healthcheck": null, "healthcheck_interval": null, "healthcheck_retries": null, "healthcheck_start_period": null, "healthcheck_timeout": null, "hostname": null, "http_proxy": null, "image_volume": null, "init": null, "init_path": null, "interactive": null, "ip": null, "ipc": null, "kernel_memory": null, "label": null, "label_file": null, "log_driver": null, "log_opt": null, "memory": null, "memory_reservation": null, "memory_swap": null, "memory_swappiness": null, "mount": null, "network": null, "no_hosts": null, "oom_kill_disable": null, "oom_score_adj": null, "pid": null, "pids_limit": null, "privileged": null, "publish": null, "publish_all": null, "read_only": null, "read_only_tmpfs": null, "rm": null, "rootfs": null, "security_opt": null, "shm_size": null, "sig_proxy": null, "stop_signal": null, "stop_timeout": null, "subgidname": null, "subuidname": null, "sysctl": null, "systemd": null, "tmpfs": null, "tty": null, "uidmap": null, "ulimit": null, "user": null, "userns": null, "uts": null, "volume": null, "volumes_from": null, "workdir": null}}}\r\n', b'Shared connection to 192.168.122.207 closed.\r\n')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'rm -f -r /home/yajo/.ansible/tmp/ansible-tmp-1595871245.11321-233529-88604926151225/ > /dev/null 2>&1 && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
changed: [ubuntu] => {
    "actions": [
        "started traefik"
    ],
    "changed": true,
    "container": {
        "AppArmorProfile": "",
        "Args": [
            "--entryPoints.web-insecure.address=:10080",
            "--entryPoints.web-main.address=:10443",
            "--entryPoints.web-main.http.tls=true",
            "--log.level=DEBUG",
            "--providers.file.directory=/etc/traefik/dynamic",
            "--providers.file.watch=true"
        ],
        "BoundingCaps": [
            "CAP_AUDIT_WRITE",
            "CAP_CHOWN",
            "CAP_DAC_OVERRIDE",
            "CAP_FOWNER",
            "CAP_FSETID",
            "CAP_KILL",
            "CAP_MKNOD",
            "CAP_NET_BIND_SERVICE",
            "CAP_NET_RAW",
            "CAP_SETFCAP",
            "CAP_SETGID",
            "CAP_SETPCAP",
            "CAP_SETUID",
            "CAP_SYS_CHROOT"
        ],
        "Config": {
            "Annotations": {
                "io.container.manager": "libpod",
                "io.kubernetes.cri-o.ContainerType": "container",
                "io.kubernetes.cri-o.Created": "2020-07-27T17:34:05.730213764Z",
                "io.kubernetes.cri-o.SandboxID": "traefik_pod",
                "io.kubernetes.cri-o.TTY": "false",
                "io.podman.annotations.autoremove": "FALSE",
                "io.podman.annotations.init": "FALSE",
                "io.podman.annotations.privileged": "FALSE",
                "io.podman.annotations.publish-all": "FALSE",
                "org.opencontainers.image.stopSignal": "15"
            },
            "AttachStderr": false,
            "AttachStdin": false,
            "AttachStdout": false,
            "Cmd": [
                "--entryPoints.web-insecure.address=:10080",
                "--entryPoints.web-main.address=:10443",
                "--entryPoints.web-main.http.tls=true",
                "--log.level=DEBUG",
                "--providers.file.directory=/etc/traefik/dynamic",
                "--providers.file.watch=true"
            ],
            "CreateCommand": [
                "podman",
                "container",
                "run",
                "--name",
                "traefik",
                "--pod",
                "traefik_pod",
                "--restart=unless-stopped",
                "--detach=True",
                "docker.io/library/traefik:2.2",
                "--entryPoints.web-insecure.address=:10080",
                "--entryPoints.web-main.address=:10443",
                "--entryPoints.web-main.http.tls=true",
                "--log.level=DEBUG",
                "--providers.file.directory=/etc/traefik/dynamic",
                "--providers.file.watch=true"
            ],
            "Domainname": "",
            "Entrypoint": "/entrypoint.sh",
            "Env": [
                "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
                "TERM=xterm",
                "container=podman",
                "HOSTNAME=traefik_pod",
                "HOME=/root"
            ],
            "Hostname": "traefik_pod",
            "Image": "docker.io/library/traefik:2.2",
            "Labels": {
                "org.opencontainers.image.description": "A modern reverse-proxy",
                "org.opencontainers.image.documentation": "https://docs.traefik.io",
                "org.opencontainers.image.title": "Traefik",
                "org.opencontainers.image.url": "https://traefik.io",
                "org.opencontainers.image.vendor": "Containous",
                "org.opencontainers.image.version": "v2.2.7"
            },
            "OnBuild": null,
            "OpenStdin": false,
            "StdinOnce": false,
            "StopSignal": 15,
            "Tty": false,
            "User": "",
            "Volumes": null,
            "WorkingDir": "/"
        },
        "ConmonPidFile": "/run/user/1000/containers/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/conmon.pid",
        "Created": "2020-07-27T17:34:05.730213764Z",
        "Dependencies": [
            "457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e"
        ],
        "Driver": "vfs",
        "EffectiveCaps": [
            "CAP_AUDIT_WRITE",
            "CAP_CHOWN",
            "CAP_DAC_OVERRIDE",
            "CAP_FOWNER",
            "CAP_FSETID",
            "CAP_KILL",
            "CAP_MKNOD",
            "CAP_NET_BIND_SERVICE",
            "CAP_NET_RAW",
            "CAP_SETFCAP",
            "CAP_SETGID",
            "CAP_SETPCAP",
            "CAP_SETUID",
            "CAP_SYS_CHROOT"
        ],
        "ExecIDs": [],
        "ExitCommand": [
            "/usr/bin/podman",
            "--root",
            "/home/yajo/.local/share/containers/storage",
            "--runroot",
            "/run/user/1000/containers",
            "--log-level",
            "error",
            "--cgroup-manager",
            "cgroupfs",
            "--tmpdir",
            "/run/user/1000/libpod/tmp",
            "--runtime",
            "runc",
            "--storage-driver",
            "vfs",
            "--events-backend",
            "file",
            "container",
            "cleanup",
            "f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593"
        ],
        "GraphDriver": {
            "Data": null,
            "Name": "vfs"
        },
        "HostConfig": {
            "AutoRemove": false,
            "Binds": [],
            "BlkioDeviceReadBps": null,
            "BlkioDeviceReadIOps": null,
            "BlkioDeviceWriteBps": null,
            "BlkioDeviceWriteIOps": null,
            "BlkioWeight": 0,
            "BlkioWeightDevice": null,
            "CapAdd": [],
            "CapDrop": [],
            "Cgroup": "",
            "CgroupMode": "host",
            "CgroupParent": "/libpod_parent/e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4",
            "Cgroups": "default",
            "ConsoleSize": [
                0,
                0
            ],
            "ContainerIDFile": "",
            "CpuCount": 0,
            "CpuPercent": 0,
            "CpuPeriod": 0,
            "CpuQuota": 0,
            "CpuRealtimePeriod": 0,
            "CpuRealtimeRuntime": 0,
            "CpuShares": 0,
            "CpusetCpus": "",
            "CpusetMems": "",
            "Devices": [],
            "DiskQuota": 0,
            "Dns": [],
            "DnsOptions": [],
            "DnsSearch": [],
            "ExtraHosts": [],
            "GroupAdd": [],
            "IOMaximumBandwidth": 0,
            "IOMaximumIOps": 0,
            "IpcMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
            "Isolation": "",
            "KernelMemory": 0,
            "Links": null,
            "LogConfig": {
                "Config": null,
                "Type": "k8s-file"
            },
            "Memory": 0,
            "MemoryReservation": 0,
            "MemorySwap": 0,
            "MemorySwappiness": 0,
            "NanoCpus": 0,
            "NetworkMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
            "OomKillDisable": false,
            "OomScoreAdj": 0,
            "PidMode": "private",
            "PidsLimit": 0,
            "PortBindings": {},
            "Privileged": false,
            "PublishAllPorts": false,
            "ReadonlyRootfs": false,
            "RestartPolicy": {
                "MaximumRetryCount": 0,
                "Name": "unless-stopped"
            },
            "Runtime": "oci",
            "SecurityOpt": [],
            "ShmSize": 65536000,
            "Tmpfs": {},
            "UTSMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
            "Ulimits": [],
            "UsernsMode": "",
            "VolumeDriver": "",
            "VolumesFrom": null
        },
        "HostnamePath": "/run/user/1000/containers/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/hostname",
        "HostsPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/hosts",
        "Id": "f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593",
        "Image": "de086c281ea7b4116c64a917309e249ae9063c663cd8e41c234bc54b88cfcd2c",
        "ImageName": "docker.io/library/traefik:2.2",
        "IsInfra": false,
        "LogPath": "/home/yajo/.local/share/containers/storage/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/ctr.log",
        "LogTag": "",
        "MountLabel": "",
        "Mounts": [],
        "Name": "traefik",
        "Namespace": "",
        "NetworkSettings": {
            "Bridge": "",
            "EndpointID": "",
            "Gateway": "",
            "GlobalIPv6Address": "",
            "GlobalIPv6PrefixLen": 0,
            "HairpinMode": false,
            "IPAddress": "",
            "IPPrefixLen": 0,
            "IPv6Gateway": "",
            "LinkLocalIPv6Address": "",
            "LinkLocalIPv6PrefixLen": 0,
            "MacAddress": "",
            "Ports": {},
            "SandboxID": "",
            "SandboxKey": ""
        },
        "OCIConfigPath": "/home/yajo/.local/share/containers/storage/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata/config.json",
        "OCIRuntime": "runc",
        "Path": "/entrypoint.sh",
        "Pod": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4",
        "ProcessLabel": "",
        "ResolvConfPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/resolv.conf",
        "RestartCount": 0,
        "Rootfs": "",
        "State": {
            "ConmonPid": 2679423,
            "Dead": false,
            "Error": "",
            "ExitCode": 0,
            "FinishedAt": "0001-01-01T00:00:00Z",
            "Healthcheck": {
                "FailingStreak": 0,
                "Log": null,
                "Status": ""
            },
            "OOMKilled": false,
            "OciVersion": "1.0.2-dev",
            "Paused": false,
            "Pid": 2679434,
            "Restarting": false,
            "Running": true,
            "StartedAt": "2020-07-27T17:34:06.204457919Z",
            "Status": "running"
        },
        "StaticDir": "/home/yajo/.local/share/containers/storage/vfs-containers/f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593/userdata"
    },
    "invocation": {
        "module_args": {
            "annotation": null,
            "authfile": null,
            "blkio_weight": null,
            "blkio_weight_device": null,
            "cap_add": null,
            "cap_drop": null,
            "cgroup_parent": null,
            "cgroupns": null,
            "cgroups": null,
            "cidfile": null,
            "cmd_args": null,
            "command": [
                "--entryPoints.web-insecure.address=:10080",
                "--entryPoints.web-main.address=:10443",
                "--entryPoints.web-main.http.tls=true",
                "--log.level=DEBUG",
                "--providers.file.directory=/etc/traefik/dynamic",
                "--providers.file.watch=true"
            ],
            "conmon_pidfile": null,
            "cpu_period": null,
            "cpu_rt_period": null,
            "cpu_rt_runtime": null,
            "cpu_shares": null,
            "cpus": null,
            "cpuset_cpus": null,
            "cpuset_mems": null,
            "debug": false,
            "detach": true,
            "detach_keys": null,
            "device": null,
            "device_read_bps": null,
            "device_read_iops": null,
            "device_write_bps": null,
            "device_write_iops": null,
            "dns": null,
            "dns_option": null,
            "dns_search": null,
            "entrypoint": null,
            "env": null,
            "env_file": null,
            "env_host": null,
            "etc_hosts": null,
            "executable": "podman",
            "expose": null,
            "force_restart": false,
            "gidmap": null,
            "group_add": null,
            "healthcheck": null,
            "healthcheck_interval": null,
            "healthcheck_retries": null,
            "healthcheck_start_period": null,
            "healthcheck_timeout": null,
            "hostname": null,
            "http_proxy": null,
            "image": "docker.io/library/traefik:2.2",
            "image_strict": false,
            "image_volume": null,
            "init": null,
            "init_path": null,
            "interactive": null,
            "ip": null,
            "ipc": null,
            "kernel_memory": null,
            "label": null,
            "label_file": null,
            "log_driver": null,
            "log_opt": null,
            "memory": null,
            "memory_reservation": null,
            "memory_swap": null,
            "memory_swappiness": null,
            "mount": null,
            "name": "traefik",
            "network": null,
            "no_hosts": null,
            "oom_kill_disable": null,
            "oom_score_adj": null,
            "pid": null,
            "pids_limit": null,
            "pod": "traefik_pod",
            "privileged": null,
            "publish": null,
            "publish_all": null,
            "read_only": null,
            "read_only_tmpfs": null,
            "recreate": false,
            "restart_policy": "unless-stopped",
            "rm": null,
            "rootfs": null,
            "security_opt": null,
            "shm_size": null,
            "sig_proxy": null,
            "state": "started",
            "stop_signal": null,
            "stop_timeout": null,
            "subgidname": null,
            "subuidname": null,
            "sysctl": null,
            "systemd": null,
            "tmpfs": null,
            "tty": null,
            "uidmap": null,
            "ulimit": null,
            "user": null,
            "userns": null,
            "uts": null,
            "volume": null,
            "volumes_from": null,
            "workdir": null
        }
    },
    "podman_actions": [
        "podman run --name traefik --pod traefik_pod --restart=unless-stopped --detach=True docker.io/library/traefik:2.2 --entryPoints.web-insecure.address=:10080 --entryPoints.web-main.address=:10443 --entryPoints.web-main.http.tls=true --log.level=DEBUG --providers.file.directory=/etc/traefik/dynamic --providers.file.watch=true"
    ],
    "stderr": "",
    "stderr_lines": [],
    "stdout": "f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593\n",
    "stdout_lines": [
        "f5a17ec553290e62f4e710cd6d82d3bff39d0222384cd9c8f76628cc236f9593"
    ]
}

TASK [start traefik container] ***************************************************************************************************************************************************************************************************************
task path: /var/home/yajo/mydevel/mando/test.yml:21
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
<192.168.122.207> (0, b'/home/yajo\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo /home/yajo/.ansible/tmp `"&& mkdir /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161 && echo ansible-tmp-1595871246.4554574-233540-116677988209161="` echo /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161 `" ) && sleep 0'"'"''
<192.168.122.207> (0, b'ansible-tmp-1595871246.4554574-233540-116677988209161=/home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161\n', b'')
Using module file /var/home/yajo/mydevel/mando/collections/ansible_collections/containers/podman/plugins/modules/podman_container.py
<192.168.122.207> PUT /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmpgkv4lze4 TO /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161/AnsiballZ_podman_container.py
<192.168.122.207> SSH: EXEC sftp -b - -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 '[192.168.122.207]'
<192.168.122.207> (0, b'sftp> put /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmpgkv4lze4 /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161/AnsiballZ_podman_container.py\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'chmod u+x /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161/ /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161/AnsiballZ_podman_container.py && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 -tt 192.168.122.207 '/bin/sh -c '"'"'/usr/bin/python3 /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161/AnsiballZ_podman_container.py && sleep 0'"'"''
<192.168.122.207> (0, b'\r\n{"changed": true, "actions": ["recreated traefik"], "container": {"Id": "c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2", "Created": "2020-07-27T17:34:08.605345361Z", "Path": "/entrypoint.sh", "Args": ["--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"], "State": {"OciVersion": "1.0.2-dev", "Status": "running", "Running": true, "Paused": false, "Restarting": false, "OOMKilled": false, "Dead": false, "Pid": 2680365, "ConmonPid": 2680346, "ExitCode": 0, "Error": "", "StartedAt": "2020-07-27T17:34:08.924438142Z", "FinishedAt": "0001-01-01T00:00:00Z", "Healthcheck": {"Status": "", "FailingStreak": 0, "Log": null}}, "Image": "de086c281ea7b4116c64a917309e249ae9063c663cd8e41c234bc54b88cfcd2c", "ImageName": "docker.io/library/traefik:2.2", "Rootfs": "", "Pod": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4", "ResolvConfPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/resolv.conf", "HostnamePath": "/run/user/1000/containers/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/hostname", "HostsPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/hosts", "StaticDir": "/home/yajo/.local/share/containers/storage/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata", "OCIConfigPath": "/home/yajo/.local/share/containers/storage/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/config.json", "OCIRuntime": "runc", "LogPath": "/home/yajo/.local/share/containers/storage/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/ctr.log", "LogTag": "", "ConmonPidFile": "/run/user/1000/containers/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/conmon.pid", "Name": "traefik", "RestartCount": 0, "Driver": "vfs", "MountLabel": "", "ProcessLabel": "", "AppArmorProfile": "", "EffectiveCaps": ["CAP_AUDIT_WRITE", "CAP_CHOWN", "CAP_DAC_OVERRIDE", "CAP_FOWNER", "CAP_FSETID", "CAP_KILL", "CAP_MKNOD", "CAP_NET_BIND_SERVICE", "CAP_NET_RAW", "CAP_SETFCAP", "CAP_SETGID", "CAP_SETPCAP", "CAP_SETUID", "CAP_SYS_CHROOT"], "BoundingCaps": ["CAP_AUDIT_WRITE", "CAP_CHOWN", "CAP_DAC_OVERRIDE", "CAP_FOWNER", "CAP_FSETID", "CAP_KILL", "CAP_MKNOD", "CAP_NET_BIND_SERVICE", "CAP_NET_RAW", "CAP_SETFCAP", "CAP_SETGID", "CAP_SETPCAP", "CAP_SETUID", "CAP_SYS_CHROOT"], "ExecIDs": [], "GraphDriver": {"Name": "vfs", "Data": null}, "Mounts": [], "Dependencies": ["457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e"], "NetworkSettings": {"EndpointID": "", "Gateway": "", "IPAddress": "", "IPPrefixLen": 0, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "", "Bridge": "", "SandboxID": "", "HairpinMode": false, "LinkLocalIPv6Address": "", "LinkLocalIPv6PrefixLen": 0, "Ports": {}, "SandboxKey": ""}, "ExitCommand": ["/usr/bin/podman", "--root", "/home/yajo/.local/share/containers/storage", "--runroot", "/run/user/1000/containers", "--log-level", "error", "--cgroup-manager", "cgroupfs", "--tmpdir", "/run/user/1000/libpod/tmp", "--runtime", "runc", "--storage-driver", "vfs", "--events-backend", "file", "container", "cleanup", "c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2"], "Namespace": "", "IsInfra": false, "Config": {"Hostname": "traefik_pod", "Domainname": "", "User": "", "AttachStdin": false, "AttachStdout": false, "AttachStderr": false, "Tty": false, "OpenStdin": false, "StdinOnce": false, "Env": ["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "TERM=xterm", "container=podman", "HOSTNAME=traefik_pod", "HOME=/root"], "Cmd": ["--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"], "Image": "docker.io/library/traefik:2.2", "Volumes": null, "WorkingDir": "/", "Entrypoint": "/entrypoint.sh", "OnBuild": null, "Labels": {"org.opencontainers.image.description": "A modern reverse-proxy", "org.opencontainers.image.documentation": "https://docs.traefik.io", "org.opencontainers.image.title": "Traefik", "org.opencontainers.image.url": "https://traefik.io", "org.opencontainers.image.vendor": "Containous", "org.opencontainers.image.version": "v2.2.7"}, "Annotations": {"io.container.manager": "libpod", "io.kubernetes.cri-o.ContainerType": "container", "io.kubernetes.cri-o.Created": "2020-07-27T17:34:08.605345361Z", "io.kubernetes.cri-o.SandboxID": "traefik_pod", "io.kubernetes.cri-o.TTY": "false", "io.podman.annotations.autoremove": "FALSE", "io.podman.annotations.init": "FALSE", "io.podman.annotations.privileged": "FALSE", "io.podman.annotations.publish-all": "FALSE", "org.opencontainers.image.stopSignal": "15"}, "StopSignal": 15, "CreateCommand": ["podman", "container", "run", "--name", "traefik", "--pod", "traefik_pod", "--restart=unless-stopped", "--detach=True", "docker.io/library/traefik:2.2", "--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"]}, "HostConfig": {"Binds": [], "CgroupMode": "host", "ContainerIDFile": "", "LogConfig": {"Type": "k8s-file", "Config": null}, "NetworkMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "PortBindings": {}, "RestartPolicy": {"Name": "unless-stopped", "MaximumRetryCount": 0}, "AutoRemove": false, "VolumeDriver": "", "VolumesFrom": null, "CapAdd": [], "CapDrop": [], "Dns": [], "DnsOptions": [], "DnsSearch": [], "ExtraHosts": [], "GroupAdd": [], "IpcMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "Cgroup": "", "Cgroups": "default", "Links": null, "OomScoreAdj": 0, "PidMode": "private", "Privileged": false, "PublishAllPorts": false, "ReadonlyRootfs": false, "SecurityOpt": [], "Tmpfs": {}, "UTSMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e", "UsernsMode": "", "ShmSize": 65536000, "Runtime": "oci", "ConsoleSize": [0, 0], "Isolation": "", "CpuShares": 0, "Memory": 0, "NanoCpus": 0, "CgroupParent": "/libpod_parent/e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4", "BlkioWeight": 0, "BlkioWeightDevice": null, "BlkioDeviceReadBps": null, "BlkioDeviceWriteBps": null, "BlkioDeviceReadIOps": null, "BlkioDeviceWriteIOps": null, "CpuPeriod": 0, "CpuQuota": 0, "CpuRealtimePeriod": 0, "CpuRealtimeRuntime": 0, "CpusetCpus": "", "CpusetMems": "", "Devices": [], "DiskQuota": 0, "KernelMemory": 0, "MemoryReservation": 0, "MemorySwap": 0, "MemorySwappiness": 0, "OomKillDisable": false, "PidsLimit": 0, "Ulimits": [], "CpuCount": 0, "CpuPercent": 0, "IOMaximumIOps": 0, "IOMaximumBandwidth": 0}}, "podman_actions": ["podman rm -f traefik", "podman run --name traefik --pod traefik_pod --restart=unless-stopped --detach=True docker.io/library/traefik:2.2 --entryPoints.web-insecure.address=:10080 --entryPoints.web-main.address=:10443 --entryPoints.web-main.http.tls=true --log.level=DEBUG --providers.file.directory=/etc/traefik/dynamic --providers.file.watch=true"], "stdout": "c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2\\n", "stderr": "", "invocation": {"module_args": {"image": "docker.io/library/traefik:2.2", "name": "traefik", "pod": "traefik_pod", "restart_policy": "unless-stopped", "state": "started", "command": ["--entryPoints.web-insecure.address=:10080", "--entryPoints.web-main.address=:10443", "--entryPoints.web-main.http.tls=true", "--log.level=DEBUG", "--providers.file.directory=/etc/traefik/dynamic", "--providers.file.watch=true"], "executable": "podman", "detach": true, "debug": false, "force_restart": false, "image_strict": false, "recreate": false, "annotation": null, "authfile": null, "blkio_weight": null, "blkio_weight_device": null, "cap_add": null, "cap_drop": null, "cgroup_parent": null, "cgroupns": null, "cgroups": null, "cidfile": null, "cmd_args": null, "conmon_pidfile": null, "cpu_period": null, "cpu_rt_period": null, "cpu_rt_runtime": null, "cpu_shares": null, "cpus": null, "cpuset_cpus": null, "cpuset_mems": null, "detach_keys": null, "device": null, "device_read_bps": null, "device_read_iops": null, "device_write_bps": null, "device_write_iops": null, "dns": null, "dns_option": null, "dns_search": null, "entrypoint": null, "env": null, "env_file": null, "env_host": null, "etc_hosts": null, "expose": null, "gidmap": null, "group_add": null, "healthcheck": null, "healthcheck_interval": null, "healthcheck_retries": null, "healthcheck_start_period": null, "healthcheck_timeout": null, "hostname": null, "http_proxy": null, "image_volume": null, "init": null, "init_path": null, "interactive": null, "ip": null, "ipc": null, "kernel_memory": null, "label": null, "label_file": null, "log_driver": null, "log_opt": null, "memory": null, "memory_reservation": null, "memory_swap": null, "memory_swappiness": null, "mount": null, "network": null, "no_hosts": null, "oom_kill_disable": null, "oom_score_adj": null, "pid": null, "pids_limit": null, "privileged": null, "publish": null, "publish_all": null, "read_only": null, "read_only_tmpfs": null, "rm": null, "rootfs": null, "security_opt": null, "shm_size": null, "sig_proxy": null, "stop_signal": null, "stop_timeout": null, "subgidname": null, "subuidname": null, "sysctl": null, "systemd": null, "tmpfs": null, "tty": null, "uidmap": null, "ulimit": null, "user": null, "userns": null, "uts": null, "volume": null, "volumes_from": null, "workdir": null}}}\r\n', b'Shared connection to 192.168.122.207 closed.\r\n')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'rm -f -r /home/yajo/.ansible/tmp/ansible-tmp-1595871246.4554574-233540-116677988209161/ > /dev/null 2>&1 && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
changed: [ubuntu] => {
    "actions": [
        "recreated traefik"
    ],
    "changed": true,
    "container": {
        "AppArmorProfile": "",
        "Args": [
            "--entryPoints.web-insecure.address=:10080",
            "--entryPoints.web-main.address=:10443",
            "--entryPoints.web-main.http.tls=true",
            "--log.level=DEBUG",
            "--providers.file.directory=/etc/traefik/dynamic",
            "--providers.file.watch=true"
        ],
        "BoundingCaps": [
            "CAP_AUDIT_WRITE",
            "CAP_CHOWN",
            "CAP_DAC_OVERRIDE",
            "CAP_FOWNER",
            "CAP_FSETID",
            "CAP_KILL",
            "CAP_MKNOD",
            "CAP_NET_BIND_SERVICE",
            "CAP_NET_RAW",
            "CAP_SETFCAP",
            "CAP_SETGID",
            "CAP_SETPCAP",
            "CAP_SETUID",
            "CAP_SYS_CHROOT"
        ],
        "Config": {
            "Annotations": {
                "io.container.manager": "libpod",
                "io.kubernetes.cri-o.ContainerType": "container",
                "io.kubernetes.cri-o.Created": "2020-07-27T17:34:08.605345361Z",
                "io.kubernetes.cri-o.SandboxID": "traefik_pod",
                "io.kubernetes.cri-o.TTY": "false",
                "io.podman.annotations.autoremove": "FALSE",
                "io.podman.annotations.init": "FALSE",
                "io.podman.annotations.privileged": "FALSE",
                "io.podman.annotations.publish-all": "FALSE",
                "org.opencontainers.image.stopSignal": "15"
            },
            "AttachStderr": false,
            "AttachStdin": false,
            "AttachStdout": false,
            "Cmd": [
                "--entryPoints.web-insecure.address=:10080",
                "--entryPoints.web-main.address=:10443",
                "--entryPoints.web-main.http.tls=true",
                "--log.level=DEBUG",
                "--providers.file.directory=/etc/traefik/dynamic",
                "--providers.file.watch=true"
            ],
            "CreateCommand": [
                "podman",
                "container",
                "run",
                "--name",
                "traefik",
                "--pod",
                "traefik_pod",
                "--restart=unless-stopped",
                "--detach=True",
                "docker.io/library/traefik:2.2",
                "--entryPoints.web-insecure.address=:10080",
                "--entryPoints.web-main.address=:10443",
                "--entryPoints.web-main.http.tls=true",
                "--log.level=DEBUG",
                "--providers.file.directory=/etc/traefik/dynamic",
                "--providers.file.watch=true"
            ],
            "Domainname": "",
            "Entrypoint": "/entrypoint.sh",
            "Env": [
                "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
                "TERM=xterm",
                "container=podman",
                "HOSTNAME=traefik_pod",
                "HOME=/root"
            ],
            "Hostname": "traefik_pod",
            "Image": "docker.io/library/traefik:2.2",
            "Labels": {
                "org.opencontainers.image.description": "A modern reverse-proxy",
                "org.opencontainers.image.documentation": "https://docs.traefik.io",
                "org.opencontainers.image.title": "Traefik",
                "org.opencontainers.image.url": "https://traefik.io",
                "org.opencontainers.image.vendor": "Containous",
                "org.opencontainers.image.version": "v2.2.7"
            },
            "OnBuild": null,
            "OpenStdin": false,
            "StdinOnce": false,
            "StopSignal": 15,
            "Tty": false,
            "User": "",
            "Volumes": null,
            "WorkingDir": "/"
        },
        "ConmonPidFile": "/run/user/1000/containers/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/conmon.pid",
        "Created": "2020-07-27T17:34:08.605345361Z",
        "Dependencies": [
            "457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e"
        ],
        "Driver": "vfs",
        "EffectiveCaps": [
            "CAP_AUDIT_WRITE",
            "CAP_CHOWN",
            "CAP_DAC_OVERRIDE",
            "CAP_FOWNER",
            "CAP_FSETID",
            "CAP_KILL",
            "CAP_MKNOD",
            "CAP_NET_BIND_SERVICE",
            "CAP_NET_RAW",
            "CAP_SETFCAP",
            "CAP_SETGID",
            "CAP_SETPCAP",
            "CAP_SETUID",
            "CAP_SYS_CHROOT"
        ],
        "ExecIDs": [],
        "ExitCommand": [
            "/usr/bin/podman",
            "--root",
            "/home/yajo/.local/share/containers/storage",
            "--runroot",
            "/run/user/1000/containers",
            "--log-level",
            "error",
            "--cgroup-manager",
            "cgroupfs",
            "--tmpdir",
            "/run/user/1000/libpod/tmp",
            "--runtime",
            "runc",
            "--storage-driver",
            "vfs",
            "--events-backend",
            "file",
            "container",
            "cleanup",
            "c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2"
        ],
        "GraphDriver": {
            "Data": null,
            "Name": "vfs"
        },
        "HostConfig": {
            "AutoRemove": false,
            "Binds": [],
            "BlkioDeviceReadBps": null,
            "BlkioDeviceReadIOps": null,
            "BlkioDeviceWriteBps": null,
            "BlkioDeviceWriteIOps": null,
            "BlkioWeight": 0,
            "BlkioWeightDevice": null,
            "CapAdd": [],
            "CapDrop": [],
            "Cgroup": "",
            "CgroupMode": "host",
            "CgroupParent": "/libpod_parent/e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4",
            "Cgroups": "default",
            "ConsoleSize": [
                0,
                0
            ],
            "ContainerIDFile": "",
            "CpuCount": 0,
            "CpuPercent": 0,
            "CpuPeriod": 0,
            "CpuQuota": 0,
            "CpuRealtimePeriod": 0,
            "CpuRealtimeRuntime": 0,
            "CpuShares": 0,
            "CpusetCpus": "",
            "CpusetMems": "",
            "Devices": [],
            "DiskQuota": 0,
            "Dns": [],
            "DnsOptions": [],
            "DnsSearch": [],
            "ExtraHosts": [],
            "GroupAdd": [],
            "IOMaximumBandwidth": 0,
            "IOMaximumIOps": 0,
            "IpcMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
            "Isolation": "",
            "KernelMemory": 0,
            "Links": null,
            "LogConfig": {
                "Config": null,
                "Type": "k8s-file"
            },
            "Memory": 0,
            "MemoryReservation": 0,
            "MemorySwap": 0,
            "MemorySwappiness": 0,
            "NanoCpus": 0,
            "NetworkMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
            "OomKillDisable": false,
            "OomScoreAdj": 0,
            "PidMode": "private",
            "PidsLimit": 0,
            "PortBindings": {},
            "Privileged": false,
            "PublishAllPorts": false,
            "ReadonlyRootfs": false,
            "RestartPolicy": {
                "MaximumRetryCount": 0,
                "Name": "unless-stopped"
            },
            "Runtime": "oci",
            "SecurityOpt": [],
            "ShmSize": 65536000,
            "Tmpfs": {},
            "UTSMode": "container:457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e",
            "Ulimits": [],
            "UsernsMode": "",
            "VolumeDriver": "",
            "VolumesFrom": null
        },
        "HostnamePath": "/run/user/1000/containers/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/hostname",
        "HostsPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/hosts",
        "Id": "c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2",
        "Image": "de086c281ea7b4116c64a917309e249ae9063c663cd8e41c234bc54b88cfcd2c",
        "ImageName": "docker.io/library/traefik:2.2",
        "IsInfra": false,
        "LogPath": "/home/yajo/.local/share/containers/storage/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/ctr.log",
        "LogTag": "",
        "MountLabel": "",
        "Mounts": [],
        "Name": "traefik",
        "Namespace": "",
        "NetworkSettings": {
            "Bridge": "",
            "EndpointID": "",
            "Gateway": "",
            "GlobalIPv6Address": "",
            "GlobalIPv6PrefixLen": 0,
            "HairpinMode": false,
            "IPAddress": "",
            "IPPrefixLen": 0,
            "IPv6Gateway": "",
            "LinkLocalIPv6Address": "",
            "LinkLocalIPv6PrefixLen": 0,
            "MacAddress": "",
            "Ports": {},
            "SandboxID": "",
            "SandboxKey": ""
        },
        "OCIConfigPath": "/home/yajo/.local/share/containers/storage/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata/config.json",
        "OCIRuntime": "runc",
        "Path": "/entrypoint.sh",
        "Pod": "e3cf7ea7fc13d97553d06c3e4f937fab20de8b1a8386ba5317b3eefd951368d4",
        "ProcessLabel": "",
        "ResolvConfPath": "/run/user/1000/containers/vfs-containers/457898cf61f3d8adff95fc95cc84bf712ed784510194fc9106fbfe7169c5b09e/userdata/resolv.conf",
        "RestartCount": 0,
        "Rootfs": "",
        "State": {
            "ConmonPid": 2680346,
            "Dead": false,
            "Error": "",
            "ExitCode": 0,
            "FinishedAt": "0001-01-01T00:00:00Z",
            "Healthcheck": {
                "FailingStreak": 0,
                "Log": null,
                "Status": ""
            },
            "OOMKilled": false,
            "OciVersion": "1.0.2-dev",
            "Paused": false,
            "Pid": 2680365,
            "Restarting": false,
            "Running": true,
            "StartedAt": "2020-07-27T17:34:08.924438142Z",
            "Status": "running"
        },
        "StaticDir": "/home/yajo/.local/share/containers/storage/vfs-containers/c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2/userdata"
    },
    "invocation": {
        "module_args": {
            "annotation": null,
            "authfile": null,
            "blkio_weight": null,
            "blkio_weight_device": null,
            "cap_add": null,
            "cap_drop": null,
            "cgroup_parent": null,
            "cgroupns": null,
            "cgroups": null,
            "cidfile": null,
            "cmd_args": null,
            "command": [
                "--entryPoints.web-insecure.address=:10080",
                "--entryPoints.web-main.address=:10443",
                "--entryPoints.web-main.http.tls=true",
                "--log.level=DEBUG",
                "--providers.file.directory=/etc/traefik/dynamic",
                "--providers.file.watch=true"
            ],
            "conmon_pidfile": null,
            "cpu_period": null,
            "cpu_rt_period": null,
            "cpu_rt_runtime": null,
            "cpu_shares": null,
            "cpus": null,
            "cpuset_cpus": null,
            "cpuset_mems": null,
            "debug": false,
            "detach": true,
            "detach_keys": null,
            "device": null,
            "device_read_bps": null,
            "device_read_iops": null,
            "device_write_bps": null,
            "device_write_iops": null,
            "dns": null,
            "dns_option": null,
            "dns_search": null,
            "entrypoint": null,
            "env": null,
            "env_file": null,
            "env_host": null,
            "etc_hosts": null,
            "executable": "podman",
            "expose": null,
            "force_restart": false,
            "gidmap": null,
            "group_add": null,
            "healthcheck": null,
            "healthcheck_interval": null,
            "healthcheck_retries": null,
            "healthcheck_start_period": null,
            "healthcheck_timeout": null,
            "hostname": null,
            "http_proxy": null,
            "image": "docker.io/library/traefik:2.2",
            "image_strict": false,
            "image_volume": null,
            "init": null,
            "init_path": null,
            "interactive": null,
            "ip": null,
            "ipc": null,
            "kernel_memory": null,
            "label": null,
            "label_file": null,
            "log_driver": null,
            "log_opt": null,
            "memory": null,
            "memory_reservation": null,
            "memory_swap": null,
            "memory_swappiness": null,
            "mount": null,
            "name": "traefik",
            "network": null,
            "no_hosts": null,
            "oom_kill_disable": null,
            "oom_score_adj": null,
            "pid": null,
            "pids_limit": null,
            "pod": "traefik_pod",
            "privileged": null,
            "publish": null,
            "publish_all": null,
            "read_only": null,
            "read_only_tmpfs": null,
            "recreate": false,
            "restart_policy": "unless-stopped",
            "rm": null,
            "rootfs": null,
            "security_opt": null,
            "shm_size": null,
            "sig_proxy": null,
            "state": "started",
            "stop_signal": null,
            "stop_timeout": null,
            "subgidname": null,
            "subuidname": null,
            "sysctl": null,
            "systemd": null,
            "tmpfs": null,
            "tty": null,
            "uidmap": null,
            "ulimit": null,
            "user": null,
            "userns": null,
            "uts": null,
            "volume": null,
            "volumes_from": null,
            "workdir": null
        }
    },
    "podman_actions": [
        "podman rm -f traefik",
        "podman run --name traefik --pod traefik_pod --restart=unless-stopped --detach=True docker.io/library/traefik:2.2 --entryPoints.web-insecure.address=:10080 --entryPoints.web-main.address=:10443 --entryPoints.web-main.http.tls=true --log.level=DEBUG --providers.file.directory=/etc/traefik/dynamic --providers.file.watch=true"
    ],
    "stderr": "",
    "stderr_lines": [],
    "stdout": "c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2\n",
    "stdout_lines": [
        "c0674b2c87c4d564041d42b681049153d0ec2b81982db2976d0c462da6a554d2"
    ]
}

TASK [remove traefik pod] ********************************************************************************************************************************************************************************************************************
task path: /var/home/yajo/mydevel/mando/test.yml:39
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
<192.168.122.207> (0, b'/home/yajo\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo /home/yajo/.ansible/tmp `"&& mkdir /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048 && echo ansible-tmp-1595871249.153973-233556-252130971773048="` echo /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048 `" ) && sleep 0'"'"''
<192.168.122.207> (0, b'ansible-tmp-1595871249.153973-233556-252130971773048=/home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048\n', b'')
Using module file /var/home/yajo/mydevel/mando/collections/ansible_collections/containers/podman/plugins/modules/podman_pod.py
<192.168.122.207> PUT /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmpkvrj2plx TO /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048/AnsiballZ_podman_pod.py
<192.168.122.207> SSH: EXEC sftp -b - -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 '[192.168.122.207]'
<192.168.122.207> (0, b'sftp> put /var/home/yajo/.ansible/tmp/ansible-local-233315k6os0c2w/tmpkvrj2plx /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048/AnsiballZ_podman_pod.py\n', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'chmod u+x /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048/ /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048/AnsiballZ_podman_pod.py && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 -tt 192.168.122.207 '/bin/sh -c '"'"'/usr/bin/python3 /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048/AnsiballZ_podman_pod.py && sleep 0'"'"''
<192.168.122.207> (0, b'\r\n{"changed": true, "actions": ["deleted traefik_pod"], "pod": {}, "podman_actions": ["podman pod rm -f traefik_pod"], "invocation": {"module_args": {"name": "traefik_pod", "state": "absent", "recreate": false, "executable": "podman", "debug": false, "add_host": null, "cgroup_parent": null, "dns": null, "dns_opt": null, "dns_search": null, "hostname": null, "infra": null, "infra_conmon_pidfile": null, "infra_command": null, "infra_image": null, "ip": null, "label": null, "label_file": null, "mac_address": null, "network": null, "no_hosts": null, "pod_id_file": null, "publish": null, "share": null}}}\r\n', b'Shared connection to 192.168.122.207 closed.\r\n')
<192.168.122.207> ESTABLISH SSH CONNECTION FOR USER: None
<192.168.122.207> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/var/home/yajo/.ansible/cp/8a31bf28b5 192.168.122.207 '/bin/sh -c '"'"'rm -f -r /home/yajo/.ansible/tmp/ansible-tmp-1595871249.153973-233556-252130971773048/ > /dev/null 2>&1 && sleep 0'"'"''
<192.168.122.207> (0, b'', b'')
changed: [ubuntu] => {
    "actions": [
        "deleted traefik_pod"
    ],
    "changed": true,
    "invocation": {
        "module_args": {
            "add_host": null,
            "cgroup_parent": null,
            "debug": false,
            "dns": null,
            "dns_opt": null,
            "dns_search": null,
            "executable": "podman",
            "hostname": null,
            "infra": null,
            "infra_command": null,
            "infra_conmon_pidfile": null,
            "infra_image": null,
            "ip": null,
            "label": null,
            "label_file": null,
            "mac_address": null,
            "name": "traefik_pod",
            "network": null,
            "no_hosts": null,
            "pod_id_file": null,
            "publish": null,
            "recreate": false,
            "share": null,
            "state": "absent"
        }
    },
    "pod": {},
    "podman_actions": [
        "podman pod rm -f traefik_pod"
    ]
}
META: ran handlers
META: ran handlers

PLAY RECAP ***********************************************************************************************************************************************************************************************************************************
localhost                  : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
ubuntu                     : ok=5    changed=4    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0     

You can see that ubuntu host had 4 changed tasks instead of 3 as expected, because both calls to create container were reported as changed. The ubuntu machine is a simple VM booted with GNOME Boxes.

I'm using containers.podman 1.1.2. Running the playbook agains localhost directly (Fedora 32 Silverblue) produces the expected behavior.

from ansible-podman-collections.

sshnaidm avatar sshnaidm commented on May 24, 2024

@yajo can you please rerun it with --diff flag? Like ansible-playbook -vvvv --diff ...

from ansible-podman-collections.

yajo avatar yajo commented on May 24, 2024

Yes, it seems fixed, thanks!

from ansible-podman-collections.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.