all:
  children:
    cephs:
      hosts:
        instance: null
    computes:
      hosts:
        instance: null
    controllers:
      hosts:
        instance: null
    zuul_unreachable:
      hosts: {}
  hosts:
    instance:
      ansible_connection: ssh
      ansible_host: 199.204.45.57
      ansible_port: 22
      ansible_python_interpreter: auto
      ansible_user: zuul
      atmosphere_image_prefix: harbor.atmosphere.dev/
      ceph_conf_overrides:
      - option: mon allow pool size one
        section: global
        value: true
      - option: osd crush chooseleaf type
        section: global
        value: 0
      - option: auth allow insecure global id reclaim
        section: mon
        value: false
      ceph_csi_rbd_helm_values:
        provisioner:
          replicaCount: 1
      ceph_fsid: 4837cbf8-4f90-4300-b3f6-726c9b9f89b4
      ceph_osd_devices:
      - /dev/ceph-{{ inventory_hostname_short }}-osd0/data
      - /dev/ceph-{{ inventory_hostname_short }}-osd1/data
      - /dev/ceph-{{ inventory_hostname_short }}-osd2/data
      cilium_helm_values:
        operator:
          replicas: 1
      csi_driver: 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_install_collection_siblings: true
      molecule_scenario: csi
      nodepool:
        az: nova
        cloud: public
        external_id: 5adc1259-9634-40b4-bd5b-404b165b7bed
        host_id: f65535b9871d01a5cee8ece1826b232b808f65cb7b3c2fb89f8c9325
        interface_ip: 199.204.45.57
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.57
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.57
        public_ipv6: 2604:e100:1:0:f816:3eff:fe2c:2561
        region: ca-ymq-1
        slot: null
      zuul_node:
        az: nova
        cloud: public
        external_id: 5adc1259-9634-40b4-bd5b-404b165b7bed
        host_id: f65535b9871d01a5cee8ece1826b232b808f65cb7b3c2fb89f8c9325
        interface_ip: 199.204.45.57
        label: ubuntu-jammy
        node_properties: {}
        private_ipv4: 199.204.45.57
        private_ipv6: null
        provider: yul1
        public_ipv4: 199.204.45.57
        public_ipv6: 2604:e100:1:0:f816:3eff:fe2c:2561
        region: ca-ymq-1
        slot: null
        uuid: null
  vars:
    atmosphere_image_prefix: harbor.atmosphere.dev/
    ceph_conf_overrides:
    - option: mon allow pool size one
      section: global
      value: true
    - option: osd crush chooseleaf type
      section: global
      value: 0
    - option: auth allow insecure global id reclaim
      section: mon
      value: false
    ceph_csi_rbd_helm_values:
      provisioner:
        replicaCount: 1
    ceph_fsid: 4837cbf8-4f90-4300-b3f6-726c9b9f89b4
    ceph_osd_devices:
    - /dev/ceph-{{ inventory_hostname_short }}-osd0/data
    - /dev/ceph-{{ inventory_hostname_short }}-osd1/data
    - /dev/ceph-{{ inventory_hostname_short }}-osd2/data
    cilium_helm_values:
      operator:
        replicas: 1
    csi_driver: 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_install_collection_siblings: true
    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-jobs/zuul.d/jobs.yaml@main#1>'
      - '<Job atmosphere-molecule-csi explicit: None implied: {MatchAny:{ImpliedBranchMatcher:main}}
        source: vexxhost/atmosphere-zuul-jobs/zuul.d/jobs.yaml@main#56>'
      - '<Job atmosphere-molecule-csi-local-path-provisioner explicit: None implied:
        {MatchAny:{ImpliedBranchMatcher:main}} source: vexxhost/atmosphere-zuul-jobs/zuul.d/jobs.yaml@main#63>'
      - '<Job atmosphere-molecule-csi-local-path-provisioner explicit: None implied:
        None source: vexxhost/atmosphere-zuul-jobs/zuul.d/project-templates.yaml@main#1>'
      ansible_version: '9'
      attempts: 1
      branch: main
      build: d43313b4001443cdb8f0dd15d92e376b
      build_refs:
      - branch: main
        change: '4142'
        change_message: 'feat(monitoring): add Thanos metrics archival


          Closes #524


          ## What


          - vendor the Thanos 15.7.15 Helm chart, matching the Thanos 0.35.1 sidecar
          supported by the current Prometheus Operator

          - pin the chart workloads and optional MinIO subchart to published `bitnamilegacy`
          images

          - add an opt-in `thanos` role that deploys Query, Query Frontend, Store
          Gateway, and Compactor

          - configure the kube-prometheus-stack sidecar and object-storage Secret,
          and route Grafana queries through Query Frontend

          - expose replica, persistence, retention, image-prefix, object-storage,
          and raw Helm-value overrides

          - document setup with inline or externally managed object-storage Secrets


          ## Why


          Prometheus currently keeps metrics only in its local persistent volume.
          Thanos uploads blocks to S3-compatible object storage and provides a Prometheus-compatible
          query path across recent and archived data.


          ## Operator impact


          Thanos remains disabled by default. Enabling it requires a dedicated S3-compatible
          bucket plus either `thanos_object_storage_config` or `thanos_object_storage_existing_secret`.
          The default deployment adds two Query, two Query Frontend, two Store Gateway,
          and one Compactor workload, with persistent storage for Store Gateway and
          Compactor.


          ## Validation


          - `go test ./charts`

          - `go test ./roles/defaults`

          - `helm lint charts/thanos` with object storage, Query discovery, Store
          Gateway, and Compactor enabled

          - `helm template` verified Query discovery, persistent Store Gateway/Compactor
          resources, and object-store mounts

          - `ansible-playbook --syntax-check playbooks/monitoring.yml`

          - `ansible-lint roles/thanos roles/kube_prometheus_stack/tasks/main.yml
          roles/kube_prometheus_stack/vars/main.yml`

          - targeted pre-commit whitespace and line-ending hooks

          - GitHub `build`, `cargo`, `chart-vendor`, `pre-commit`, `reno`, CodeQL,
          and DCO checks

          - live PR 3842 OVN AIO deployment with kube-prometheus-stack and Thanos
          15.7.15 both deployed

          - live rollouts for Query, Query Frontend, Compactor, Store Gateway, and
          MinIO all reached Ready

          - the Prometheus CR references the object-store Secret and runs the Thanos
          0.35.1 sidecar

          - Query Frontend returned `status=success` with 43 `up` series and healthy
          Sidecar and Store Gateway endpoints

          - MinIO created the `thanos` bucket; Store Gateway and Compactor subsequently
          synchronized its block metadata without errors


          The single-node AIO used one Query, one Query Frontend, and one Store Gateway,
          and scaled down nonessential monitoring controllers, because the existing
          environment had reached Kubernetes'' 110-pod limit; the role''s production
          defaults remain two replicas for each. This proves the live query path and
          object-store connectivity. It does not wait for Prometheus'' first two-hour
          block upload, so actual archived-block retrieval remains a longer-running
          validation.

          '
        change_url: https://github.com/vexxhost/atmosphere/pull/4142
        commit_id: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
        patchset: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
        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: 29782631c34d4e4ab4544216adacd929
      buildset_refs:
      - branch: main
        change: '4142'
        change_message: 'feat(monitoring): add Thanos metrics archival


          Closes #524


          ## What


          - vendor the Thanos 15.7.15 Helm chart, matching the Thanos 0.35.1 sidecar
          supported by the current Prometheus Operator

          - pin the chart workloads and optional MinIO subchart to published `bitnamilegacy`
          images

          - add an opt-in `thanos` role that deploys Query, Query Frontend, Store
          Gateway, and Compactor

          - configure the kube-prometheus-stack sidecar and object-storage Secret,
          and route Grafana queries through Query Frontend

          - expose replica, persistence, retention, image-prefix, object-storage,
          and raw Helm-value overrides

          - document setup with inline or externally managed object-storage Secrets


          ## Why


          Prometheus currently keeps metrics only in its local persistent volume.
          Thanos uploads blocks to S3-compatible object storage and provides a Prometheus-compatible
          query path across recent and archived data.


          ## Operator impact


          Thanos remains disabled by default. Enabling it requires a dedicated S3-compatible
          bucket plus either `thanos_object_storage_config` or `thanos_object_storage_existing_secret`.
          The default deployment adds two Query, two Query Frontend, two Store Gateway,
          and one Compactor workload, with persistent storage for Store Gateway and
          Compactor.


          ## Validation


          - `go test ./charts`

          - `go test ./roles/defaults`

          - `helm lint charts/thanos` with object storage, Query discovery, Store
          Gateway, and Compactor enabled

          - `helm template` verified Query discovery, persistent Store Gateway/Compactor
          resources, and object-store mounts

          - `ansible-playbook --syntax-check playbooks/monitoring.yml`

          - `ansible-lint roles/thanos roles/kube_prometheus_stack/tasks/main.yml
          roles/kube_prometheus_stack/vars/main.yml`

          - targeted pre-commit whitespace and line-ending hooks

          - GitHub `build`, `cargo`, `chart-vendor`, `pre-commit`, `reno`, CodeQL,
          and DCO checks

          - live PR 3842 OVN AIO deployment with kube-prometheus-stack and Thanos
          15.7.15 both deployed

          - live rollouts for Query, Query Frontend, Compactor, Store Gateway, and
          MinIO all reached Ready

          - the Prometheus CR references the object-store Secret and runs the Thanos
          0.35.1 sidecar

          - Query Frontend returned `status=success` with 43 `up` series and healthy
          Sidecar and Store Gateway endpoints

          - MinIO created the `thanos` bucket; Store Gateway and Compactor subsequently
          synchronized its block metadata without errors


          The single-node AIO used one Query, one Query Frontend, and one Store Gateway,
          and scaled down nonessential monitoring controllers, because the existing
          environment had reached Kubernetes'' 110-pod limit; the role''s production
          defaults remain two replicas for each. This proves the live query path and
          object-store connectivity. It does not wait for Prometheus'' first two-hour
          block upload, so actual archived-block retrieval remains a longer-running
          validation.

          '
        change_url: https://github.com/vexxhost/atmosphere/pull/4142
        commit_id: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
        patchset: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
        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: '4142'
      change_message: 'feat(monitoring): add Thanos metrics archival


        Closes #524


        ## What


        - vendor the Thanos 15.7.15 Helm chart, matching the Thanos 0.35.1 sidecar
        supported by the current Prometheus Operator

        - pin the chart workloads and optional MinIO subchart to published `bitnamilegacy`
        images

        - add an opt-in `thanos` role that deploys Query, Query Frontend, Store Gateway,
        and Compactor

        - configure the kube-prometheus-stack sidecar and object-storage Secret, and
        route Grafana queries through Query Frontend

        - expose replica, persistence, retention, image-prefix, object-storage, and
        raw Helm-value overrides

        - document setup with inline or externally managed object-storage Secrets


        ## Why


        Prometheus currently keeps metrics only in its local persistent volume. Thanos
        uploads blocks to S3-compatible object storage and provides a Prometheus-compatible
        query path across recent and archived data.


        ## Operator impact


        Thanos remains disabled by default. Enabling it requires a dedicated S3-compatible
        bucket plus either `thanos_object_storage_config` or `thanos_object_storage_existing_secret`.
        The default deployment adds two Query, two Query Frontend, two Store Gateway,
        and one Compactor workload, with persistent storage for Store Gateway and
        Compactor.


        ## Validation


        - `go test ./charts`

        - `go test ./roles/defaults`

        - `helm lint charts/thanos` with object storage, Query discovery, Store Gateway,
        and Compactor enabled

        - `helm template` verified Query discovery, persistent Store Gateway/Compactor
        resources, and object-store mounts

        - `ansible-playbook --syntax-check playbooks/monitoring.yml`

        - `ansible-lint roles/thanos roles/kube_prometheus_stack/tasks/main.yml roles/kube_prometheus_stack/vars/main.yml`

        - targeted pre-commit whitespace and line-ending hooks

        - GitHub `build`, `cargo`, `chart-vendor`, `pre-commit`, `reno`, CodeQL, and
        DCO checks

        - live PR 3842 OVN AIO deployment with kube-prometheus-stack and Thanos 15.7.15
        both deployed

        - live rollouts for Query, Query Frontend, Compactor, Store Gateway, and MinIO
        all reached Ready

        - the Prometheus CR references the object-store Secret and runs the Thanos
        0.35.1 sidecar

        - Query Frontend returned `status=success` with 43 `up` series and healthy
        Sidecar and Store Gateway endpoints

        - MinIO created the `thanos` bucket; Store Gateway and Compactor subsequently
        synchronized its block metadata without errors


        The single-node AIO used one Query, one Query Frontend, and one Store Gateway,
        and scaled down nonessential monitoring controllers, because the existing
        environment had reached Kubernetes'' 110-pod limit; the role''s production
        defaults remain two replicas for each. This proves the live query path and
        object-store connectivity. It does not wait for Prometheus'' first two-hour
        block upload, so actual archived-block retrieval remains a longer-running
        validation.

        '
      change_url: https://github.com/vexxhost/atmosphere/pull/4142
      child_jobs: []
      commit_id: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
      event_id: 642cae30-81cb-11f1-9d9c-9b981e88bcbb
      executor:
        hostname: 2d72f0692154
        inventory_file: /var/lib/zuul/builds/d43313b4001443cdb8f0dd15d92e376b/ansible/inventory.yaml
        log_root: /var/lib/zuul/builds/d43313b4001443cdb8f0dd15d92e376b/work/logs
        result_data_file: /var/lib/zuul/builds/d43313b4001443cdb8f0dd15d92e376b/work/results.json
        src_root: /var/lib/zuul/builds/d43313b4001443cdb8f0dd15d92e376b/work/src
        work_root: /var/lib/zuul/builds/d43313b4001443cdb8f0dd15d92e376b/work
      include_vars: []
      items:
      - branch: main
        change: '4142'
        change_message: 'feat(monitoring): add Thanos metrics archival


          Closes #524


          ## What


          - vendor the Thanos 15.7.15 Helm chart, matching the Thanos 0.35.1 sidecar
          supported by the current Prometheus Operator

          - pin the chart workloads and optional MinIO subchart to published `bitnamilegacy`
          images

          - add an opt-in `thanos` role that deploys Query, Query Frontend, Store
          Gateway, and Compactor

          - configure the kube-prometheus-stack sidecar and object-storage Secret,
          and route Grafana queries through Query Frontend

          - expose replica, persistence, retention, image-prefix, object-storage,
          and raw Helm-value overrides

          - document setup with inline or externally managed object-storage Secrets


          ## Why


          Prometheus currently keeps metrics only in its local persistent volume.
          Thanos uploads blocks to S3-compatible object storage and provides a Prometheus-compatible
          query path across recent and archived data.


          ## Operator impact


          Thanos remains disabled by default. Enabling it requires a dedicated S3-compatible
          bucket plus either `thanos_object_storage_config` or `thanos_object_storage_existing_secret`.
          The default deployment adds two Query, two Query Frontend, two Store Gateway,
          and one Compactor workload, with persistent storage for Store Gateway and
          Compactor.


          ## Validation


          - `go test ./charts`

          - `go test ./roles/defaults`

          - `helm lint charts/thanos` with object storage, Query discovery, Store
          Gateway, and Compactor enabled

          - `helm template` verified Query discovery, persistent Store Gateway/Compactor
          resources, and object-store mounts

          - `ansible-playbook --syntax-check playbooks/monitoring.yml`

          - `ansible-lint roles/thanos roles/kube_prometheus_stack/tasks/main.yml
          roles/kube_prometheus_stack/vars/main.yml`

          - targeted pre-commit whitespace and line-ending hooks

          - GitHub `build`, `cargo`, `chart-vendor`, `pre-commit`, `reno`, CodeQL,
          and DCO checks

          - live PR 3842 OVN AIO deployment with kube-prometheus-stack and Thanos
          15.7.15 both deployed

          - live rollouts for Query, Query Frontend, Compactor, Store Gateway, and
          MinIO all reached Ready

          - the Prometheus CR references the object-store Secret and runs the Thanos
          0.35.1 sidecar

          - Query Frontend returned `status=success` with 43 `up` series and healthy
          Sidecar and Store Gateway endpoints

          - MinIO created the `thanos` bucket; Store Gateway and Compactor subsequently
          synchronized its block metadata without errors


          The single-node AIO used one Query, one Query Frontend, and one Store Gateway,
          and scaled down nonessential monitoring controllers, because the existing
          environment had reached Kubernetes'' 110-pod limit; the role''s production
          defaults remain two replicas for each. This proves the live query path and
          object-store connectivity. It does not wait for Prometheus'' first two-hour
          block upload, so actual archived-block retrieval remains a longer-running
          validation.

          '
        change_url: https://github.com/vexxhost/atmosphere/pull/4142
        commit_id: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
        patchset: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
        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: ZmVhdChtb25pdG9yaW5nKTogYWRkIFRoYW5vcyBtZXRyaWNzIGFyY2hpdmFsCgpDbG9zZXMgIzUyNAoKIyMgV2hhdAoKLSB2ZW5kb3IgdGhlIFRoYW5vcyAxNS43LjE1IEhlbG0gY2hhcnQsIG1hdGNoaW5nIHRoZSBUaGFub3MgMC4zNS4xIHNpZGVjYXIgc3VwcG9ydGVkIGJ5IHRoZSBjdXJyZW50IFByb21ldGhldXMgT3BlcmF0b3IKLSBwaW4gdGhlIGNoYXJ0IHdvcmtsb2FkcyBhbmQgb3B0aW9uYWwgTWluSU8gc3ViY2hhcnQgdG8gcHVibGlzaGVkIGBiaXRuYW1pbGVnYWN5YCBpbWFnZXMKLSBhZGQgYW4gb3B0LWluIGB0aGFub3NgIHJvbGUgdGhhdCBkZXBsb3lzIFF1ZXJ5LCBRdWVyeSBGcm9udGVuZCwgU3RvcmUgR2F0ZXdheSwgYW5kIENvbXBhY3RvcgotIGNvbmZpZ3VyZSB0aGUga3ViZS1wcm9tZXRoZXVzLXN0YWNrIHNpZGVjYXIgYW5kIG9iamVjdC1zdG9yYWdlIFNlY3JldCwgYW5kIHJvdXRlIEdyYWZhbmEgcXVlcmllcyB0aHJvdWdoIFF1ZXJ5IEZyb250ZW5kCi0gZXhwb3NlIHJlcGxpY2EsIHBlcnNpc3RlbmNlLCByZXRlbnRpb24sIGltYWdlLXByZWZpeCwgb2JqZWN0LXN0b3JhZ2UsIGFuZCByYXcgSGVsbS12YWx1ZSBvdmVycmlkZXMKLSBkb2N1bWVudCBzZXR1cCB3aXRoIGlubGluZSBvciBleHRlcm5hbGx5IG1hbmFnZWQgb2JqZWN0LXN0b3JhZ2UgU2VjcmV0cwoKIyMgV2h5CgpQcm9tZXRoZXVzIGN1cnJlbnRseSBrZWVwcyBtZXRyaWNzIG9ubHkgaW4gaXRzIGxvY2FsIHBlcnNpc3RlbnQgdm9sdW1lLiBUaGFub3MgdXBsb2FkcyBibG9ja3MgdG8gUzMtY29tcGF0aWJsZSBvYmplY3Qgc3RvcmFnZSBhbmQgcHJvdmlkZXMgYSBQcm9tZXRoZXVzLWNvbXBhdGlibGUgcXVlcnkgcGF0aCBhY3Jvc3MgcmVjZW50IGFuZCBhcmNoaXZlZCBkYXRhLgoKIyMgT3BlcmF0b3IgaW1wYWN0CgpUaGFub3MgcmVtYWlucyBkaXNhYmxlZCBieSBkZWZhdWx0LiBFbmFibGluZyBpdCByZXF1aXJlcyBhIGRlZGljYXRlZCBTMy1jb21wYXRpYmxlIGJ1Y2tldCBwbHVzIGVpdGhlciBgdGhhbm9zX29iamVjdF9zdG9yYWdlX2NvbmZpZ2Agb3IgYHRoYW5vc19vYmplY3Rfc3RvcmFnZV9leGlzdGluZ19zZWNyZXRgLiBUaGUgZGVmYXVsdCBkZXBsb3ltZW50IGFkZHMgdHdvIFF1ZXJ5LCB0d28gUXVlcnkgRnJvbnRlbmQsIHR3byBTdG9yZSBHYXRld2F5LCBhbmQgb25lIENvbXBhY3RvciB3b3JrbG9hZCwgd2l0aCBwZXJzaXN0ZW50IHN0b3JhZ2UgZm9yIFN0b3JlIEdhdGV3YXkgYW5kIENvbXBhY3Rvci4KCiMjIFZhbGlkYXRpb24KCi0gYGdvIHRlc3QgLi9jaGFydHNgCi0gYGdvIHRlc3QgLi9yb2xlcy9kZWZhdWx0c2AKLSBgaGVsbSBsaW50IGNoYXJ0cy90aGFub3NgIHdpdGggb2JqZWN0IHN0b3JhZ2UsIFF1ZXJ5IGRpc2NvdmVyeSwgU3RvcmUgR2F0ZXdheSwgYW5kIENvbXBhY3RvciBlbmFibGVkCi0gYGhlbG0gdGVtcGxhdGVgIHZlcmlmaWVkIFF1ZXJ5IGRpc2NvdmVyeSwgcGVyc2lzdGVudCBTdG9yZSBHYXRld2F5L0NvbXBhY3RvciByZXNvdXJjZXMsIGFuZCBvYmplY3Qtc3RvcmUgbW91bnRzCi0gYGFuc2libGUtcGxheWJvb2sgLS1zeW50YXgtY2hlY2sgcGxheWJvb2tzL21vbml0b3JpbmcueW1sYAotIGBhbnNpYmxlLWxpbnQgcm9sZXMvdGhhbm9zIHJvbGVzL2t1YmVfcHJvbWV0aGV1c19zdGFjay90YXNrcy9tYWluLnltbCByb2xlcy9rdWJlX3Byb21ldGhldXNfc3RhY2svdmFycy9tYWluLnltbGAKLSB0YXJnZXRlZCBwcmUtY29tbWl0IHdoaXRlc3BhY2UgYW5kIGxpbmUtZW5kaW5nIGhvb2tzCi0gR2l0SHViIGBidWlsZGAsIGBjYXJnb2AsIGBjaGFydC12ZW5kb3JgLCBgcHJlLWNvbW1pdGAsIGByZW5vYCwgQ29kZVFMLCBhbmQgRENPIGNoZWNrcwotIGxpdmUgUFIgMzg0MiBPVk4gQUlPIGRlcGxveW1lbnQgd2l0aCBrdWJlLXByb21ldGhldXMtc3RhY2sgYW5kIFRoYW5vcyAxNS43LjE1IGJvdGggZGVwbG95ZWQKLSBsaXZlIHJvbGxvdXRzIGZvciBRdWVyeSwgUXVlcnkgRnJvbnRlbmQsIENvbXBhY3RvciwgU3RvcmUgR2F0ZXdheSwgYW5kIE1pbklPIGFsbCByZWFjaGVkIFJlYWR5Ci0gdGhlIFByb21ldGhldXMgQ1IgcmVmZXJlbmNlcyB0aGUgb2JqZWN0LXN0b3JlIFNlY3JldCBhbmQgcnVucyB0aGUgVGhhbm9zIDAuMzUuMSBzaWRlY2FyCi0gUXVlcnkgRnJvbnRlbmQgcmV0dXJuZWQgYHN0YXR1cz1zdWNjZXNzYCB3aXRoIDQzIGB1cGAgc2VyaWVzIGFuZCBoZWFsdGh5IFNpZGVjYXIgYW5kIFN0b3JlIEdhdGV3YXkgZW5kcG9pbnRzCi0gTWluSU8gY3JlYXRlZCB0aGUgYHRoYW5vc2AgYnVja2V0OyBTdG9yZSBHYXRld2F5IGFuZCBDb21wYWN0b3Igc3Vic2VxdWVudGx5IHN5bmNocm9uaXplZCBpdHMgYmxvY2sgbWV0YWRhdGEgd2l0aG91dCBlcnJvcnMKClRoZSBzaW5nbGUtbm9kZSBBSU8gdXNlZCBvbmUgUXVlcnksIG9uZSBRdWVyeSBGcm9udGVuZCwgYW5kIG9uZSBTdG9yZSBHYXRld2F5LCBhbmQgc2NhbGVkIGRvd24gbm9uZXNzZW50aWFsIG1vbml0b3JpbmcgY29udHJvbGxlcnMsIGJlY2F1c2UgdGhlIGV4aXN0aW5nIGVudmlyb25tZW50IGhhZCByZWFjaGVkIEt1YmVybmV0ZXMnIDExMC1wb2QgbGltaXQ7IHRoZSByb2xlJ3MgcHJvZHVjdGlvbiBkZWZhdWx0cyByZW1haW4gdHdvIHJlcGxpY2FzIGZvciBlYWNoLiBUaGlzIHByb3ZlcyB0aGUgbGl2ZSBxdWVyeSBwYXRoIGFuZCBvYmplY3Qtc3RvcmUgY29ubmVjdGl2aXR5LiBJdCBkb2VzIG5vdCB3YWl0IGZvciBQcm9tZXRoZXVzJyBmaXJzdCB0d28taG91ciBibG9jayB1cGxvYWQsIHNvIGFjdHVhbCBhcmNoaXZlZC1ibG9jayByZXRyaWV2YWwgcmVtYWlucyBhIGxvbmdlci1ydW5uaW5nIHZhbGlkYXRpb24uCg==
      patchset: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
      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: 099fd2fd24246f4d89259206430c3a124dcf45ad
          trusted/project_2/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: c286bf94224b5660b8e49e9a058289e61062a9a0
          untrusted/project_0/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: c286bf94224b5660b8e49e9a058289e61062a9a0
          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: 099fd2fd24246f4d89259206430c3a124dcf45ad
          untrusted/project_3/github.com/vexxhost/atmosphere-zuul-jobs:
            canonical_name: github.com/vexxhost/atmosphere-zuul-jobs
            checkout: main
            commit: acb8e36a801f3b93fdd30dec43a15b6f8d809c2f
          untrusted/project_4/opendev.org/openstack/openstack-helm:
            canonical_name: opendev.org/openstack/openstack-helm
            checkout: master
            commit: d03dd061a8112c468e2f6529cb0663873f96b50f
        playbooks:
        - path: untrusted/project_0/github.com/vexxhost/zuul-jobs/playbooks/molecule/run.yaml
          roles:
          - checkout: master
            checkout_description: project default branch
            link_name: ansible/playbook_0/role_1/zuul-jobs
            link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs
            role_path: ansible/playbook_0/role_1/zuul-jobs/roles
          - checkout: main
            checkout_description: playbook branch
            link_name: ansible/playbook_0/role_2/zuul-jobs
            link_target: untrusted/project_0/github.com/vexxhost/zuul-jobs
            role_path: ansible/playbook_0/role_2/zuul-jobs/roles
        post_playbooks:
        - path: untrusted/project_3/github.com/vexxhost/atmosphere-zuul-jobs/playbooks/molecule/post.yml
          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-zuul-jobs/playbooks/molecule/pre.yml
          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/ansible-collections/ansible.netcommon:
          canonical_hostname: github.com
          canonical_name: github.com/ansible-collections/ansible.netcommon
          checkout: main
          checkout_description: zuul branch
          commit: c32445cecf982c98b95393f9ffa6f64d99cca3f4
          name: ansible-collections/ansible.netcommon
          required: true
          short_name: ansible.netcommon
          src_dir: src/github.com/ansible-collections/ansible.netcommon
        github.com/ansible-collections/ansible.posix:
          canonical_hostname: github.com
          canonical_name: github.com/ansible-collections/ansible.posix
          checkout: main
          checkout_description: zuul branch
          commit: ef1937b771670f104853d16888dd1083f983bc65
          name: ansible-collections/ansible.posix
          required: true
          short_name: ansible.posix
          src_dir: src/github.com/ansible-collections/ansible.posix
        github.com/ansible-collections/ansible.utils:
          canonical_hostname: github.com
          canonical_name: github.com/ansible-collections/ansible.utils
          checkout: main
          checkout_description: zuul branch
          commit: 46ae0a39a02cfa9bd1713f814ebb43b76fbdca30
          name: ansible-collections/ansible.utils
          required: true
          short_name: ansible.utils
          src_dir: src/github.com/ansible-collections/ansible.utils
        github.com/ansible-collections/community.crypto:
          canonical_hostname: github.com
          canonical_name: github.com/ansible-collections/community.crypto
          checkout: main
          checkout_description: zuul branch
          commit: 6a1268a1331fccbe57984edcbb09d978c2010274
          name: ansible-collections/community.crypto
          required: true
          short_name: community.crypto
          src_dir: src/github.com/ansible-collections/community.crypto
        github.com/ansible-collections/community.general:
          canonical_hostname: github.com
          canonical_name: github.com/ansible-collections/community.general
          checkout: main
          checkout_description: zuul branch
          commit: 49532a5b6cb05c9bf8902f6256f7eef3841fc307
          name: ansible-collections/community.general
          required: true
          short_name: community.general
          src_dir: src/github.com/ansible-collections/community.general
        github.com/ansible-collections/community.mysql:
          canonical_hostname: github.com
          canonical_name: github.com/ansible-collections/community.mysql
          checkout: main
          checkout_description: zuul branch
          commit: 4cf7a3176fbd07be43459f1366e8066381df6d97
          name: ansible-collections/community.mysql
          required: true
          short_name: community.mysql
          src_dir: src/github.com/ansible-collections/community.mysql
        github.com/ansible-collections/kubernetes.core:
          canonical_hostname: github.com
          canonical_name: github.com/ansible-collections/kubernetes.core
          checkout: main
          checkout_description: zuul branch
          commit: b1d809d9f301c359ddcda70849db6187fee7a876
          name: ansible-collections/kubernetes.core
          required: true
          short_name: kubernetes.core
          src_dir: src/github.com/ansible-collections/kubernetes.core
        github.com/vexxhost/ansible-collection-ceph:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/ansible-collection-ceph
          checkout: main
          checkout_description: zuul branch
          commit: d87ebb249b48b0a1d8c291cf6aaaa3dcaa92268a
          name: vexxhost/ansible-collection-ceph
          required: true
          short_name: ansible-collection-ceph
          src_dir: src/github.com/vexxhost/ansible-collection-ceph
        github.com/vexxhost/ansible-collection-containers:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/ansible-collection-containers
          checkout: main
          checkout_description: zuul branch
          commit: 3942d5f8d06360982cff93571e33aab051674714
          name: vexxhost/ansible-collection-containers
          required: true
          short_name: ansible-collection-containers
          src_dir: src/github.com/vexxhost/ansible-collection-containers
        github.com/vexxhost/ansible-collection-kubernetes:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/ansible-collection-kubernetes
          checkout: main
          checkout_description: zuul branch
          commit: 9d5de1cc18913b012de2196667e5e6868d41d7e3
          name: vexxhost/ansible-collection-kubernetes
          required: true
          short_name: ansible-collection-kubernetes
          src_dir: src/github.com/vexxhost/ansible-collection-kubernetes
        github.com/vexxhost/atmosphere:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/atmosphere
          checkout: main
          checkout_description: zuul branch
          commit: c7af1c6e3fa51ee0c2836100e9c3eed5ac69c2e6
          name: vexxhost/atmosphere
          required: false
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
        github.com/vexxhost/atmosphere.common:
          canonical_hostname: github.com
          canonical_name: github.com/vexxhost/atmosphere.common
          checkout: main
          checkout_description: zuul branch
          commit: d00ec7f88fdc7ca2ce504a7e19c4049986cdac86
          name: vexxhost/atmosphere.common
          required: true
          short_name: atmosphere.common
          src_dir: src/github.com/vexxhost/atmosphere.common
        opendev.org/openstack/ansible-collections-openstack:
          canonical_hostname: opendev.org
          canonical_name: opendev.org/openstack/ansible-collections-openstack
          checkout: master
          checkout_description: project default branch
          commit: 209cf2d60533d5094aaf0308765d2e538091f203
          name: openstack/ansible-collections-openstack
          required: true
          short_name: ansible-collections-openstack
          src_dir: src/opendev.org/openstack/ansible-collections-openstack
      ref: refs/pull/4142/head
      resources: {}
      tenant: oss
      timeout: 1800
      topic: null
      voting: true
