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.19.213.236
      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
      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: ff1eeb1c-7a86-47e0-8155-0c6a95ab5620
        host_id: 75d3a86f985f0d60e3cff8f4ecdf5573fc58e724d10889e9f3cb3f12
        interface_ip: 199.19.213.236
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.19.213.236
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.19.213.236
        public_ipv6: 2604:e100:1:0:f816:3eff:fee0:e4ba
        region: ca-ymq-1
        slot: null
      zuul_node:
        az: nova
        cloud: public
        external_id: ff1eeb1c-7a86-47e0-8155-0c6a95ab5620
        host_id: 75d3a86f985f0d60e3cff8f4ecdf5573fc58e724d10889e9f3cb3f12
        interface_ip: 199.19.213.236
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.19.213.236
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.19.213.236
        public_ipv6: 2604:e100:1:0:f816:3eff:fee0:e4ba
        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
    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#77>'
      - '<Job atmosphere-molecule-csi-rbd explicit: None implied: None source: vexxhost/atmosphere/.zuul.yaml@main#313>'
      ansible_version: '9'
      attempts: 1
      branch: main
      build: 62ecfd380a2641adaac79ab5cc3a0e3a
      build_refs:
      - branch: main
        change: '3818'
        change_message: "feat(deploy): add parallel deployment orchestrator\n\n##
          Summary\n\nAdds a Go binary (`cmd/atmosphere`) that deploys Atmosphere components
          in parallel waves using a DAG-based dependency graph, targeting a reduction
          from ~60 minutes to ~22 minutes for full deployments.\n\n## Architecture\n\n|
          Package | Purpose |\n|---------|---------|\n| `pkg/dag/` | Generic `Graph[T]`
          library \u2014 Kahn's topo sort, subgraph extraction, parallel wave execution
          via errgroup |\n| `internal/deploy/` | 42-component registry, `Deployer`
          interface + `AnsibleDeployer`, 3-mode orchestrator |\n| `cmd/atmosphere/`
          | cobra CLI: `atmosphere deploy --inventory <inv> [--tags <t>]` |\n\n##
          Three Operating Modes\n\n1. **No tags** (full deploy): All 42 components
          run across 11 parallel waves\n2. **Single tag** (`--tags keystone`): Pass-through
          to `ansible-playbook site.yml --tags keystone` \u2014 identical to today\n3.
          **Multiple tags** (`--tags nova,keystone`): DAG-aware subgraph with parallel
          waves\n\n## Wave Schedule (Full Deploy)\n\n```\nWave 0:  ceph, kubernetes
          \                         (2 parallel)\nWave 1:  csi                                       (1)\nWave
          2:  cert-manager, memcached, rook-ceph, ...   (19 parallel)\nWave 3:  cluster-issuer,
          rabbitmq-op, pxc-op, ...  (6 parallel)\nWave 4:  ingress-nginx, pxc, ceph-provisioners
          \    (3 parallel)\nWave 5:  keycloak                                  (1)\nWave
          6:  keystone                                  (1)\nWave 7:  barbican, glance,
          cinder, placement, ...  (10 parallel)\nWave 8:  nova, staffeln                            (2
          parallel)\nWave 9:  octavia                                   (1)\nWave
          10: openstack-exporter                        (1)\n```\n\n## How It Works\n\n-
          For `PlaybookType` components (ceph, kubernetes, csi): runs the full playbook
          file directly\n- For `RoleType` components (everything else): generates
          a minimal single-role playbook at runtime and pipes it via `/dev/stdin`
          to `ansible-playbook`, avoiding multi-play parsing overhead\n- Output from
          concurrent processes is streamed with `[component-name]` prefixes\n- A prerequisite
          step runs `openstacksdk` once before parallel waves to avoid concurrent
          `pip install` / `clouds.yaml` writes\n\n## Backwards Compatibility\n\n-
          **Zero changes** to existing Ansible roles, variables, or playbooks\n- `ansible-playbook
          site.yml --tags <tag>` continues to work unchanged\n- The orchestrator is
          purely additive \u2014 the `Deployer` interface enables incremental migration
          to direct Helm SDK calls per-component in future PRs\n\n## Tests\n\n- 11
          DAG library tests (cycles, waves, parallel execution, error propagation,
          subgraph)\n- 3 orchestrator tests (full DAG, multi-tag, unknown tag)\n\n##
          CI Integration\n\n`molecule/aio/converge.yml` is updated to build the Go
          binary and run `atmosphere deploy` instead of sequential `import_playbook`
          calls.\n"
        change_url: https://github.com/vexxhost/atmosphere/pull/3818
        commit_id: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
        patchset: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
        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: aa5136a14b0c4ae598c2c38ea68b7313
      buildset_refs:
      - branch: main
        change: '3818'
        change_message: "feat(deploy): add parallel deployment orchestrator\n\n##
          Summary\n\nAdds a Go binary (`cmd/atmosphere`) that deploys Atmosphere components
          in parallel waves using a DAG-based dependency graph, targeting a reduction
          from ~60 minutes to ~22 minutes for full deployments.\n\n## Architecture\n\n|
          Package | Purpose |\n|---------|---------|\n| `pkg/dag/` | Generic `Graph[T]`
          library \u2014 Kahn's topo sort, subgraph extraction, parallel wave execution
          via errgroup |\n| `internal/deploy/` | 42-component registry, `Deployer`
          interface + `AnsibleDeployer`, 3-mode orchestrator |\n| `cmd/atmosphere/`
          | cobra CLI: `atmosphere deploy --inventory <inv> [--tags <t>]` |\n\n##
          Three Operating Modes\n\n1. **No tags** (full deploy): All 42 components
          run across 11 parallel waves\n2. **Single tag** (`--tags keystone`): Pass-through
          to `ansible-playbook site.yml --tags keystone` \u2014 identical to today\n3.
          **Multiple tags** (`--tags nova,keystone`): DAG-aware subgraph with parallel
          waves\n\n## Wave Schedule (Full Deploy)\n\n```\nWave 0:  ceph, kubernetes
          \                         (2 parallel)\nWave 1:  csi                                       (1)\nWave
          2:  cert-manager, memcached, rook-ceph, ...   (19 parallel)\nWave 3:  cluster-issuer,
          rabbitmq-op, pxc-op, ...  (6 parallel)\nWave 4:  ingress-nginx, pxc, ceph-provisioners
          \    (3 parallel)\nWave 5:  keycloak                                  (1)\nWave
          6:  keystone                                  (1)\nWave 7:  barbican, glance,
          cinder, placement, ...  (10 parallel)\nWave 8:  nova, staffeln                            (2
          parallel)\nWave 9:  octavia                                   (1)\nWave
          10: openstack-exporter                        (1)\n```\n\n## How It Works\n\n-
          For `PlaybookType` components (ceph, kubernetes, csi): runs the full playbook
          file directly\n- For `RoleType` components (everything else): generates
          a minimal single-role playbook at runtime and pipes it via `/dev/stdin`
          to `ansible-playbook`, avoiding multi-play parsing overhead\n- Output from
          concurrent processes is streamed with `[component-name]` prefixes\n- A prerequisite
          step runs `openstacksdk` once before parallel waves to avoid concurrent
          `pip install` / `clouds.yaml` writes\n\n## Backwards Compatibility\n\n-
          **Zero changes** to existing Ansible roles, variables, or playbooks\n- `ansible-playbook
          site.yml --tags <tag>` continues to work unchanged\n- The orchestrator is
          purely additive \u2014 the `Deployer` interface enables incremental migration
          to direct Helm SDK calls per-component in future PRs\n\n## Tests\n\n- 11
          DAG library tests (cycles, waves, parallel execution, error propagation,
          subgraph)\n- 3 orchestrator tests (full DAG, multi-tag, unknown tag)\n\n##
          CI Integration\n\n`molecule/aio/converge.yml` is updated to build the Go
          binary and run `atmosphere deploy` instead of sequential `import_playbook`
          calls.\n"
        change_url: https://github.com/vexxhost/atmosphere/pull/3818
        commit_id: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
        patchset: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
        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: '3818'
      change_message: "feat(deploy): add parallel deployment orchestrator\n\n## Summary\n\nAdds
        a Go binary (`cmd/atmosphere`) that deploys Atmosphere components in parallel
        waves using a DAG-based dependency graph, targeting a reduction from ~60 minutes
        to ~22 minutes for full deployments.\n\n## Architecture\n\n| Package | Purpose
        |\n|---------|---------|\n| `pkg/dag/` | Generic `Graph[T]` library \u2014
        Kahn's topo sort, subgraph extraction, parallel wave execution via errgroup
        |\n| `internal/deploy/` | 42-component registry, `Deployer` interface + `AnsibleDeployer`,
        3-mode orchestrator |\n| `cmd/atmosphere/` | cobra CLI: `atmosphere deploy
        --inventory <inv> [--tags <t>]` |\n\n## Three Operating Modes\n\n1. **No tags**
        (full deploy): All 42 components run across 11 parallel waves\n2. **Single
        tag** (`--tags keystone`): Pass-through to `ansible-playbook site.yml --tags
        keystone` \u2014 identical to today\n3. **Multiple tags** (`--tags nova,keystone`):
        DAG-aware subgraph with parallel waves\n\n## Wave Schedule (Full Deploy)\n\n```\nWave
        0:  ceph, kubernetes                          (2 parallel)\nWave 1:  csi                                       (1)\nWave
        2:  cert-manager, memcached, rook-ceph, ...   (19 parallel)\nWave 3:  cluster-issuer,
        rabbitmq-op, pxc-op, ...  (6 parallel)\nWave 4:  ingress-nginx, pxc, ceph-provisioners
        \    (3 parallel)\nWave 5:  keycloak                                  (1)\nWave
        6:  keystone                                  (1)\nWave 7:  barbican, glance,
        cinder, placement, ...  (10 parallel)\nWave 8:  nova, staffeln                            (2
        parallel)\nWave 9:  octavia                                   (1)\nWave 10:
        openstack-exporter                        (1)\n```\n\n## How It Works\n\n-
        For `PlaybookType` components (ceph, kubernetes, csi): runs the full playbook
        file directly\n- For `RoleType` components (everything else): generates a
        minimal single-role playbook at runtime and pipes it via `/dev/stdin` to `ansible-playbook`,
        avoiding multi-play parsing overhead\n- Output from concurrent processes is
        streamed with `[component-name]` prefixes\n- A prerequisite step runs `openstacksdk`
        once before parallel waves to avoid concurrent `pip install` / `clouds.yaml`
        writes\n\n## Backwards Compatibility\n\n- **Zero changes** to existing Ansible
        roles, variables, or playbooks\n- `ansible-playbook site.yml --tags <tag>`
        continues to work unchanged\n- The orchestrator is purely additive \u2014
        the `Deployer` interface enables incremental migration to direct Helm SDK
        calls per-component in future PRs\n\n## Tests\n\n- 11 DAG library tests (cycles,
        waves, parallel execution, error propagation, subgraph)\n- 3 orchestrator
        tests (full DAG, multi-tag, unknown tag)\n\n## CI Integration\n\n`molecule/aio/converge.yml`
        is updated to build the Go binary and run `atmosphere deploy` instead of sequential
        `import_playbook` calls.\n"
      change_url: https://github.com/vexxhost/atmosphere/pull/3818
      child_jobs: []
      commit_id: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
      event_id: 339c6a70-377b-11f1-98fb-da2a05131e59
      executor:
        hostname: 0a8996d2b663
        inventory_file: /var/lib/zuul/builds/62ecfd380a2641adaac79ab5cc3a0e3a/ansible/inventory.yaml
        log_root: /var/lib/zuul/builds/62ecfd380a2641adaac79ab5cc3a0e3a/work/logs
        result_data_file: /var/lib/zuul/builds/62ecfd380a2641adaac79ab5cc3a0e3a/work/results.json
        src_root: /var/lib/zuul/builds/62ecfd380a2641adaac79ab5cc3a0e3a/work/src
        work_root: /var/lib/zuul/builds/62ecfd380a2641adaac79ab5cc3a0e3a/work
      include_vars: []
      items:
      - branch: main
        change: '3818'
        change_message: "feat(deploy): add parallel deployment orchestrator\n\n##
          Summary\n\nAdds a Go binary (`cmd/atmosphere`) that deploys Atmosphere components
          in parallel waves using a DAG-based dependency graph, targeting a reduction
          from ~60 minutes to ~22 minutes for full deployments.\n\n## Architecture\n\n|
          Package | Purpose |\n|---------|---------|\n| `pkg/dag/` | Generic `Graph[T]`
          library \u2014 Kahn's topo sort, subgraph extraction, parallel wave execution
          via errgroup |\n| `internal/deploy/` | 42-component registry, `Deployer`
          interface + `AnsibleDeployer`, 3-mode orchestrator |\n| `cmd/atmosphere/`
          | cobra CLI: `atmosphere deploy --inventory <inv> [--tags <t>]` |\n\n##
          Three Operating Modes\n\n1. **No tags** (full deploy): All 42 components
          run across 11 parallel waves\n2. **Single tag** (`--tags keystone`): Pass-through
          to `ansible-playbook site.yml --tags keystone` \u2014 identical to today\n3.
          **Multiple tags** (`--tags nova,keystone`): DAG-aware subgraph with parallel
          waves\n\n## Wave Schedule (Full Deploy)\n\n```\nWave 0:  ceph, kubernetes
          \                         (2 parallel)\nWave 1:  csi                                       (1)\nWave
          2:  cert-manager, memcached, rook-ceph, ...   (19 parallel)\nWave 3:  cluster-issuer,
          rabbitmq-op, pxc-op, ...  (6 parallel)\nWave 4:  ingress-nginx, pxc, ceph-provisioners
          \    (3 parallel)\nWave 5:  keycloak                                  (1)\nWave
          6:  keystone                                  (1)\nWave 7:  barbican, glance,
          cinder, placement, ...  (10 parallel)\nWave 8:  nova, staffeln                            (2
          parallel)\nWave 9:  octavia                                   (1)\nWave
          10: openstack-exporter                        (1)\n```\n\n## How It Works\n\n-
          For `PlaybookType` components (ceph, kubernetes, csi): runs the full playbook
          file directly\n- For `RoleType` components (everything else): generates
          a minimal single-role playbook at runtime and pipes it via `/dev/stdin`
          to `ansible-playbook`, avoiding multi-play parsing overhead\n- Output from
          concurrent processes is streamed with `[component-name]` prefixes\n- A prerequisite
          step runs `openstacksdk` once before parallel waves to avoid concurrent
          `pip install` / `clouds.yaml` writes\n\n## Backwards Compatibility\n\n-
          **Zero changes** to existing Ansible roles, variables, or playbooks\n- `ansible-playbook
          site.yml --tags <tag>` continues to work unchanged\n- The orchestrator is
          purely additive \u2014 the `Deployer` interface enables incremental migration
          to direct Helm SDK calls per-component in future PRs\n\n## Tests\n\n- 11
          DAG library tests (cycles, waves, parallel execution, error propagation,
          subgraph)\n- 3 orchestrator tests (full DAG, multi-tag, unknown tag)\n\n##
          CI Integration\n\n`molecule/aio/converge.yml` is updated to build the Go
          binary and run `atmosphere deploy` instead of sequential `import_playbook`
          calls.\n"
        change_url: https://github.com/vexxhost/atmosphere/pull/3818
        commit_id: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
        patchset: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
        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: ZmVhdChkZXBsb3kpOiBhZGQgcGFyYWxsZWwgZGVwbG95bWVudCBvcmNoZXN0cmF0b3IKCiMjIFN1bW1hcnkKCkFkZHMgYSBHbyBiaW5hcnkgKGBjbWQvYXRtb3NwaGVyZWApIHRoYXQgZGVwbG95cyBBdG1vc3BoZXJlIGNvbXBvbmVudHMgaW4gcGFyYWxsZWwgd2F2ZXMgdXNpbmcgYSBEQUctYmFzZWQgZGVwZW5kZW5jeSBncmFwaCwgdGFyZ2V0aW5nIGEgcmVkdWN0aW9uIGZyb20gfjYwIG1pbnV0ZXMgdG8gfjIyIG1pbnV0ZXMgZm9yIGZ1bGwgZGVwbG95bWVudHMuCgojIyBBcmNoaXRlY3R1cmUKCnwgUGFja2FnZSB8IFB1cnBvc2UgfAp8LS0tLS0tLS0tfC0tLS0tLS0tLXwKfCBgcGtnL2RhZy9gIHwgR2VuZXJpYyBgR3JhcGhbVF1gIGxpYnJhcnkg4oCUIEthaG4ncyB0b3BvIHNvcnQsIHN1YmdyYXBoIGV4dHJhY3Rpb24sIHBhcmFsbGVsIHdhdmUgZXhlY3V0aW9uIHZpYSBlcnJncm91cCB8CnwgYGludGVybmFsL2RlcGxveS9gIHwgNDItY29tcG9uZW50IHJlZ2lzdHJ5LCBgRGVwbG95ZXJgIGludGVyZmFjZSArIGBBbnNpYmxlRGVwbG95ZXJgLCAzLW1vZGUgb3JjaGVzdHJhdG9yIHwKfCBgY21kL2F0bW9zcGhlcmUvYCB8IGNvYnJhIENMSTogYGF0bW9zcGhlcmUgZGVwbG95IC0taW52ZW50b3J5IDxpbnY+IFstLXRhZ3MgPHQ+XWAgfAoKIyMgVGhyZWUgT3BlcmF0aW5nIE1vZGVzCgoxLiAqKk5vIHRhZ3MqKiAoZnVsbCBkZXBsb3kpOiBBbGwgNDIgY29tcG9uZW50cyBydW4gYWNyb3NzIDExIHBhcmFsbGVsIHdhdmVzCjIuICoqU2luZ2xlIHRhZyoqIChgLS10YWdzIGtleXN0b25lYCk6IFBhc3MtdGhyb3VnaCB0byBgYW5zaWJsZS1wbGF5Ym9vayBzaXRlLnltbCAtLXRhZ3Mga2V5c3RvbmVgIOKAlCBpZGVudGljYWwgdG8gdG9kYXkKMy4gKipNdWx0aXBsZSB0YWdzKiogKGAtLXRhZ3Mgbm92YSxrZXlzdG9uZWApOiBEQUctYXdhcmUgc3ViZ3JhcGggd2l0aCBwYXJhbGxlbCB3YXZlcwoKIyMgV2F2ZSBTY2hlZHVsZSAoRnVsbCBEZXBsb3kpCgpgYGAKV2F2ZSAwOiAgY2VwaCwga3ViZXJuZXRlcyAgICAgICAgICAgICAgICAgICAgICAgICAgKDIgcGFyYWxsZWwpCldhdmUgMTogIGNzaSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICgxKQpXYXZlIDI6ICBjZXJ0LW1hbmFnZXIsIG1lbWNhY2hlZCwgcm9vay1jZXBoLCAuLi4gICAoMTkgcGFyYWxsZWwpCldhdmUgMzogIGNsdXN0ZXItaXNzdWVyLCByYWJiaXRtcS1vcCwgcHhjLW9wLCAuLi4gICg2IHBhcmFsbGVsKQpXYXZlIDQ6ICBpbmdyZXNzLW5naW54LCBweGMsIGNlcGgtcHJvdmlzaW9uZXJzICAgICAoMyBwYXJhbGxlbCkKV2F2ZSA1OiAga2V5Y2xvYWsgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKDEpCldhdmUgNjogIGtleXN0b25lICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICgxKQpXYXZlIDc6ICBiYXJiaWNhbiwgZ2xhbmNlLCBjaW5kZXIsIHBsYWNlbWVudCwgLi4uICAoMTAgcGFyYWxsZWwpCldhdmUgODogIG5vdmEsIHN0YWZmZWxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICgyIHBhcmFsbGVsKQpXYXZlIDk6ICBvY3RhdmlhICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAoMSkKV2F2ZSAxMDogb3BlbnN0YWNrLWV4cG9ydGVyICAgICAgICAgICAgICAgICAgICAgICAgKDEpCmBgYAoKIyMgSG93IEl0IFdvcmtzCgotIEZvciBgUGxheWJvb2tUeXBlYCBjb21wb25lbnRzIChjZXBoLCBrdWJlcm5ldGVzLCBjc2kpOiBydW5zIHRoZSBmdWxsIHBsYXlib29rIGZpbGUgZGlyZWN0bHkKLSBGb3IgYFJvbGVUeXBlYCBjb21wb25lbnRzIChldmVyeXRoaW5nIGVsc2UpOiBnZW5lcmF0ZXMgYSBtaW5pbWFsIHNpbmdsZS1yb2xlIHBsYXlib29rIGF0IHJ1bnRpbWUgYW5kIHBpcGVzIGl0IHZpYSBgL2Rldi9zdGRpbmAgdG8gYGFuc2libGUtcGxheWJvb2tgLCBhdm9pZGluZyBtdWx0aS1wbGF5IHBhcnNpbmcgb3ZlcmhlYWQKLSBPdXRwdXQgZnJvbSBjb25jdXJyZW50IHByb2Nlc3NlcyBpcyBzdHJlYW1lZCB3aXRoIGBbY29tcG9uZW50LW5hbWVdYCBwcmVmaXhlcwotIEEgcHJlcmVxdWlzaXRlIHN0ZXAgcnVucyBgb3BlbnN0YWNrc2RrYCBvbmNlIGJlZm9yZSBwYXJhbGxlbCB3YXZlcyB0byBhdm9pZCBjb25jdXJyZW50IGBwaXAgaW5zdGFsbGAgLyBgY2xvdWRzLnlhbWxgIHdyaXRlcwoKIyMgQmFja3dhcmRzIENvbXBhdGliaWxpdHkKCi0gKipaZXJvIGNoYW5nZXMqKiB0byBleGlzdGluZyBBbnNpYmxlIHJvbGVzLCB2YXJpYWJsZXMsIG9yIHBsYXlib29rcwotIGBhbnNpYmxlLXBsYXlib29rIHNpdGUueW1sIC0tdGFncyA8dGFnPmAgY29udGludWVzIHRvIHdvcmsgdW5jaGFuZ2VkCi0gVGhlIG9yY2hlc3RyYXRvciBpcyBwdXJlbHkgYWRkaXRpdmUg4oCUIHRoZSBgRGVwbG95ZXJgIGludGVyZmFjZSBlbmFibGVzIGluY3JlbWVudGFsIG1pZ3JhdGlvbiB0byBkaXJlY3QgSGVsbSBTREsgY2FsbHMgcGVyLWNvbXBvbmVudCBpbiBmdXR1cmUgUFJzCgojIyBUZXN0cwoKLSAxMSBEQUcgbGlicmFyeSB0ZXN0cyAoY3ljbGVzLCB3YXZlcywgcGFyYWxsZWwgZXhlY3V0aW9uLCBlcnJvciBwcm9wYWdhdGlvbiwgc3ViZ3JhcGgpCi0gMyBvcmNoZXN0cmF0b3IgdGVzdHMgKGZ1bGwgREFHLCBtdWx0aS10YWcsIHVua25vd24gdGFnKQoKIyMgQ0kgSW50ZWdyYXRpb24KCmBtb2xlY3VsZS9haW8vY29udmVyZ2UueW1sYCBpcyB1cGRhdGVkIHRvIGJ1aWxkIHRoZSBHbyBiaW5hcnkgYW5kIHJ1biBgYXRtb3NwaGVyZSBkZXBsb3lgIGluc3RlYWQgb2Ygc2VxdWVudGlhbCBgaW1wb3J0X3BsYXlib29rYCBjYWxscy4K
      patchset: 7d28705690b0bb4d66829a1d4f5548991b5d1de9
      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: 01384e11271b1590fe57d1c69f228708f741103e
          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: 01384e11271b1590fe57d1c69f228708f741103e
          untrusted/project_3/github.com/vexxhost/atmosphere:
            canonical_name: github.com/vexxhost/atmosphere
            checkout: main
            commit: 8977486a3e388fbfc7ab783725c7663bee09b3ec
          untrusted/project_4/opendev.org/openstack/openstack-helm:
            canonical_name: opendev.org/openstack/openstack-helm
            checkout: master
            commit: 1ad73cc3ea68948edf2574a6e0f71ff3c90096ef
        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: 8977486a3e388fbfc7ab783725c7663bee09b3ec
          name: vexxhost/atmosphere
          required: false
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
      ref: refs/pull/3818/head
      resources: {}
      tenant: oss
      timeout: 1800
      topic: null
      voting: true
