all:
  children:
    zuul_unreachable:
      hosts: {}
  hosts:
    rockylinux-9:
      ansible_connection: ssh
      ansible_host: 199.19.213.124
      ansible_port: 22
      ansible_python_interpreter: /usr/bin/python3
      ansible_user: zuul
      molecule_install_collection_siblings: true
      molecule_scenario: containerd
      nodepool:
        az: nova
        cloud: public
        external_id: 84dbe5d7-8463-4600-b07b-a224a49c94e2
        host_id: c3960d6808d44d1eb7d41ff8f195b627bd14b6a9ca83ea7250fd5db8
        interface_ip: 199.19.213.124
        label: rockylinux-9
        node_properties: {}
        private_ipv4: 199.19.213.124
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.19.213.124
        public_ipv6: 2604:e100:1:0:f816:3eff:fec5:28e7
        region: ca-ymq-1
        slot: null
      zuul_node:
        az: nova
        cloud: public
        external_id: 84dbe5d7-8463-4600-b07b-a224a49c94e2
        host_id: c3960d6808d44d1eb7d41ff8f195b627bd14b6a9ca83ea7250fd5db8
        interface_ip: 199.19.213.124
        label: rockylinux-9
        node_properties: {}
        private_ipv4: 199.19.213.124
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.19.213.124
        public_ipv6: 2604:e100:1:0:f816:3eff:fec5:28e7
        region: ca-ymq-1
        slot: null
        uuid: null
  vars:
    molecule_install_collection_siblings: true
    molecule_scenario: containerd
    zuul:
      _inheritance_path:
      - '<Job base explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/zuul-config/zuul.d/jobs.yaml@main#1>'
      - '<Job molecule explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/zuul-jobs/zuul.d/ansible-jobs.yaml@main#1>'
      - '<Job ansible-collection-containers-molecule explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/ansible-collection-containers/.zuul.yaml@main#1>'
      - '<Job ansible-collection-containers-molecule-containerd explicit: None implied:
        {MatchAny:{ImpliedBranchMatcher:main}} source: vexxhost/ansible-collection-containers/.zuul.yaml@main#7>'
      - '<Job ansible-collection-containers-molecule-containerd-rockylinux-9 explicit:
        None implied: {MatchAny:{ImpliedBranchMatcher:main}} source: vexxhost/ansible-collection-containers/.zuul.yaml@main#19>'
      - '<Job ansible-collection-containers-molecule-containerd-rockylinux-9 explicit:
        None implied: None source: vexxhost/ansible-collection-containers/.zuul.yaml@main#136>'
      ansible_version: '9'
      attempts: 1
      branch: main
      build: 9e3827a42ae4433381f311fbfc555b87
      build_refs:
      - branch: main
        change: '122'
        change_message: "fix(containerd): systemd race in concurrent role invocations\n\n##
          Problem\n\nWhen two `ansible-playbook` processes invoke this role on the
          same host concurrently \u2014 e.g. [atmosphere](https://github.com/vexxhost/atmosphere)'s
          parallel deploy orchestrator running the `ceph` and `kubernetes` playbooks
          in parallel, both of which depend on this role \u2014 the `Reload systemd`
          handler's `daemon_reexec: true` causes systemd to re-execute itself, briefly
          putting all managed units into a transient/unknown state.\n\nIf a sibling
          `ansible-playbook` is mid-flight on `service: state=started` at that moment,
          it fails with:\n\n```\nfatal: [instance]: FAILED! => {\n  \"changed\": false,\n
          \ \"msg\": \"Service is in unknown state\",\n  \"status\": {}\n}\n```\n\nObserved
          in vexxhost/atmosphere CI: https://github.com/vexxhost/atmosphere/pull/3818
          (aio-ovn build `638df89892284`).\n\n## Fix\n\n1. **Drop `daemon_reexec:
          true` from the `Reload systemd` handler.** `daemon_reexec` is only required
          when the systemd binary itself is upgraded; templating a unit file only
          needs `daemon_reload`. Removing reexec eliminates the unknown-state window
          without changing behaviour for the supported use case.\n2. **Add a small
          retry loop on `Enable and start service`** as defence-in-depth against any
          other transient systemd states (e.g. coincident operations from sibling
          roles such as `docker`).\n\n## Diff\n\n```diff\n- name: Reload systemd\n
          \ ansible.builtin.systemd:\n    daemon_reload: true\n-    daemon_reexec:
          true\n```\n\n```diff\n- name: Enable and start service\n  ansible.builtin.service:\n
          \   name: containerd\n    enabled: true\n    state: started\n+  register:
          _containerd_start\n+  retries: 5\n+  delay: 3\n+  until: _containerd_start
          is succeeded\n```"
        change_url: https://github.com/vexxhost/ansible-collection-containers/pull/122
        commit_id: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
        patchset: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
        project:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/ansible-collection-containers
          name: vexxhost/ansible-collection-containers
          short_name: ansible-collection-containers
          src_dir: src/github.com/vexxhost/ansible-collection-containers
        src_dir: src/github.com/vexxhost/ansible-collection-containers
        topic: null
      buildset: aecc1b964b024ad899305f96fb631362
      buildset_refs:
      - branch: main
        change: '122'
        change_message: "fix(containerd): systemd race in concurrent role invocations\n\n##
          Problem\n\nWhen two `ansible-playbook` processes invoke this role on the
          same host concurrently \u2014 e.g. [atmosphere](https://github.com/vexxhost/atmosphere)'s
          parallel deploy orchestrator running the `ceph` and `kubernetes` playbooks
          in parallel, both of which depend on this role \u2014 the `Reload systemd`
          handler's `daemon_reexec: true` causes systemd to re-execute itself, briefly
          putting all managed units into a transient/unknown state.\n\nIf a sibling
          `ansible-playbook` is mid-flight on `service: state=started` at that moment,
          it fails with:\n\n```\nfatal: [instance]: FAILED! => {\n  \"changed\": false,\n
          \ \"msg\": \"Service is in unknown state\",\n  \"status\": {}\n}\n```\n\nObserved
          in vexxhost/atmosphere CI: https://github.com/vexxhost/atmosphere/pull/3818
          (aio-ovn build `638df89892284`).\n\n## Fix\n\n1. **Drop `daemon_reexec:
          true` from the `Reload systemd` handler.** `daemon_reexec` is only required
          when the systemd binary itself is upgraded; templating a unit file only
          needs `daemon_reload`. Removing reexec eliminates the unknown-state window
          without changing behaviour for the supported use case.\n2. **Add a small
          retry loop on `Enable and start service`** as defence-in-depth against any
          other transient systemd states (e.g. coincident operations from sibling
          roles such as `docker`).\n\n## Diff\n\n```diff\n- name: Reload systemd\n
          \ ansible.builtin.systemd:\n    daemon_reload: true\n-    daemon_reexec:
          true\n```\n\n```diff\n- name: Enable and start service\n  ansible.builtin.service:\n
          \   name: containerd\n    enabled: true\n    state: started\n+  register:
          _containerd_start\n+  retries: 5\n+  delay: 3\n+  until: _containerd_start
          is succeeded\n```"
        change_url: https://github.com/vexxhost/ansible-collection-containers/pull/122
        commit_id: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
        patchset: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
        project:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/ansible-collection-containers
          name: vexxhost/ansible-collection-containers
          short_name: ansible-collection-containers
          src_dir: src/github.com/vexxhost/ansible-collection-containers
        src_dir: src/github.com/vexxhost/ansible-collection-containers
        topic: null
      change: '122'
      change_message: "fix(containerd): systemd race in concurrent role invocations\n\n##
        Problem\n\nWhen two `ansible-playbook` processes invoke this role on the same
        host concurrently \u2014 e.g. [atmosphere](https://github.com/vexxhost/atmosphere)'s
        parallel deploy orchestrator running the `ceph` and `kubernetes` playbooks
        in parallel, both of which depend on this role \u2014 the `Reload systemd`
        handler's `daemon_reexec: true` causes systemd to re-execute itself, briefly
        putting all managed units into a transient/unknown state.\n\nIf a sibling
        `ansible-playbook` is mid-flight on `service: state=started` at that moment,
        it fails with:\n\n```\nfatal: [instance]: FAILED! => {\n  \"changed\": false,\n
        \ \"msg\": \"Service is in unknown state\",\n  \"status\": {}\n}\n```\n\nObserved
        in vexxhost/atmosphere CI: https://github.com/vexxhost/atmosphere/pull/3818
        (aio-ovn build `638df89892284`).\n\n## Fix\n\n1. **Drop `daemon_reexec: true`
        from the `Reload systemd` handler.** `daemon_reexec` is only required when
        the systemd binary itself is upgraded; templating a unit file only needs `daemon_reload`.
        Removing reexec eliminates the unknown-state window without changing behaviour
        for the supported use case.\n2. **Add a small retry loop on `Enable and start
        service`** as defence-in-depth against any other transient systemd states
        (e.g. coincident operations from sibling roles such as `docker`).\n\n## Diff\n\n```diff\n-
        name: Reload systemd\n  ansible.builtin.systemd:\n    daemon_reload: true\n-
        \   daemon_reexec: true\n```\n\n```diff\n- name: Enable and start service\n
        \ ansible.builtin.service:\n    name: containerd\n    enabled: true\n    state:
        started\n+  register: _containerd_start\n+  retries: 5\n+  delay: 3\n+  until:
        _containerd_start is succeeded\n```"
      change_url: https://github.com/vexxhost/ansible-collection-containers/pull/122
      child_jobs: []
      commit_id: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
      event_id: 4ebe2140-691c-11f1-91ea-de5b29192145
      executor:
        hostname: 2d72f0692154
        inventory_file: /var/lib/zuul/builds/9e3827a42ae4433381f311fbfc555b87/ansible/inventory.yaml
        log_root: /var/lib/zuul/builds/9e3827a42ae4433381f311fbfc555b87/work/logs
        result_data_file: /var/lib/zuul/builds/9e3827a42ae4433381f311fbfc555b87/work/results.json
        src_root: /var/lib/zuul/builds/9e3827a42ae4433381f311fbfc555b87/work/src
        work_root: /var/lib/zuul/builds/9e3827a42ae4433381f311fbfc555b87/work
      include_vars: []
      items:
      - branch: main
        change: '122'
        change_message: "fix(containerd): systemd race in concurrent role invocations\n\n##
          Problem\n\nWhen two `ansible-playbook` processes invoke this role on the
          same host concurrently \u2014 e.g. [atmosphere](https://github.com/vexxhost/atmosphere)'s
          parallel deploy orchestrator running the `ceph` and `kubernetes` playbooks
          in parallel, both of which depend on this role \u2014 the `Reload systemd`
          handler's `daemon_reexec: true` causes systemd to re-execute itself, briefly
          putting all managed units into a transient/unknown state.\n\nIf a sibling
          `ansible-playbook` is mid-flight on `service: state=started` at that moment,
          it fails with:\n\n```\nfatal: [instance]: FAILED! => {\n  \"changed\": false,\n
          \ \"msg\": \"Service is in unknown state\",\n  \"status\": {}\n}\n```\n\nObserved
          in vexxhost/atmosphere CI: https://github.com/vexxhost/atmosphere/pull/3818
          (aio-ovn build `638df89892284`).\n\n## Fix\n\n1. **Drop `daemon_reexec:
          true` from the `Reload systemd` handler.** `daemon_reexec` is only required
          when the systemd binary itself is upgraded; templating a unit file only
          needs `daemon_reload`. Removing reexec eliminates the unknown-state window
          without changing behaviour for the supported use case.\n2. **Add a small
          retry loop on `Enable and start service`** as defence-in-depth against any
          other transient systemd states (e.g. coincident operations from sibling
          roles such as `docker`).\n\n## Diff\n\n```diff\n- name: Reload systemd\n
          \ ansible.builtin.systemd:\n    daemon_reload: true\n-    daemon_reexec:
          true\n```\n\n```diff\n- name: Enable and start service\n  ansible.builtin.service:\n
          \   name: containerd\n    enabled: true\n    state: started\n+  register:
          _containerd_start\n+  retries: 5\n+  delay: 3\n+  until: _containerd_start
          is succeeded\n```"
        change_url: https://github.com/vexxhost/ansible-collection-containers/pull/122
        commit_id: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
        patchset: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
        project:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/ansible-collection-containers
          name: vexxhost/ansible-collection-containers
          short_name: ansible-collection-containers
          src_dir: src/github.com/vexxhost/ansible-collection-containers
        topic: null
      job: ansible-collection-containers-molecule-containerd-rockylinux-9
      jobtags: []
      max_attempts: 3
      message: Zml4KGNvbnRhaW5lcmQpOiBzeXN0ZW1kIHJhY2UgaW4gY29uY3VycmVudCByb2xlIGludm9jYXRpb25zCgojIyBQcm9ibGVtCgpXaGVuIHR3byBgYW5zaWJsZS1wbGF5Ym9va2AgcHJvY2Vzc2VzIGludm9rZSB0aGlzIHJvbGUgb24gdGhlIHNhbWUgaG9zdCBjb25jdXJyZW50bHkg4oCUIGUuZy4gW2F0bW9zcGhlcmVdKGh0dHBzOi8vZ2l0aHViLmNvbS92ZXh4aG9zdC9hdG1vc3BoZXJlKSdzIHBhcmFsbGVsIGRlcGxveSBvcmNoZXN0cmF0b3IgcnVubmluZyB0aGUgYGNlcGhgIGFuZCBga3ViZXJuZXRlc2AgcGxheWJvb2tzIGluIHBhcmFsbGVsLCBib3RoIG9mIHdoaWNoIGRlcGVuZCBvbiB0aGlzIHJvbGUg4oCUIHRoZSBgUmVsb2FkIHN5c3RlbWRgIGhhbmRsZXIncyBgZGFlbW9uX3JlZXhlYzogdHJ1ZWAgY2F1c2VzIHN5c3RlbWQgdG8gcmUtZXhlY3V0ZSBpdHNlbGYsIGJyaWVmbHkgcHV0dGluZyBhbGwgbWFuYWdlZCB1bml0cyBpbnRvIGEgdHJhbnNpZW50L3Vua25vd24gc3RhdGUuCgpJZiBhIHNpYmxpbmcgYGFuc2libGUtcGxheWJvb2tgIGlzIG1pZC1mbGlnaHQgb24gYHNlcnZpY2U6IHN0YXRlPXN0YXJ0ZWRgIGF0IHRoYXQgbW9tZW50LCBpdCBmYWlscyB3aXRoOgoKYGBgCmZhdGFsOiBbaW5zdGFuY2VdOiBGQUlMRUQhID0+IHsKICAiY2hhbmdlZCI6IGZhbHNlLAogICJtc2ciOiAiU2VydmljZSBpcyBpbiB1bmtub3duIHN0YXRlIiwKICAic3RhdHVzIjoge30KfQpgYGAKCk9ic2VydmVkIGluIHZleHhob3N0L2F0bW9zcGhlcmUgQ0k6IGh0dHBzOi8vZ2l0aHViLmNvbS92ZXh4aG9zdC9hdG1vc3BoZXJlL3B1bGwvMzgxOCAoYWlvLW92biBidWlsZCBgNjM4ZGY4OTg5MjI4NGApLgoKIyMgRml4CgoxLiAqKkRyb3AgYGRhZW1vbl9yZWV4ZWM6IHRydWVgIGZyb20gdGhlIGBSZWxvYWQgc3lzdGVtZGAgaGFuZGxlci4qKiBgZGFlbW9uX3JlZXhlY2AgaXMgb25seSByZXF1aXJlZCB3aGVuIHRoZSBzeXN0ZW1kIGJpbmFyeSBpdHNlbGYgaXMgdXBncmFkZWQ7IHRlbXBsYXRpbmcgYSB1bml0IGZpbGUgb25seSBuZWVkcyBgZGFlbW9uX3JlbG9hZGAuIFJlbW92aW5nIHJlZXhlYyBlbGltaW5hdGVzIHRoZSB1bmtub3duLXN0YXRlIHdpbmRvdyB3aXRob3V0IGNoYW5naW5nIGJlaGF2aW91ciBmb3IgdGhlIHN1cHBvcnRlZCB1c2UgY2FzZS4KMi4gKipBZGQgYSBzbWFsbCByZXRyeSBsb29wIG9uIGBFbmFibGUgYW5kIHN0YXJ0IHNlcnZpY2VgKiogYXMgZGVmZW5jZS1pbi1kZXB0aCBhZ2FpbnN0IGFueSBvdGhlciB0cmFuc2llbnQgc3lzdGVtZCBzdGF0ZXMgKGUuZy4gY29pbmNpZGVudCBvcGVyYXRpb25zIGZyb20gc2libGluZyByb2xlcyBzdWNoIGFzIGBkb2NrZXJgKS4KCiMjIERpZmYKCmBgYGRpZmYKLSBuYW1lOiBSZWxvYWQgc3lzdGVtZAogIGFuc2libGUuYnVpbHRpbi5zeXN0ZW1kOgogICAgZGFlbW9uX3JlbG9hZDogdHJ1ZQotICAgIGRhZW1vbl9yZWV4ZWM6IHRydWUKYGBgCgpgYGBkaWZmCi0gbmFtZTogRW5hYmxlIGFuZCBzdGFydCBzZXJ2aWNlCiAgYW5zaWJsZS5idWlsdGluLnNlcnZpY2U6CiAgICBuYW1lOiBjb250YWluZXJkCiAgICBlbmFibGVkOiB0cnVlCiAgICBzdGF0ZTogc3RhcnRlZAorICByZWdpc3RlcjogX2NvbnRhaW5lcmRfc3RhcnQKKyAgcmV0cmllczogNQorICBkZWxheTogMworICB1bnRpbDogX2NvbnRhaW5lcmRfc3RhcnQgaXMgc3VjY2VlZGVkCmBgYA==
      patchset: eedbc856a0e8323fd47213a9e6e3d2fdc798a114
      pipeline: check
      playbook_context:
        playbook_projects:
          trusted/project_0/github.com/vexxhost/zuul-config:
            canonical_name: github.com/vexxhost/zuul-config
            checkout: main
            commit: 298983cd1253e6833abdb49d87d912527e0e6597
          trusted/project_1/opendev.org/zuul/zuul-jobs:
            canonical_name: opendev.org/zuul/zuul-jobs
            checkout: master
            commit: 82e3e8b1292a25e38235bb92b157992d326531d1
          trusted/project_2/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: 348c7ff425450b0356e1d84589143dce260be74a
          untrusted/project_0/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: 348c7ff425450b0356e1d84589143dce260be74a
          untrusted/project_1/github.com/vexxhost/zuul-config:
            canonical_name: github.com/vexxhost/zuul-config
            checkout: main
            commit: 298983cd1253e6833abdb49d87d912527e0e6597
          untrusted/project_2/opendev.org/zuul/zuul-jobs:
            canonical_name: opendev.org/zuul/zuul-jobs
            checkout: master
            commit: 82e3e8b1292a25e38235bb92b157992d326531d1
        playbooks:
        - path: untrusted/project_0/github.com/vexxhost/zuul-jobs/playbooks/molecule/run.yaml
          roles:
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/playbook_0/role_1/zuul-jobs
            link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs
            role_path: ansible/playbook_0/role_1/zuul-jobs/roles
          - checkout: main
            checkout_description: playbook branch
            link_name: ansible/playbook_0/role_2/zuul-jobs
            link_target: untrusted/project_0/github.com/vexxhost/zuul-jobs
            role_path: ansible/playbook_0/role_2/zuul-jobs/roles
        post_playbooks:
        - path: trusted/project_0/github.com/vexxhost/zuul-config/playbooks/base/post.yaml
          roles:
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/post_playbook_0/role_1/zuul-jobs
            link_target: trusted/project_1/opendev.org/zuul/zuul-jobs
            role_path: ansible/post_playbook_0/role_1/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/post_playbook_0/role_2/zuul-jobs
            link_target: trusted/project_2/github.com/vexxhost/zuul-jobs
            role_path: ansible/post_playbook_0/role_2/zuul-jobs/roles
        - path: trusted/project_0/github.com/vexxhost/zuul-config/playbooks/base/post-logs.yaml
          roles:
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/post_playbook_1/role_1/zuul-jobs
            link_target: trusted/project_1/opendev.org/zuul/zuul-jobs
            role_path: ansible/post_playbook_1/role_1/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/post_playbook_1/role_2/zuul-jobs
            link_target: trusted/project_2/github.com/vexxhost/zuul-jobs
            role_path: ansible/post_playbook_1/role_2/zuul-jobs/roles
        pre_playbooks:
        - path: trusted/project_0/github.com/vexxhost/zuul-config/playbooks/base/pre.yaml
          roles:
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/pre_playbook_0/role_1/zuul-jobs
            link_target: trusted/project_1/opendev.org/zuul/zuul-jobs
            role_path: ansible/pre_playbook_0/role_1/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/pre_playbook_0/role_2/zuul-jobs
            link_target: trusted/project_2/github.com/vexxhost/zuul-jobs
            role_path: ansible/pre_playbook_0/role_2/zuul-jobs/roles
        - path: untrusted/project_0/github.com/vexxhost/zuul-jobs/playbooks/molecule/pre.yaml
          roles:
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/pre_playbook_1/role_1/zuul-jobs
            link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs
            role_path: ansible/pre_playbook_1/role_1/zuul-jobs/roles
          - checkout: main
            checkout_description: playbook branch
            link_name: ansible/pre_playbook_1/role_2/zuul-jobs
            link_target: untrusted/project_0/github.com/vexxhost/zuul-jobs
            role_path: ansible/pre_playbook_1/role_2/zuul-jobs/roles
      post_review: false
      post_timeout: null
      pre_timeout: null
      project:
        canonical_hostname: github.com
        canonical_name: github.com/vexxhost/ansible-collection-containers
        name: vexxhost/ansible-collection-containers
        short_name: ansible-collection-containers
        src_dir: src/github.com/vexxhost/ansible-collection-containers
      projects:
        github.com/vexxhost/ansible-collection-containers:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/ansible-collection-containers
          checkout: main
          checkout_description: zuul branch
          commit: 1fe7dbb21d7d0f6e195fcb78106a3cad05214213
          name: vexxhost/ansible-collection-containers
          required: false
          short_name: ansible-collection-containers
          src_dir: src/github.com/vexxhost/ansible-collection-containers
      ref: refs/pull/122/head
      resources: {}
      tenant: oss
      timeout: 1800
      topic: null
      voting: true
