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.248
      ansible_port: 22
      ansible_python_interpreter: auto
      ansible_user: zuul
      atmosphere_deploy_tags: 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: local-path-provisioner
      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: 68c8af86-7260-4176-b5b2-12561022a6b8
        host_id: a14e37c14509a0e10156ccf8c706cd5613db7e363735e5577c330644
        interface_ip: 199.204.45.248
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.248
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.248
        public_ipv6: 2604:e100:1:0:f816:3eff:fe8e:157d
        region: ca-ymq-1
        slot: null
      zuul_node:
        az: nova
        cloud: public
        external_id: 68c8af86-7260-4176-b5b2-12561022a6b8
        host_id: a14e37c14509a0e10156ccf8c706cd5613db7e363735e5577c330644
        interface_ip: 199.204.45.248
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.248
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.248
        public_ipv6: 2604:e100:1:0:f816:3eff:fe8e:157d
        region: ca-ymq-1
        slot: null
        uuid: null
  vars:
    atmosphere_deploy_tags: 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: local-path-provisioner
    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-local-path-provisioner explicit: None implied:
        {MatchAny:{ImpliedBranchMatcher:main}} source: vexxhost/atmosphere/.zuul.yaml@main#68>'
      - '<Job atmosphere-molecule-csi-local-path-provisioner explicit: None implied:
        None source: vexxhost/atmosphere/.zuul.yaml@main#314>'
      ansible_version: '9'
      attempts: 1
      branch: main
      build: fd721dd9d0b54a78a544f98e750990e0
      build_refs:
      - branch: main
        change: '3838'
        change_message: "feat(deploy): replace K8s polling waits with Watch API\n\n##
          Summary\n\nReplace sleep-based polling (`k8s_info` with `wait_sleep: 10`)
          with K8s Watch API for instant notification when resources become ready.\n\n###
          Problem\n\nAnsible's `k8s_info` with `wait: true` uses polling internally
          \u2014 checking every `wait_sleep` seconds. If a deployment becomes ready
          1s after a check, we waste the remaining 9s of the sleep interval. This
          adds ~5s average per wait across the critical deploy path.\n\n### Solution\n\nAdd
          `atmosphere-wait` CLI tool using `client-go` Watch API:\n- `atmosphere-wait
          deployment <name> -n <ns> --for=condition=Available`\n- `atmosphere-wait
          statefulset <name> -n <ns>`  \n- `atmosphere-wait secret <name> -n <ns>`\n\nThe
          Watch API opens a persistent connection and gets notified **instantly**
          when the resource state changes \u2014 zero wasted time.\n\n### Changes\n\n|
          File | Change |\n|------|--------|\n| `internal/wait/wait.go` | Watch-based
          waiters for Deployment, StatefulSet, Secret |\n| `internal/wait/wait_test.go`
          | 7 tests using fake clientset |\n| `cmd/atmosphere-wait/main.go` | CLI
          binary |\n| `roles/keystone/tasks/main.yml` | Replace k8s_info + URI polling
          with `atmosphere-wait` |\n| `roles/nova/tasks/main.yml` | Replace k8s_info
          polling |\n| `roles/neutron/tasks/main.yml` | Replace k8s_info polling |\n|
          `roles/glance_image/tasks/main.yml` | Replace k8s_info polling |\n| `roles/percona_xtradb_cluster/tasks/main.yml`
          | Replace StatefulSet retry/until polling |\n\n### Estimated Impact\n\n~30-60s
          saved on the critical deploy path (compound savings across 11-hop chain)."
        change_url: https://github.com/vexxhost/atmosphere/pull/3838
        commit_id: d32bf22bdddc61862d0857d59347d266d9b71df5
        patchset: d32bf22bdddc61862d0857d59347d266d9b71df5
        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: 50c75fb79f2e4d61ba2b868b82a00e09
      buildset_refs:
      - branch: main
        change: '3838'
        change_message: "feat(deploy): replace K8s polling waits with Watch API\n\n##
          Summary\n\nReplace sleep-based polling (`k8s_info` with `wait_sleep: 10`)
          with K8s Watch API for instant notification when resources become ready.\n\n###
          Problem\n\nAnsible's `k8s_info` with `wait: true` uses polling internally
          \u2014 checking every `wait_sleep` seconds. If a deployment becomes ready
          1s after a check, we waste the remaining 9s of the sleep interval. This
          adds ~5s average per wait across the critical deploy path.\n\n### Solution\n\nAdd
          `atmosphere-wait` CLI tool using `client-go` Watch API:\n- `atmosphere-wait
          deployment <name> -n <ns> --for=condition=Available`\n- `atmosphere-wait
          statefulset <name> -n <ns>`  \n- `atmosphere-wait secret <name> -n <ns>`\n\nThe
          Watch API opens a persistent connection and gets notified **instantly**
          when the resource state changes \u2014 zero wasted time.\n\n### Changes\n\n|
          File | Change |\n|------|--------|\n| `internal/wait/wait.go` | Watch-based
          waiters for Deployment, StatefulSet, Secret |\n| `internal/wait/wait_test.go`
          | 7 tests using fake clientset |\n| `cmd/atmosphere-wait/main.go` | CLI
          binary |\n| `roles/keystone/tasks/main.yml` | Replace k8s_info + URI polling
          with `atmosphere-wait` |\n| `roles/nova/tasks/main.yml` | Replace k8s_info
          polling |\n| `roles/neutron/tasks/main.yml` | Replace k8s_info polling |\n|
          `roles/glance_image/tasks/main.yml` | Replace k8s_info polling |\n| `roles/percona_xtradb_cluster/tasks/main.yml`
          | Replace StatefulSet retry/until polling |\n\n### Estimated Impact\n\n~30-60s
          saved on the critical deploy path (compound savings across 11-hop chain)."
        change_url: https://github.com/vexxhost/atmosphere/pull/3838
        commit_id: d32bf22bdddc61862d0857d59347d266d9b71df5
        patchset: d32bf22bdddc61862d0857d59347d266d9b71df5
        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: '3838'
      change_message: "feat(deploy): replace K8s polling waits with Watch API\n\n##
        Summary\n\nReplace sleep-based polling (`k8s_info` with `wait_sleep: 10`)
        with K8s Watch API for instant notification when resources become ready.\n\n###
        Problem\n\nAnsible's `k8s_info` with `wait: true` uses polling internally
        \u2014 checking every `wait_sleep` seconds. If a deployment becomes ready
        1s after a check, we waste the remaining 9s of the sleep interval. This adds
        ~5s average per wait across the critical deploy path.\n\n### Solution\n\nAdd
        `atmosphere-wait` CLI tool using `client-go` Watch API:\n- `atmosphere-wait
        deployment <name> -n <ns> --for=condition=Available`\n- `atmosphere-wait statefulset
        <name> -n <ns>`  \n- `atmosphere-wait secret <name> -n <ns>`\n\nThe Watch
        API opens a persistent connection and gets notified **instantly** when the
        resource state changes \u2014 zero wasted time.\n\n### Changes\n\n| File |
        Change |\n|------|--------|\n| `internal/wait/wait.go` | Watch-based waiters
        for Deployment, StatefulSet, Secret |\n| `internal/wait/wait_test.go` | 7
        tests using fake clientset |\n| `cmd/atmosphere-wait/main.go` | CLI binary
        |\n| `roles/keystone/tasks/main.yml` | Replace k8s_info + URI polling with
        `atmosphere-wait` |\n| `roles/nova/tasks/main.yml` | Replace k8s_info polling
        |\n| `roles/neutron/tasks/main.yml` | Replace k8s_info polling |\n| `roles/glance_image/tasks/main.yml`
        | Replace k8s_info polling |\n| `roles/percona_xtradb_cluster/tasks/main.yml`
        | Replace StatefulSet retry/until polling |\n\n### Estimated Impact\n\n~30-60s
        saved on the critical deploy path (compound savings across 11-hop chain)."
      change_url: https://github.com/vexxhost/atmosphere/pull/3838
      child_jobs: []
      commit_id: d32bf22bdddc61862d0857d59347d266d9b71df5
      event_id: c3277a90-3974-11f1-8dfc-a70acf84dfed
      executor:
        hostname: 0a8996d2b663
        inventory_file: /var/lib/zuul/builds/fd721dd9d0b54a78a544f98e750990e0/ansible/inventory.yaml
        log_root: /var/lib/zuul/builds/fd721dd9d0b54a78a544f98e750990e0/work/logs
        result_data_file: /var/lib/zuul/builds/fd721dd9d0b54a78a544f98e750990e0/work/results.json
        src_root: /var/lib/zuul/builds/fd721dd9d0b54a78a544f98e750990e0/work/src
        work_root: /var/lib/zuul/builds/fd721dd9d0b54a78a544f98e750990e0/work
      include_vars: []
      items:
      - branch: main
        change: '3838'
        change_message: "feat(deploy): replace K8s polling waits with Watch API\n\n##
          Summary\n\nReplace sleep-based polling (`k8s_info` with `wait_sleep: 10`)
          with K8s Watch API for instant notification when resources become ready.\n\n###
          Problem\n\nAnsible's `k8s_info` with `wait: true` uses polling internally
          \u2014 checking every `wait_sleep` seconds. If a deployment becomes ready
          1s after a check, we waste the remaining 9s of the sleep interval. This
          adds ~5s average per wait across the critical deploy path.\n\n### Solution\n\nAdd
          `atmosphere-wait` CLI tool using `client-go` Watch API:\n- `atmosphere-wait
          deployment <name> -n <ns> --for=condition=Available`\n- `atmosphere-wait
          statefulset <name> -n <ns>`  \n- `atmosphere-wait secret <name> -n <ns>`\n\nThe
          Watch API opens a persistent connection and gets notified **instantly**
          when the resource state changes \u2014 zero wasted time.\n\n### Changes\n\n|
          File | Change |\n|------|--------|\n| `internal/wait/wait.go` | Watch-based
          waiters for Deployment, StatefulSet, Secret |\n| `internal/wait/wait_test.go`
          | 7 tests using fake clientset |\n| `cmd/atmosphere-wait/main.go` | CLI
          binary |\n| `roles/keystone/tasks/main.yml` | Replace k8s_info + URI polling
          with `atmosphere-wait` |\n| `roles/nova/tasks/main.yml` | Replace k8s_info
          polling |\n| `roles/neutron/tasks/main.yml` | Replace k8s_info polling |\n|
          `roles/glance_image/tasks/main.yml` | Replace k8s_info polling |\n| `roles/percona_xtradb_cluster/tasks/main.yml`
          | Replace StatefulSet retry/until polling |\n\n### Estimated Impact\n\n~30-60s
          saved on the critical deploy path (compound savings across 11-hop chain)."
        change_url: https://github.com/vexxhost/atmosphere/pull/3838
        commit_id: d32bf22bdddc61862d0857d59347d266d9b71df5
        patchset: d32bf22bdddc61862d0857d59347d266d9b71df5
        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-local-path-provisioner
      jobtags: []
      max_attempts: 3
      message: ZmVhdChkZXBsb3kpOiByZXBsYWNlIEs4cyBwb2xsaW5nIHdhaXRzIHdpdGggV2F0Y2ggQVBJCgojIyBTdW1tYXJ5CgpSZXBsYWNlIHNsZWVwLWJhc2VkIHBvbGxpbmcgKGBrOHNfaW5mb2Agd2l0aCBgd2FpdF9zbGVlcDogMTBgKSB3aXRoIEs4cyBXYXRjaCBBUEkgZm9yIGluc3RhbnQgbm90aWZpY2F0aW9uIHdoZW4gcmVzb3VyY2VzIGJlY29tZSByZWFkeS4KCiMjIyBQcm9ibGVtCgpBbnNpYmxlJ3MgYGs4c19pbmZvYCB3aXRoIGB3YWl0OiB0cnVlYCB1c2VzIHBvbGxpbmcgaW50ZXJuYWxseSDigJQgY2hlY2tpbmcgZXZlcnkgYHdhaXRfc2xlZXBgIHNlY29uZHMuIElmIGEgZGVwbG95bWVudCBiZWNvbWVzIHJlYWR5IDFzIGFmdGVyIGEgY2hlY2ssIHdlIHdhc3RlIHRoZSByZW1haW5pbmcgOXMgb2YgdGhlIHNsZWVwIGludGVydmFsLiBUaGlzIGFkZHMgfjVzIGF2ZXJhZ2UgcGVyIHdhaXQgYWNyb3NzIHRoZSBjcml0aWNhbCBkZXBsb3kgcGF0aC4KCiMjIyBTb2x1dGlvbgoKQWRkIGBhdG1vc3BoZXJlLXdhaXRgIENMSSB0b29sIHVzaW5nIGBjbGllbnQtZ29gIFdhdGNoIEFQSToKLSBgYXRtb3NwaGVyZS13YWl0IGRlcGxveW1lbnQgPG5hbWU+IC1uIDxucz4gLS1mb3I9Y29uZGl0aW9uPUF2YWlsYWJsZWAKLSBgYXRtb3NwaGVyZS13YWl0IHN0YXRlZnVsc2V0IDxuYW1lPiAtbiA8bnM+YCAgCi0gYGF0bW9zcGhlcmUtd2FpdCBzZWNyZXQgPG5hbWU+IC1uIDxucz5gCgpUaGUgV2F0Y2ggQVBJIG9wZW5zIGEgcGVyc2lzdGVudCBjb25uZWN0aW9uIGFuZCBnZXRzIG5vdGlmaWVkICoqaW5zdGFudGx5Kiogd2hlbiB0aGUgcmVzb3VyY2Ugc3RhdGUgY2hhbmdlcyDigJQgemVybyB3YXN0ZWQgdGltZS4KCiMjIyBDaGFuZ2VzCgp8IEZpbGUgfCBDaGFuZ2UgfAp8LS0tLS0tfC0tLS0tLS0tfAp8IGBpbnRlcm5hbC93YWl0L3dhaXQuZ29gIHwgV2F0Y2gtYmFzZWQgd2FpdGVycyBmb3IgRGVwbG95bWVudCwgU3RhdGVmdWxTZXQsIFNlY3JldCB8CnwgYGludGVybmFsL3dhaXQvd2FpdF90ZXN0LmdvYCB8IDcgdGVzdHMgdXNpbmcgZmFrZSBjbGllbnRzZXQgfAp8IGBjbWQvYXRtb3NwaGVyZS13YWl0L21haW4uZ29gIHwgQ0xJIGJpbmFyeSB8CnwgYHJvbGVzL2tleXN0b25lL3Rhc2tzL21haW4ueW1sYCB8IFJlcGxhY2UgazhzX2luZm8gKyBVUkkgcG9sbGluZyB3aXRoIGBhdG1vc3BoZXJlLXdhaXRgIHwKfCBgcm9sZXMvbm92YS90YXNrcy9tYWluLnltbGAgfCBSZXBsYWNlIGs4c19pbmZvIHBvbGxpbmcgfAp8IGByb2xlcy9uZXV0cm9uL3Rhc2tzL21haW4ueW1sYCB8IFJlcGxhY2UgazhzX2luZm8gcG9sbGluZyB8CnwgYHJvbGVzL2dsYW5jZV9pbWFnZS90YXNrcy9tYWluLnltbGAgfCBSZXBsYWNlIGs4c19pbmZvIHBvbGxpbmcgfAp8IGByb2xlcy9wZXJjb25hX3h0cmFkYl9jbHVzdGVyL3Rhc2tzL21haW4ueW1sYCB8IFJlcGxhY2UgU3RhdGVmdWxTZXQgcmV0cnkvdW50aWwgcG9sbGluZyB8CgojIyMgRXN0aW1hdGVkIEltcGFjdAoKfjMwLTYwcyBzYXZlZCBvbiB0aGUgY3JpdGljYWwgZGVwbG95IHBhdGggKGNvbXBvdW5kIHNhdmluZ3MgYWNyb3NzIDExLWhvcCBjaGFpbiku
      patchset: d32bf22bdddc61862d0857d59347d266d9b71df5
      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: fc4af6d44718d2e648cf6396f3e96bb46a55117a
          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: fc4af6d44718d2e648cf6396f3e96bb46a55117a
          untrusted/project_3/github.com/vexxhost/atmosphere:
            canonical_name: github.com/vexxhost/atmosphere
            checkout: main
            commit: d32bf22bdddc61862d0857d59347d266d9b71df5
          untrusted/project_4/opendev.org/openstack/openstack-helm:
            canonical_name: opendev.org/openstack/openstack-helm
            checkout: master
            commit: c665eedfa3ae1b76a7e8438fffcb62aefaa30a46
        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: d32bf22bdddc61862d0857d59347d266d9b71df5
          name: vexxhost/atmosphere
          required: false
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
      ref: refs/pull/3838/head
      resources: {}
      tenant: oss
      timeout: 1800
      topic: null
      voting: true
