all:
  children:
    cephs:
      hosts:
        instance: null
    computes:
      hosts:
        instance: null
    controllers:
      hosts:
        instance: null
    zuul_unreachable:
      hosts: {}
  hosts:
    instance:
      ansible_connection: ssh
      ansible_host: 199.204.45.57
      ansible_port: 22
      ansible_python_interpreter: auto
      ansible_user: zuul
      atmosphere_image_prefix: harbor.atmosphere.dev/
      ceph_conf_overrides:
      - option: mon allow pool size one
        section: global
        value: true
      - option: osd crush chooseleaf type
        section: global
        value: 0
      - option: auth allow insecure global id reclaim
        section: mon
        value: false
      ceph_csi_rbd_helm_values:
        provisioner:
          replicaCount: 1
      ceph_fsid: 4837cbf8-4f90-4300-b3f6-726c9b9f89b4
      ceph_osd_devices:
      - /dev/ceph-{{ inventory_hostname_short }}-osd0/data
      - /dev/ceph-{{ inventory_hostname_short }}-osd1/data
      - /dev/ceph-{{ inventory_hostname_short }}-osd2/data
      cilium_helm_values:
        operator:
          replicas: 1
      csi_driver: rbd
      kube_vip_address: 172.17.0.100
      kube_vip_interface: '{{ ansible_facts[''default_ipv4''].interface }}'
      kubernetes_hostname: '{{ ansible_facts[''default_ipv4''].address }}'
      molecule_scenario: csi
      nodepool:
        az: nova
        cloud: public
        external_id: 53437dde-9bd5-4735-8cde-e0433b6bc0cf
        host_id: 7cb77d063530dedbf6983b78a36ec607482cf1d282610499e8bd9357
        interface_ip: 199.204.45.57
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.57
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.57
        public_ipv6: 2604:e100:1:0:f816:3eff:feef:63cf
        region: ca-ymq-1
        slot: null
      zuul_node:
        az: nova
        cloud: public
        external_id: 53437dde-9bd5-4735-8cde-e0433b6bc0cf
        host_id: 7cb77d063530dedbf6983b78a36ec607482cf1d282610499e8bd9357
        interface_ip: 199.204.45.57
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.57
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.57
        public_ipv6: 2604:e100:1:0:f816:3eff:feef:63cf
        region: ca-ymq-1
        slot: null
        uuid: null
  vars:
    atmosphere_image_prefix: harbor.atmosphere.dev/
    ceph_conf_overrides:
    - option: mon allow pool size one
      section: global
      value: true
    - option: osd crush chooseleaf type
      section: global
      value: 0
    - option: auth allow insecure global id reclaim
      section: mon
      value: false
    ceph_csi_rbd_helm_values:
      provisioner:
        replicaCount: 1
    ceph_fsid: 4837cbf8-4f90-4300-b3f6-726c9b9f89b4
    ceph_osd_devices:
    - /dev/ceph-{{ inventory_hostname_short }}-osd0/data
    - /dev/ceph-{{ inventory_hostname_short }}-osd1/data
    - /dev/ceph-{{ inventory_hostname_short }}-osd2/data
    cilium_helm_values:
      operator:
        replicas: 1
    csi_driver: rbd
    kube_vip_address: 172.17.0.100
    kube_vip_interface: '{{ ansible_facts[''default_ipv4''].interface }}'
    kubernetes_hostname: '{{ ansible_facts[''default_ipv4''].address }}'
    molecule_scenario: csi
    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 atmosphere-molecule explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/atmosphere/.zuul.yaml@main#24>'
      - '<Job atmosphere-molecule-csi explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/atmosphere/.zuul.yaml@main#60>'
      - '<Job atmosphere-molecule-csi-rbd explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/atmosphere/.zuul.yaml@main#73>'
      - '<Job atmosphere-molecule-csi-rbd explicit: None implied: None source: vexxhost/atmosphere/.zuul.yaml@main#273>'
      ansible_version: '9'
      attempts: 1
      branch: main
      build: 5813c99f82aa43b18115349cdad86b21
      build_refs:
      - branch: main
        change: '3713'
        change_message: "feat(monitoring): replace NodeDiskIOSaturation with NodeDiskHighLatency\n\n##
          Summary\r\n\r\nReplace the noisy `NodeDiskIOSaturation` alert with `NodeDiskHighLatency`.\r\n\r\n###
          Problem\r\n\r\n`NodeDiskIOSaturation` measures disk queue depth (`avgqu-sz
          > 10`), a threshold designed for single spinning HDDs. On modern SSDs and
          RAID arrays, queue depths of 10-20 are completely normal. This caused **41
          false alerts in 7 days**, all auto-resolving with no action taken \u2014
          textbook alert fatigue.\r\n\r\n### Solution\r\n\r\n`NodeDiskHighLatency`
          measures actual per-operation IO latency:\r\n- **Metric**: `(read_time +
          write_time) / (reads_completed + writes_completed)`\r\n- **Threshold**:
          20ms sustained for 1 hour (P4)\r\n- **Device filter**: Uses the same specific
          device regex as the upstream chart\r\n\r\n### Validation\r\n\r\n- Tested
          against live Prometheus on customer env: the worst offender (kvm12/md1)
          had 94 separate latency spikes >20ms over 7 days, but the longest sustained
          run was only 20 minutes \u2014 the `for: 1h` correctly filters all transient
          bursts\r\n- Would have produced **zero** false alerts vs the old alert's
          **41**\r\n- Both positive and negative promtool tests pass\r\n\r\n### Changes\r\n\r\n-
          Disable `NodeDiskIOSaturation` in the mixin `disabledAlerts` list\r\n- Add
          `NodeDiskHighLatency` alert in `node-exporter-extras` group\r\n- Override
          `diskDeviceSelector` to match the upstream chart's device regex\r\n- Add
          negative and positive test cases in `tests.yml`\r\n- Add runbook entry in
          `monitoring.rst`\r\n- Add HDD, RAID, SMART, SSD to Vale vocabulary\r\n-
          Add release note"
        change_url: https://github.com/vexxhost/atmosphere/pull/3713
        commit_id: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
        patchset: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
        project:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/atmosphere
          name: vexxhost/atmosphere
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
        src_dir: src/github.com/vexxhost/atmosphere
        topic: null
      buildset: b8e251ca441c4405a31db70f43442a57
      buildset_refs:
      - branch: main
        change: '3713'
        change_message: "feat(monitoring): replace NodeDiskIOSaturation with NodeDiskHighLatency\n\n##
          Summary\r\n\r\nReplace the noisy `NodeDiskIOSaturation` alert with `NodeDiskHighLatency`.\r\n\r\n###
          Problem\r\n\r\n`NodeDiskIOSaturation` measures disk queue depth (`avgqu-sz
          > 10`), a threshold designed for single spinning HDDs. On modern SSDs and
          RAID arrays, queue depths of 10-20 are completely normal. This caused **41
          false alerts in 7 days**, all auto-resolving with no action taken \u2014
          textbook alert fatigue.\r\n\r\n### Solution\r\n\r\n`NodeDiskHighLatency`
          measures actual per-operation IO latency:\r\n- **Metric**: `(read_time +
          write_time) / (reads_completed + writes_completed)`\r\n- **Threshold**:
          20ms sustained for 1 hour (P4)\r\n- **Device filter**: Uses the same specific
          device regex as the upstream chart\r\n\r\n### Validation\r\n\r\n- Tested
          against live Prometheus on customer env: the worst offender (kvm12/md1)
          had 94 separate latency spikes >20ms over 7 days, but the longest sustained
          run was only 20 minutes \u2014 the `for: 1h` correctly filters all transient
          bursts\r\n- Would have produced **zero** false alerts vs the old alert's
          **41**\r\n- Both positive and negative promtool tests pass\r\n\r\n### Changes\r\n\r\n-
          Disable `NodeDiskIOSaturation` in the mixin `disabledAlerts` list\r\n- Add
          `NodeDiskHighLatency` alert in `node-exporter-extras` group\r\n- Override
          `diskDeviceSelector` to match the upstream chart's device regex\r\n- Add
          negative and positive test cases in `tests.yml`\r\n- Add runbook entry in
          `monitoring.rst`\r\n- Add HDD, RAID, SMART, SSD to Vale vocabulary\r\n-
          Add release note"
        change_url: https://github.com/vexxhost/atmosphere/pull/3713
        commit_id: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
        patchset: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
        project:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/atmosphere
          name: vexxhost/atmosphere
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
        src_dir: src/github.com/vexxhost/atmosphere
        topic: null
      change: '3713'
      change_message: "feat(monitoring): replace NodeDiskIOSaturation with NodeDiskHighLatency\n\n##
        Summary\r\n\r\nReplace the noisy `NodeDiskIOSaturation` alert with `NodeDiskHighLatency`.\r\n\r\n###
        Problem\r\n\r\n`NodeDiskIOSaturation` measures disk queue depth (`avgqu-sz
        > 10`), a threshold designed for single spinning HDDs. On modern SSDs and
        RAID arrays, queue depths of 10-20 are completely normal. This caused **41
        false alerts in 7 days**, all auto-resolving with no action taken \u2014 textbook
        alert fatigue.\r\n\r\n### Solution\r\n\r\n`NodeDiskHighLatency` measures actual
        per-operation IO latency:\r\n- **Metric**: `(read_time + write_time) / (reads_completed
        + writes_completed)`\r\n- **Threshold**: 20ms sustained for 1 hour (P4)\r\n-
        **Device filter**: Uses the same specific device regex as the upstream chart\r\n\r\n###
        Validation\r\n\r\n- Tested against live Prometheus on customer env: the worst
        offender (kvm12/md1) had 94 separate latency spikes >20ms over 7 days, but
        the longest sustained run was only 20 minutes \u2014 the `for: 1h` correctly
        filters all transient bursts\r\n- Would have produced **zero** false alerts
        vs the old alert's **41**\r\n- Both positive and negative promtool tests pass\r\n\r\n###
        Changes\r\n\r\n- Disable `NodeDiskIOSaturation` in the mixin `disabledAlerts`
        list\r\n- Add `NodeDiskHighLatency` alert in `node-exporter-extras` group\r\n-
        Override `diskDeviceSelector` to match the upstream chart's device regex\r\n-
        Add negative and positive test cases in `tests.yml`\r\n- Add runbook entry
        in `monitoring.rst`\r\n- Add HDD, RAID, SMART, SSD to Vale vocabulary\r\n-
        Add release note"
      change_url: https://github.com/vexxhost/atmosphere/pull/3713
      child_jobs: []
      commit_id: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
      event_id: fd560c60-1730-11f1-8b0d-a289b6c89fde
      executor:
        hostname: 0a8996d2b663
        inventory_file: /var/lib/zuul/builds/5813c99f82aa43b18115349cdad86b21/ansible/inventory.yaml
        log_root: /var/lib/zuul/builds/5813c99f82aa43b18115349cdad86b21/work/logs
        result_data_file: /var/lib/zuul/builds/5813c99f82aa43b18115349cdad86b21/work/results.json
        src_root: /var/lib/zuul/builds/5813c99f82aa43b18115349cdad86b21/work/src
        work_root: /var/lib/zuul/builds/5813c99f82aa43b18115349cdad86b21/work
      include_vars: []
      items:
      - branch: main
        change: '3713'
        change_message: "feat(monitoring): replace NodeDiskIOSaturation with NodeDiskHighLatency\n\n##
          Summary\r\n\r\nReplace the noisy `NodeDiskIOSaturation` alert with `NodeDiskHighLatency`.\r\n\r\n###
          Problem\r\n\r\n`NodeDiskIOSaturation` measures disk queue depth (`avgqu-sz
          > 10`), a threshold designed for single spinning HDDs. On modern SSDs and
          RAID arrays, queue depths of 10-20 are completely normal. This caused **41
          false alerts in 7 days**, all auto-resolving with no action taken \u2014
          textbook alert fatigue.\r\n\r\n### Solution\r\n\r\n`NodeDiskHighLatency`
          measures actual per-operation IO latency:\r\n- **Metric**: `(read_time +
          write_time) / (reads_completed + writes_completed)`\r\n- **Threshold**:
          20ms sustained for 1 hour (P4)\r\n- **Device filter**: Uses the same specific
          device regex as the upstream chart\r\n\r\n### Validation\r\n\r\n- Tested
          against live Prometheus on customer env: the worst offender (kvm12/md1)
          had 94 separate latency spikes >20ms over 7 days, but the longest sustained
          run was only 20 minutes \u2014 the `for: 1h` correctly filters all transient
          bursts\r\n- Would have produced **zero** false alerts vs the old alert's
          **41**\r\n- Both positive and negative promtool tests pass\r\n\r\n### Changes\r\n\r\n-
          Disable `NodeDiskIOSaturation` in the mixin `disabledAlerts` list\r\n- Add
          `NodeDiskHighLatency` alert in `node-exporter-extras` group\r\n- Override
          `diskDeviceSelector` to match the upstream chart's device regex\r\n- Add
          negative and positive test cases in `tests.yml`\r\n- Add runbook entry in
          `monitoring.rst`\r\n- Add HDD, RAID, SMART, SSD to Vale vocabulary\r\n-
          Add release note"
        change_url: https://github.com/vexxhost/atmosphere/pull/3713
        commit_id: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
        patchset: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
        project:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/atmosphere
          name: vexxhost/atmosphere
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
        topic: null
      job: atmosphere-molecule-csi-rbd
      jobtags: []
      max_attempts: 3
      message: ZmVhdChtb25pdG9yaW5nKTogcmVwbGFjZSBOb2RlRGlza0lPU2F0dXJhdGlvbiB3aXRoIE5vZGVEaXNrSGlnaExhdGVuY3kKCiMjIFN1bW1hcnkNCg0KUmVwbGFjZSB0aGUgbm9pc3kgYE5vZGVEaXNrSU9TYXR1cmF0aW9uYCBhbGVydCB3aXRoIGBOb2RlRGlza0hpZ2hMYXRlbmN5YC4NCg0KIyMjIFByb2JsZW0NCg0KYE5vZGVEaXNrSU9TYXR1cmF0aW9uYCBtZWFzdXJlcyBkaXNrIHF1ZXVlIGRlcHRoIChgYXZncXUtc3ogPiAxMGApLCBhIHRocmVzaG9sZCBkZXNpZ25lZCBmb3Igc2luZ2xlIHNwaW5uaW5nIEhERHMuIE9uIG1vZGVybiBTU0RzIGFuZCBSQUlEIGFycmF5cywgcXVldWUgZGVwdGhzIG9mIDEwLTIwIGFyZSBjb21wbGV0ZWx5IG5vcm1hbC4gVGhpcyBjYXVzZWQgKio0MSBmYWxzZSBhbGVydHMgaW4gNyBkYXlzKiosIGFsbCBhdXRvLXJlc29sdmluZyB3aXRoIG5vIGFjdGlvbiB0YWtlbiDigJQgdGV4dGJvb2sgYWxlcnQgZmF0aWd1ZS4NCg0KIyMjIFNvbHV0aW9uDQoNCmBOb2RlRGlza0hpZ2hMYXRlbmN5YCBtZWFzdXJlcyBhY3R1YWwgcGVyLW9wZXJhdGlvbiBJTyBsYXRlbmN5Og0KLSAqKk1ldHJpYyoqOiBgKHJlYWRfdGltZSArIHdyaXRlX3RpbWUpIC8gKHJlYWRzX2NvbXBsZXRlZCArIHdyaXRlc19jb21wbGV0ZWQpYA0KLSAqKlRocmVzaG9sZCoqOiAyMG1zIHN1c3RhaW5lZCBmb3IgMSBob3VyIChQNCkNCi0gKipEZXZpY2UgZmlsdGVyKio6IFVzZXMgdGhlIHNhbWUgc3BlY2lmaWMgZGV2aWNlIHJlZ2V4IGFzIHRoZSB1cHN0cmVhbSBjaGFydA0KDQojIyMgVmFsaWRhdGlvbg0KDQotIFRlc3RlZCBhZ2FpbnN0IGxpdmUgUHJvbWV0aGV1cyBvbiBjdXN0b21lciBlbnY6IHRoZSB3b3JzdCBvZmZlbmRlciAoa3ZtMTIvbWQxKSBoYWQgOTQgc2VwYXJhdGUgbGF0ZW5jeSBzcGlrZXMgPjIwbXMgb3ZlciA3IGRheXMsIGJ1dCB0aGUgbG9uZ2VzdCBzdXN0YWluZWQgcnVuIHdhcyBvbmx5IDIwIG1pbnV0ZXMg4oCUIHRoZSBgZm9yOiAxaGAgY29ycmVjdGx5IGZpbHRlcnMgYWxsIHRyYW5zaWVudCBidXJzdHMNCi0gV291bGQgaGF2ZSBwcm9kdWNlZCAqKnplcm8qKiBmYWxzZSBhbGVydHMgdnMgdGhlIG9sZCBhbGVydCdzICoqNDEqKg0KLSBCb3RoIHBvc2l0aXZlIGFuZCBuZWdhdGl2ZSBwcm9tdG9vbCB0ZXN0cyBwYXNzDQoNCiMjIyBDaGFuZ2VzDQoNCi0gRGlzYWJsZSBgTm9kZURpc2tJT1NhdHVyYXRpb25gIGluIHRoZSBtaXhpbiBgZGlzYWJsZWRBbGVydHNgIGxpc3QNCi0gQWRkIGBOb2RlRGlza0hpZ2hMYXRlbmN5YCBhbGVydCBpbiBgbm9kZS1leHBvcnRlci1leHRyYXNgIGdyb3VwDQotIE92ZXJyaWRlIGBkaXNrRGV2aWNlU2VsZWN0b3JgIHRvIG1hdGNoIHRoZSB1cHN0cmVhbSBjaGFydCdzIGRldmljZSByZWdleA0KLSBBZGQgbmVnYXRpdmUgYW5kIHBvc2l0aXZlIHRlc3QgY2FzZXMgaW4gYHRlc3RzLnltbGANCi0gQWRkIHJ1bmJvb2sgZW50cnkgaW4gYG1vbml0b3JpbmcucnN0YA0KLSBBZGQgSERELCBSQUlELCBTTUFSVCwgU1NEIHRvIFZhbGUgdm9jYWJ1bGFyeQ0KLSBBZGQgcmVsZWFzZSBub3Rl
      patchset: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
      pipeline: check
      playbook_context:
        playbook_projects:
          trusted/project_0/github.com/vexxhost/zuul-config:
            canonical_name: github.com/vexxhost/zuul-config
            checkout: main
            commit: 9052b5a7781b3346e4cffd452a54448cbff54d8b
          trusted/project_1/opendev.org/zuul/zuul-jobs:
            canonical_name: opendev.org/zuul/zuul-jobs
            checkout: master
            commit: 571c0efa3491d12ecb8fc1169c510716d55c0fc2
          trusted/project_2/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: a6e68243e02ef030ce5e75f8b67630880c475f33
          untrusted/project_0/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: a6e68243e02ef030ce5e75f8b67630880c475f33
          untrusted/project_1/github.com/vexxhost/zuul-config:
            canonical_name: github.com/vexxhost/zuul-config
            checkout: main
            commit: 9052b5a7781b3346e4cffd452a54448cbff54d8b
          untrusted/project_2/opendev.org/zuul/zuul-jobs:
            canonical_name: opendev.org/zuul/zuul-jobs
            checkout: master
            commit: 571c0efa3491d12ecb8fc1169c510716d55c0fc2
          untrusted/project_3/github.com/vexxhost/atmosphere:
            canonical_name: github.com/vexxhost/atmosphere
            checkout: main
            commit: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
          untrusted/project_4/opendev.org/openstack/openstack-helm:
            canonical_name: opendev.org/openstack/openstack-helm
            checkout: master
            commit: 81627775600f7f837c9e522606cac61c62f49bf5
        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: untrusted/project_3/github.com/vexxhost/atmosphere/test-playbooks/molecule/post.yml
          roles:
          - checkout: main
            checkout_description: playbook branch
            link_name: ansible/post_playbook_0/role_0/atmosphere
            link_target: untrusted/project_3/github.com/vexxhost/atmosphere
            role_path: ansible/post_playbook_0/role_0/atmosphere/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/post_playbook_0/role_1/openstack-helm
            link_target: untrusted/project_4/opendev.org/openstack/openstack-helm
            role_path: ansible/post_playbook_0/role_1/openstack-helm/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/post_playbook_0/role_3/zuul-jobs
            link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs
            role_path: ansible/post_playbook_0/role_3/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/post_playbook_0/role_4/zuul-jobs
            link_target: untrusted/project_0/github.com/vexxhost/zuul-jobs
            role_path: ansible/post_playbook_0/role_4/zuul-jobs/roles
        - 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_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
        - 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_2/role_1/zuul-jobs
            link_target: trusted/project_1/opendev.org/zuul/zuul-jobs
            role_path: ansible/post_playbook_2/role_1/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/post_playbook_2/role_2/zuul-jobs
            link_target: trusted/project_2/github.com/vexxhost/zuul-jobs
            role_path: ansible/post_playbook_2/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
        - path: untrusted/project_3/github.com/vexxhost/atmosphere/test-playbooks/molecule/pre.yml
          roles:
          - checkout: main
            checkout_description: playbook branch
            link_name: ansible/pre_playbook_2/role_0/atmosphere
            link_target: untrusted/project_3/github.com/vexxhost/atmosphere
            role_path: ansible/pre_playbook_2/role_0/atmosphere/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/pre_playbook_2/role_1/openstack-helm
            link_target: untrusted/project_4/opendev.org/openstack/openstack-helm
            role_path: ansible/pre_playbook_2/role_1/openstack-helm/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/pre_playbook_2/role_3/zuul-jobs
            link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs
            role_path: ansible/pre_playbook_2/role_3/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/pre_playbook_2/role_4/zuul-jobs
            link_target: untrusted/project_0/github.com/vexxhost/zuul-jobs
            role_path: ansible/pre_playbook_2/role_4/zuul-jobs/roles
      post_review: false
      post_timeout: null
      pre_timeout: null
      project:
        canonical_hostname: github.com
        canonical_name: github.com/vexxhost/atmosphere
        name: vexxhost/atmosphere
        short_name: atmosphere
        src_dir: src/github.com/vexxhost/atmosphere
      projects:
        github.com/vexxhost/atmosphere:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/atmosphere
          checkout: main
          checkout_description: zuul branch
          commit: bbcfc8b633e05c2ddb6d0a959644622e2e3b8495
          name: vexxhost/atmosphere
          required: false
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
      ref: refs/pull/3713/head
      resources: {}
      tenant: oss
      timeout: 1800
      topic: null
      voting: true
