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.115
      ansible_port: 22
      ansible_python_interpreter: auto
      ansible_user: zuul
      atmosphere_deploy_tags: ceph,kubernetes,csi
      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
      ceph_public_network: '{{ ansible_facts[''default_ipv4''][''network''] + ''/''
        + (ansible_facts[''default_ipv4''][''prefix''] | string) }}'
      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: 51383396-e758-46c0-8253-8f778382939c
        host_id: 7cb77d063530dedbf6983b78a36ec607482cf1d282610499e8bd9357
        interface_ip: 199.204.45.115
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.115
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.115
        public_ipv6: 2604:e100:1:0:f816:3eff:fe7d:83b8
        region: ca-ymq-1
        slot: null
      zuul_node:
        az: nova
        cloud: public
        external_id: 51383396-e758-46c0-8253-8f778382939c
        host_id: 7cb77d063530dedbf6983b78a36ec607482cf1d282610499e8bd9357
        interface_ip: 199.204.45.115
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.115
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.115
        public_ipv6: 2604:e100:1:0:f816:3eff:fe7d:83b8
        region: ca-ymq-1
        slot: null
        uuid: null
  vars:
    atmosphere_deploy_tags: ceph,kubernetes,csi
    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
    ceph_public_network: '{{ ansible_facts[''default_ipv4''][''network''] + ''/''
      + (ansible_facts[''default_ipv4''][''prefix''] | string) }}'
    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#61>'
      - '<Job atmosphere-molecule-csi-rbd explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/atmosphere/.zuul.yaml@main#78>'
      - '<Job atmosphere-molecule-csi-rbd explicit: None implied: None source: vexxhost/atmosphere/.zuul.yaml@main#314>'
      ansible_version: '9'
      attempts: 1
      branch: main
      build: c0043b33334b42d1a4906617cd2cd4e5
      build_refs:
      - branch: main
        change: '3876'
        change_message: "feat(deploy): prioritise ready DAG nodes by critical path
          under concurrency cap\n\nStacked on top of #3818.\n\n## Problem\n\nThe parallel
          deploy orchestrator introduced in #3818 starts a goroutine per DAG node
          and serialises admission through a plain channel semaphore when a global
          concurrency cap is set. Channel semaphores are FIFO-ish but not priority-aware,
          so when multiple ready nodes compete for the last free slot, admission order
          is effectively arbitrary. In practice that means a short-chain node can
          be admitted ahead of a long-chain node that still has a deep tail of dependents
          behind it \u2014 the worst possible choice for makespan.\n\n## Change\n\nReplace
          the channel semaphore in `pkg/dag.Graph.Run` with a priority-aware scheduler.
          Priority = length of each node's longest downstream chain (a unit-weighted
          critical path), precomputed once per `Run` via the new `CriticalPath()`
          method. When capacity frees up, the waiter with the highest priority is
          admitted next; ties fall back to arrival order so ordering is deterministic.
          When `concurrency <= 0` the scheduler is skipped entirely and behaviour
          is unchanged.\n\nThis is the classic list-scheduling / HEFT heuristic. It
          costs O(V+E) at startup and a bounded heap during the run, and it preserves
          the partial order established by `DependsOn`.\n\n## Tests\n\n- `TestCriticalPath`
          verifies the depth computation on a branching graph.\n- `TestRunPriorityUnderConcurrencyCap`
          drives the scheduler directly: primes the one-slot capacity, queues waiters
          in a non-priority order, then releases; asserts admission happens in priority-descending
          order.\n- `TestRunPriorityDoesNotBlockIndependentChains` guards against
          the scheduler refusing to admit anything when there's capacity.\n- Existing
          DAG tests (ordering, parallelism, wave-gap closure, error propagation, concurrency
          cap) still pass under `-race -count=10`.\n\n## Target\n\nBase is \\`main\\`
          on purpose \u2014 this change does not depend on anything specific to #3818
          once merged, but is stacked on #3818 so the diff shows the intended final
          state. Once #3818 merges, this PR will rebase cleanly.\n\n## Notes\n\n-
          Scheduler uses `container/heap`; no new deps.\n- Priorities are static (unit
          weights). A future PR could feed in measured p50 durations for better ordering,
          gated on the per-component timing metrics tier-2 item."
        change_url: https://github.com/vexxhost/atmosphere/pull/3876
        commit_id: 7277519201463b928dd55ceeda57749d44ecf745
        patchset: 7277519201463b928dd55ceeda57749d44ecf745
        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: 3245c1c696fa441da796ff191155c1f0
      buildset_refs:
      - branch: main
        change: '3876'
        change_message: "feat(deploy): prioritise ready DAG nodes by critical path
          under concurrency cap\n\nStacked on top of #3818.\n\n## Problem\n\nThe parallel
          deploy orchestrator introduced in #3818 starts a goroutine per DAG node
          and serialises admission through a plain channel semaphore when a global
          concurrency cap is set. Channel semaphores are FIFO-ish but not priority-aware,
          so when multiple ready nodes compete for the last free slot, admission order
          is effectively arbitrary. In practice that means a short-chain node can
          be admitted ahead of a long-chain node that still has a deep tail of dependents
          behind it \u2014 the worst possible choice for makespan.\n\n## Change\n\nReplace
          the channel semaphore in `pkg/dag.Graph.Run` with a priority-aware scheduler.
          Priority = length of each node's longest downstream chain (a unit-weighted
          critical path), precomputed once per `Run` via the new `CriticalPath()`
          method. When capacity frees up, the waiter with the highest priority is
          admitted next; ties fall back to arrival order so ordering is deterministic.
          When `concurrency <= 0` the scheduler is skipped entirely and behaviour
          is unchanged.\n\nThis is the classic list-scheduling / HEFT heuristic. It
          costs O(V+E) at startup and a bounded heap during the run, and it preserves
          the partial order established by `DependsOn`.\n\n## Tests\n\n- `TestCriticalPath`
          verifies the depth computation on a branching graph.\n- `TestRunPriorityUnderConcurrencyCap`
          drives the scheduler directly: primes the one-slot capacity, queues waiters
          in a non-priority order, then releases; asserts admission happens in priority-descending
          order.\n- `TestRunPriorityDoesNotBlockIndependentChains` guards against
          the scheduler refusing to admit anything when there's capacity.\n- Existing
          DAG tests (ordering, parallelism, wave-gap closure, error propagation, concurrency
          cap) still pass under `-race -count=10`.\n\n## Target\n\nBase is \\`main\\`
          on purpose \u2014 this change does not depend on anything specific to #3818
          once merged, but is stacked on #3818 so the diff shows the intended final
          state. Once #3818 merges, this PR will rebase cleanly.\n\n## Notes\n\n-
          Scheduler uses `container/heap`; no new deps.\n- Priorities are static (unit
          weights). A future PR could feed in measured p50 durations for better ordering,
          gated on the per-component timing metrics tier-2 item."
        change_url: https://github.com/vexxhost/atmosphere/pull/3876
        commit_id: 7277519201463b928dd55ceeda57749d44ecf745
        patchset: 7277519201463b928dd55ceeda57749d44ecf745
        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: '3876'
      change_message: "feat(deploy): prioritise ready DAG nodes by critical path under
        concurrency cap\n\nStacked on top of #3818.\n\n## Problem\n\nThe parallel
        deploy orchestrator introduced in #3818 starts a goroutine per DAG node and
        serialises admission through a plain channel semaphore when a global concurrency
        cap is set. Channel semaphores are FIFO-ish but not priority-aware, so when
        multiple ready nodes compete for the last free slot, admission order is effectively
        arbitrary. In practice that means a short-chain node can be admitted ahead
        of a long-chain node that still has a deep tail of dependents behind it \u2014
        the worst possible choice for makespan.\n\n## Change\n\nReplace the channel
        semaphore in `pkg/dag.Graph.Run` with a priority-aware scheduler. Priority
        = length of each node's longest downstream chain (a unit-weighted critical
        path), precomputed once per `Run` via the new `CriticalPath()` method. When
        capacity frees up, the waiter with the highest priority is admitted next;
        ties fall back to arrival order so ordering is deterministic. When `concurrency
        <= 0` the scheduler is skipped entirely and behaviour is unchanged.\n\nThis
        is the classic list-scheduling / HEFT heuristic. It costs O(V+E) at startup
        and a bounded heap during the run, and it preserves the partial order established
        by `DependsOn`.\n\n## Tests\n\n- `TestCriticalPath` verifies the depth computation
        on a branching graph.\n- `TestRunPriorityUnderConcurrencyCap` drives the scheduler
        directly: primes the one-slot capacity, queues waiters in a non-priority order,
        then releases; asserts admission happens in priority-descending order.\n-
        `TestRunPriorityDoesNotBlockIndependentChains` guards against the scheduler
        refusing to admit anything when there's capacity.\n- Existing DAG tests (ordering,
        parallelism, wave-gap closure, error propagation, concurrency cap) still pass
        under `-race -count=10`.\n\n## Target\n\nBase is \\`main\\` on purpose \u2014
        this change does not depend on anything specific to #3818 once merged, but
        is stacked on #3818 so the diff shows the intended final state. Once #3818
        merges, this PR will rebase cleanly.\n\n## Notes\n\n- Scheduler uses `container/heap`;
        no new deps.\n- Priorities are static (unit weights). A future PR could feed
        in measured p50 durations for better ordering, gated on the per-component
        timing metrics tier-2 item."
      change_url: https://github.com/vexxhost/atmosphere/pull/3876
      child_jobs: []
      commit_id: 7277519201463b928dd55ceeda57749d44ecf745
      event_id: 81c11f20-3faf-11f1-9c0e-ca12543bd081
      executor:
        hostname: 0a8996d2b663
        inventory_file: /var/lib/zuul/builds/c0043b33334b42d1a4906617cd2cd4e5/ansible/inventory.yaml
        log_root: /var/lib/zuul/builds/c0043b33334b42d1a4906617cd2cd4e5/work/logs
        result_data_file: /var/lib/zuul/builds/c0043b33334b42d1a4906617cd2cd4e5/work/results.json
        src_root: /var/lib/zuul/builds/c0043b33334b42d1a4906617cd2cd4e5/work/src
        work_root: /var/lib/zuul/builds/c0043b33334b42d1a4906617cd2cd4e5/work
      include_vars: []
      items:
      - branch: main
        change: '3876'
        change_message: "feat(deploy): prioritise ready DAG nodes by critical path
          under concurrency cap\n\nStacked on top of #3818.\n\n## Problem\n\nThe parallel
          deploy orchestrator introduced in #3818 starts a goroutine per DAG node
          and serialises admission through a plain channel semaphore when a global
          concurrency cap is set. Channel semaphores are FIFO-ish but not priority-aware,
          so when multiple ready nodes compete for the last free slot, admission order
          is effectively arbitrary. In practice that means a short-chain node can
          be admitted ahead of a long-chain node that still has a deep tail of dependents
          behind it \u2014 the worst possible choice for makespan.\n\n## Change\n\nReplace
          the channel semaphore in `pkg/dag.Graph.Run` with a priority-aware scheduler.
          Priority = length of each node's longest downstream chain (a unit-weighted
          critical path), precomputed once per `Run` via the new `CriticalPath()`
          method. When capacity frees up, the waiter with the highest priority is
          admitted next; ties fall back to arrival order so ordering is deterministic.
          When `concurrency <= 0` the scheduler is skipped entirely and behaviour
          is unchanged.\n\nThis is the classic list-scheduling / HEFT heuristic. It
          costs O(V+E) at startup and a bounded heap during the run, and it preserves
          the partial order established by `DependsOn`.\n\n## Tests\n\n- `TestCriticalPath`
          verifies the depth computation on a branching graph.\n- `TestRunPriorityUnderConcurrencyCap`
          drives the scheduler directly: primes the one-slot capacity, queues waiters
          in a non-priority order, then releases; asserts admission happens in priority-descending
          order.\n- `TestRunPriorityDoesNotBlockIndependentChains` guards against
          the scheduler refusing to admit anything when there's capacity.\n- Existing
          DAG tests (ordering, parallelism, wave-gap closure, error propagation, concurrency
          cap) still pass under `-race -count=10`.\n\n## Target\n\nBase is \\`main\\`
          on purpose \u2014 this change does not depend on anything specific to #3818
          once merged, but is stacked on #3818 so the diff shows the intended final
          state. Once #3818 merges, this PR will rebase cleanly.\n\n## Notes\n\n-
          Scheduler uses `container/heap`; no new deps.\n- Priorities are static (unit
          weights). A future PR could feed in measured p50 durations for better ordering,
          gated on the per-component timing metrics tier-2 item."
        change_url: https://github.com/vexxhost/atmosphere/pull/3876
        commit_id: 7277519201463b928dd55ceeda57749d44ecf745
        patchset: 7277519201463b928dd55ceeda57749d44ecf745
        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: ZmVhdChkZXBsb3kpOiBwcmlvcml0aXNlIHJlYWR5IERBRyBub2RlcyBieSBjcml0aWNhbCBwYXRoIHVuZGVyIGNvbmN1cnJlbmN5IGNhcAoKU3RhY2tlZCBvbiB0b3Agb2YgIzM4MTguCgojIyBQcm9ibGVtCgpUaGUgcGFyYWxsZWwgZGVwbG95IG9yY2hlc3RyYXRvciBpbnRyb2R1Y2VkIGluICMzODE4IHN0YXJ0cyBhIGdvcm91dGluZSBwZXIgREFHIG5vZGUgYW5kIHNlcmlhbGlzZXMgYWRtaXNzaW9uIHRocm91Z2ggYSBwbGFpbiBjaGFubmVsIHNlbWFwaG9yZSB3aGVuIGEgZ2xvYmFsIGNvbmN1cnJlbmN5IGNhcCBpcyBzZXQuIENoYW5uZWwgc2VtYXBob3JlcyBhcmUgRklGTy1pc2ggYnV0IG5vdCBwcmlvcml0eS1hd2FyZSwgc28gd2hlbiBtdWx0aXBsZSByZWFkeSBub2RlcyBjb21wZXRlIGZvciB0aGUgbGFzdCBmcmVlIHNsb3QsIGFkbWlzc2lvbiBvcmRlciBpcyBlZmZlY3RpdmVseSBhcmJpdHJhcnkuIEluIHByYWN0aWNlIHRoYXQgbWVhbnMgYSBzaG9ydC1jaGFpbiBub2RlIGNhbiBiZSBhZG1pdHRlZCBhaGVhZCBvZiBhIGxvbmctY2hhaW4gbm9kZSB0aGF0IHN0aWxsIGhhcyBhIGRlZXAgdGFpbCBvZiBkZXBlbmRlbnRzIGJlaGluZCBpdCDigJQgdGhlIHdvcnN0IHBvc3NpYmxlIGNob2ljZSBmb3IgbWFrZXNwYW4uCgojIyBDaGFuZ2UKClJlcGxhY2UgdGhlIGNoYW5uZWwgc2VtYXBob3JlIGluIGBwa2cvZGFnLkdyYXBoLlJ1bmAgd2l0aCBhIHByaW9yaXR5LWF3YXJlIHNjaGVkdWxlci4gUHJpb3JpdHkgPSBsZW5ndGggb2YgZWFjaCBub2RlJ3MgbG9uZ2VzdCBkb3duc3RyZWFtIGNoYWluIChhIHVuaXQtd2VpZ2h0ZWQgY3JpdGljYWwgcGF0aCksIHByZWNvbXB1dGVkIG9uY2UgcGVyIGBSdW5gIHZpYSB0aGUgbmV3IGBDcml0aWNhbFBhdGgoKWAgbWV0aG9kLiBXaGVuIGNhcGFjaXR5IGZyZWVzIHVwLCB0aGUgd2FpdGVyIHdpdGggdGhlIGhpZ2hlc3QgcHJpb3JpdHkgaXMgYWRtaXR0ZWQgbmV4dDsgdGllcyBmYWxsIGJhY2sgdG8gYXJyaXZhbCBvcmRlciBzbyBvcmRlcmluZyBpcyBkZXRlcm1pbmlzdGljLiBXaGVuIGBjb25jdXJyZW5jeSA8PSAwYCB0aGUgc2NoZWR1bGVyIGlzIHNraXBwZWQgZW50aXJlbHkgYW5kIGJlaGF2aW91ciBpcyB1bmNoYW5nZWQuCgpUaGlzIGlzIHRoZSBjbGFzc2ljIGxpc3Qtc2NoZWR1bGluZyAvIEhFRlQgaGV1cmlzdGljLiBJdCBjb3N0cyBPKFYrRSkgYXQgc3RhcnR1cCBhbmQgYSBib3VuZGVkIGhlYXAgZHVyaW5nIHRoZSBydW4sIGFuZCBpdCBwcmVzZXJ2ZXMgdGhlIHBhcnRpYWwgb3JkZXIgZXN0YWJsaXNoZWQgYnkgYERlcGVuZHNPbmAuCgojIyBUZXN0cwoKLSBgVGVzdENyaXRpY2FsUGF0aGAgdmVyaWZpZXMgdGhlIGRlcHRoIGNvbXB1dGF0aW9uIG9uIGEgYnJhbmNoaW5nIGdyYXBoLgotIGBUZXN0UnVuUHJpb3JpdHlVbmRlckNvbmN1cnJlbmN5Q2FwYCBkcml2ZXMgdGhlIHNjaGVkdWxlciBkaXJlY3RseTogcHJpbWVzIHRoZSBvbmUtc2xvdCBjYXBhY2l0eSwgcXVldWVzIHdhaXRlcnMgaW4gYSBub24tcHJpb3JpdHkgb3JkZXIsIHRoZW4gcmVsZWFzZXM7IGFzc2VydHMgYWRtaXNzaW9uIGhhcHBlbnMgaW4gcHJpb3JpdHktZGVzY2VuZGluZyBvcmRlci4KLSBgVGVzdFJ1blByaW9yaXR5RG9lc05vdEJsb2NrSW5kZXBlbmRlbnRDaGFpbnNgIGd1YXJkcyBhZ2FpbnN0IHRoZSBzY2hlZHVsZXIgcmVmdXNpbmcgdG8gYWRtaXQgYW55dGhpbmcgd2hlbiB0aGVyZSdzIGNhcGFjaXR5LgotIEV4aXN0aW5nIERBRyB0ZXN0cyAob3JkZXJpbmcsIHBhcmFsbGVsaXNtLCB3YXZlLWdhcCBjbG9zdXJlLCBlcnJvciBwcm9wYWdhdGlvbiwgY29uY3VycmVuY3kgY2FwKSBzdGlsbCBwYXNzIHVuZGVyIGAtcmFjZSAtY291bnQ9MTBgLgoKIyMgVGFyZ2V0CgpCYXNlIGlzIFxgbWFpblxgIG9uIHB1cnBvc2Ug4oCUIHRoaXMgY2hhbmdlIGRvZXMgbm90IGRlcGVuZCBvbiBhbnl0aGluZyBzcGVjaWZpYyB0byAjMzgxOCBvbmNlIG1lcmdlZCwgYnV0IGlzIHN0YWNrZWQgb24gIzM4MTggc28gdGhlIGRpZmYgc2hvd3MgdGhlIGludGVuZGVkIGZpbmFsIHN0YXRlLiBPbmNlICMzODE4IG1lcmdlcywgdGhpcyBQUiB3aWxsIHJlYmFzZSBjbGVhbmx5LgoKIyMgTm90ZXMKCi0gU2NoZWR1bGVyIHVzZXMgYGNvbnRhaW5lci9oZWFwYDsgbm8gbmV3IGRlcHMuCi0gUHJpb3JpdGllcyBhcmUgc3RhdGljICh1bml0IHdlaWdodHMpLiBBIGZ1dHVyZSBQUiBjb3VsZCBmZWVkIGluIG1lYXN1cmVkIHA1MCBkdXJhdGlvbnMgZm9yIGJldHRlciBvcmRlcmluZywgZ2F0ZWQgb24gdGhlIHBlci1jb21wb25lbnQgdGltaW5nIG1ldHJpY3MgdGllci0yIGl0ZW0u
      patchset: 7277519201463b928dd55ceeda57749d44ecf745
      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: 9f5c1d680d573485f0ccdb18d2184d4f1d446419
          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: 298983cd1253e6833abdb49d87d912527e0e6597
          untrusted/project_2/opendev.org/zuul/zuul-jobs:
            canonical_name: opendev.org/zuul/zuul-jobs
            checkout: master
            commit: 9f5c1d680d573485f0ccdb18d2184d4f1d446419
          untrusted/project_3/github.com/vexxhost/atmosphere:
            canonical_name: github.com/vexxhost/atmosphere
            checkout: main
            commit: 7277519201463b928dd55ceeda57749d44ecf745
          untrusted/project_4/opendev.org/openstack/openstack-helm:
            canonical_name: opendev.org/openstack/openstack-helm
            checkout: master
            commit: 5d86e6f72b92d635fcb0c870dc69b170e2a3abca
        playbooks:
        - path: untrusted/project_3/github.com/vexxhost/atmosphere/molecule/csi/converge.yml
          roles:
          - checkout: main
            checkout_description: playbook branch
            link_name: ansible/playbook_0/role_0/atmosphere
            link_target: untrusted/project_3/github.com/vexxhost/atmosphere
            role_path: ansible/playbook_0/role_0/atmosphere/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/playbook_0/role_1/openstack-helm
            link_target: untrusted/project_4/opendev.org/openstack/openstack-helm
            role_path: ansible/playbook_0/role_1/openstack-helm/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/playbook_0/role_3/zuul-jobs
            link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs
            role_path: ansible/playbook_0/role_3/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/playbook_0/role_4/zuul-jobs
            link_target: untrusted/project_0/github.com/vexxhost/zuul-jobs
            role_path: ansible/playbook_0/role_4/zuul-jobs/roles
        - path: untrusted/project_3/github.com/vexxhost/atmosphere/test-playbooks/molecule/run.yml
          roles:
          - checkout: main
            checkout_description: playbook branch
            link_name: ansible/playbook_1/role_0/atmosphere
            link_target: untrusted/project_3/github.com/vexxhost/atmosphere
            role_path: ansible/playbook_1/role_0/atmosphere/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/playbook_1/role_1/openstack-helm
            link_target: untrusted/project_4/opendev.org/openstack/openstack-helm
            role_path: ansible/playbook_1/role_1/openstack-helm/roles
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/playbook_1/role_3/zuul-jobs
            link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs
            role_path: ansible/playbook_1/role_3/zuul-jobs/roles
          - checkout: main
            checkout_description: zuul branch
            link_name: ansible/playbook_1/role_4/zuul-jobs
            link_target: untrusted/project_0/github.com/vexxhost/zuul-jobs
            role_path: ansible/playbook_1/role_4/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: 7277519201463b928dd55ceeda57749d44ecf745
          name: vexxhost/atmosphere
          required: false
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
      ref: refs/pull/3876/head
      resources: {}
      tenant: oss
      timeout: 1800
      topic: null
      voting: true
