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
      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
      cilium_ipv4_cidr: 172.24.0.0/16
      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: 5a485100-99f1-4d56-8e0e-123ee9b01ff3
        host_id: 571d5e5ab8f99eb6066d22838dc03059a55de74ec327a875b342f73d
        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:fec1:ba65
        region: ca-ymq-1
        slot: null
      zuul_node:
        az: nova
        cloud: public
        external_id: 5a485100-99f1-4d56-8e0e-123ee9b01ff3
        host_id: 571d5e5ab8f99eb6066d22838dc03059a55de74ec327a875b342f73d
        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:fec1:ba65
        region: ca-ymq-1
        slot: null
        uuid: null
  vars:
    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
    cilium_ipv4_cidr: 172.24.0.0/16
    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: 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:stable/2023.1}}
        source: vexxhost/atmosphere/.zuul.yaml@stable/2023.1#17>'
      - '<Job atmosphere-molecule-csi explicit: None implied: {MatchAny:{ImpliedBranchMatcher:stable/2023.1}}
        source: vexxhost/atmosphere/.zuul.yaml@stable/2023.1#53>'
      - '<Job atmosphere-molecule-csi-rbd explicit: None implied: {MatchAny:{ImpliedBranchMatcher:stable/2023.1}}
        source: vexxhost/atmosphere/.zuul.yaml@stable/2023.1#66>'
      - '<Job atmosphere-molecule-csi-rbd explicit: None implied: None source: vexxhost/atmosphere/.zuul.yaml@stable/2023.1#72>'
      ansible_version: '9'
      attempts: 2
      branch: stable/2023.1
      build: 5292569bb51d4eaf98a334d4ec95c6a2
      build_refs:
      - branch: stable/2023.1
        change: '3619'
        change_message: "[stable/2023.1] Fix AlertmanagerClusterCrashlooping false
          positive by preserving endpoint label\n\nManual cherry-pick of #3581 to
          stable/2023.1. The automatic backport failed with empty patch.\n\n## Root
          Cause\n\nServiceMonitor relabeling drops the `endpoint` label, causing metrics
          from different endpoints to merge into a single time series. For alertmanager,
          this merges `process_start_time_seconds` from two processes:\n- alertmanager
          (port 9093): `1.76520548151e+09`\n- config-reloader sidecar (port 8080):
          `1.76520548159e+09`\n\nThe values alternate on each scrape, making `changes()`
          \u2248 number of scrapes, triggering the crashloop alert despite 0 actual
          restarts.\n\n## Changes\n\n- **roles/kube_prometheus_stack/vars/main.yml**:
          Remove `endpoint` from labeldrop regex to preserve endpoint label differentiation\n-
          **.github/styles/config/vocabularies/Base/accept.txt**: Add \"Alertmanager\"
          for Vale linting\n- **releasenotes/notes/**: Document fix\n\nAffects all
          ServiceMonitors using the `&relabelings_instance_to_pod_name` anchor (prometheus,
          grafana, keycloak, etc.).\n\n<!-- START COPILOT ORIGINAL PROMPT -->\n\n\n\n<details>\n\n<summary>Original
          prompt</summary>\n\n> \n> ----\n> \n> *This section details on the original
          issue you should resolve*\n> \n> <issue_title>[stable/2023.1] Fix AlertmanagerClusterCrashlooping
          false positive by preserving endpoint label</issue_title>\n> <issue_description>Manual
          cherrypick required.\n> \n> vexxhost/atmosphere#3581 failed to apply on
          top of branch \"stable/2023.1\":\n> ```\n> Patch is empty.\n> hint: When
          you have resolved this problem, run \"git am --continue\".\n> hint: If you
          prefer to skip this patch, run \"git am --skip\" instead.\n> hint: To record
          the empty patch as an empty commit, run \"git am --allow-empty\".\n> hint:
          To restore the original branch and stop patching, run \"git am --abort\".\n>
          hint: Disable this message with \"git config advice.mergeConflict false\"\n>
          \n> ```</issue_description>\n> \n> <agent_instructions>Can you create a
          clean cherry-pick for the PR that failed to backport?</agent_instructions>\n>
          \n> ## Comments on the Issue (you are @copilot in this section)\n> \n> <comments>\n>
          </comments>\n> \n\n\n</details>\n\n\n\n<!-- START COPILOT CODING AGENT SUFFIX
          -->\n\n- Fixes vexxhost/atmosphere#3608\n\n<!-- START COPILOT CODING AGENT
          TIPS -->\n---\n\n\U0001F4AC We'd love your input! Share your thoughts on
          Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey).\n"
        change_url: https://github.com/vexxhost/atmosphere/pull/3619
        commit_id: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
        patchset: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
        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
      buildset: ff08c2668f2e4961b1ab2e2b48c3a48d
      buildset_refs:
      - branch: stable/2023.1
        change: '3619'
        change_message: "[stable/2023.1] Fix AlertmanagerClusterCrashlooping false
          positive by preserving endpoint label\n\nManual cherry-pick of #3581 to
          stable/2023.1. The automatic backport failed with empty patch.\n\n## Root
          Cause\n\nServiceMonitor relabeling drops the `endpoint` label, causing metrics
          from different endpoints to merge into a single time series. For alertmanager,
          this merges `process_start_time_seconds` from two processes:\n- alertmanager
          (port 9093): `1.76520548151e+09`\n- config-reloader sidecar (port 8080):
          `1.76520548159e+09`\n\nThe values alternate on each scrape, making `changes()`
          \u2248 number of scrapes, triggering the crashloop alert despite 0 actual
          restarts.\n\n## Changes\n\n- **roles/kube_prometheus_stack/vars/main.yml**:
          Remove `endpoint` from labeldrop regex to preserve endpoint label differentiation\n-
          **.github/styles/config/vocabularies/Base/accept.txt**: Add \"Alertmanager\"
          for Vale linting\n- **releasenotes/notes/**: Document fix\n\nAffects all
          ServiceMonitors using the `&relabelings_instance_to_pod_name` anchor (prometheus,
          grafana, keycloak, etc.).\n\n<!-- START COPILOT ORIGINAL PROMPT -->\n\n\n\n<details>\n\n<summary>Original
          prompt</summary>\n\n> \n> ----\n> \n> *This section details on the original
          issue you should resolve*\n> \n> <issue_title>[stable/2023.1] Fix AlertmanagerClusterCrashlooping
          false positive by preserving endpoint label</issue_title>\n> <issue_description>Manual
          cherrypick required.\n> \n> vexxhost/atmosphere#3581 failed to apply on
          top of branch \"stable/2023.1\":\n> ```\n> Patch is empty.\n> hint: When
          you have resolved this problem, run \"git am --continue\".\n> hint: If you
          prefer to skip this patch, run \"git am --skip\" instead.\n> hint: To record
          the empty patch as an empty commit, run \"git am --allow-empty\".\n> hint:
          To restore the original branch and stop patching, run \"git am --abort\".\n>
          hint: Disable this message with \"git config advice.mergeConflict false\"\n>
          \n> ```</issue_description>\n> \n> <agent_instructions>Can you create a
          clean cherry-pick for the PR that failed to backport?</agent_instructions>\n>
          \n> ## Comments on the Issue (you are @copilot in this section)\n> \n> <comments>\n>
          </comments>\n> \n\n\n</details>\n\n\n\n<!-- START COPILOT CODING AGENT SUFFIX
          -->\n\n- Fixes vexxhost/atmosphere#3608\n\n<!-- START COPILOT CODING AGENT
          TIPS -->\n---\n\n\U0001F4AC We'd love your input! Share your thoughts on
          Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey).\n"
        change_url: https://github.com/vexxhost/atmosphere/pull/3619
        commit_id: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
        patchset: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
        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
      change: '3619'
      change_message: "[stable/2023.1] Fix AlertmanagerClusterCrashlooping false positive
        by preserving endpoint label\n\nManual cherry-pick of #3581 to stable/2023.1.
        The automatic backport failed with empty patch.\n\n## Root Cause\n\nServiceMonitor
        relabeling drops the `endpoint` label, causing metrics from different endpoints
        to merge into a single time series. For alertmanager, this merges `process_start_time_seconds`
        from two processes:\n- alertmanager (port 9093): `1.76520548151e+09`\n- config-reloader
        sidecar (port 8080): `1.76520548159e+09`\n\nThe values alternate on each scrape,
        making `changes()` \u2248 number of scrapes, triggering the crashloop alert
        despite 0 actual restarts.\n\n## Changes\n\n- **roles/kube_prometheus_stack/vars/main.yml**:
        Remove `endpoint` from labeldrop regex to preserve endpoint label differentiation\n-
        **.github/styles/config/vocabularies/Base/accept.txt**: Add \"Alertmanager\"
        for Vale linting\n- **releasenotes/notes/**: Document fix\n\nAffects all ServiceMonitors
        using the `&relabelings_instance_to_pod_name` anchor (prometheus, grafana,
        keycloak, etc.).\n\n<!-- START COPILOT ORIGINAL PROMPT -->\n\n\n\n<details>\n\n<summary>Original
        prompt</summary>\n\n> \n> ----\n> \n> *This section details on the original
        issue you should resolve*\n> \n> <issue_title>[stable/2023.1] Fix AlertmanagerClusterCrashlooping
        false positive by preserving endpoint label</issue_title>\n> <issue_description>Manual
        cherrypick required.\n> \n> vexxhost/atmosphere#3581 failed to apply on top
        of branch \"stable/2023.1\":\n> ```\n> Patch is empty.\n> hint: When you have
        resolved this problem, run \"git am --continue\".\n> hint: If you prefer to
        skip this patch, run \"git am --skip\" instead.\n> hint: To record the empty
        patch as an empty commit, run \"git am --allow-empty\".\n> hint: To restore
        the original branch and stop patching, run \"git am --abort\".\n> hint: Disable
        this message with \"git config advice.mergeConflict false\"\n> \n> ```</issue_description>\n>
        \n> <agent_instructions>Can you create a clean cherry-pick for the PR that
        failed to backport?</agent_instructions>\n> \n> ## Comments on the Issue (you
        are @copilot in this section)\n> \n> <comments>\n> </comments>\n> \n\n\n</details>\n\n\n\n<!--
        START COPILOT CODING AGENT SUFFIX -->\n\n- Fixes vexxhost/atmosphere#3608\n\n<!--
        START COPILOT CODING AGENT TIPS -->\n---\n\n\U0001F4AC We'd love your input!
        Share your thoughts on Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey).\n"
      change_url: https://github.com/vexxhost/atmosphere/pull/3619
      child_jobs: []
      commit_id: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
      event_id: 26837360-07b5-11f1-8555-9e0f7432a186
      executor:
        hostname: 3a2793d2bd32
        inventory_file: /var/lib/zuul/builds/5292569bb51d4eaf98a334d4ec95c6a2/ansible/inventory.yaml
        log_root: /var/lib/zuul/builds/5292569bb51d4eaf98a334d4ec95c6a2/work/logs
        result_data_file: /var/lib/zuul/builds/5292569bb51d4eaf98a334d4ec95c6a2/work/results.json
        src_root: /var/lib/zuul/builds/5292569bb51d4eaf98a334d4ec95c6a2/work/src
        work_root: /var/lib/zuul/builds/5292569bb51d4eaf98a334d4ec95c6a2/work
      include_vars: []
      items:
      - branch: stable/2023.1
        change: '3619'
        change_message: "[stable/2023.1] Fix AlertmanagerClusterCrashlooping false
          positive by preserving endpoint label\n\nManual cherry-pick of #3581 to
          stable/2023.1. The automatic backport failed with empty patch.\n\n## Root
          Cause\n\nServiceMonitor relabeling drops the `endpoint` label, causing metrics
          from different endpoints to merge into a single time series. For alertmanager,
          this merges `process_start_time_seconds` from two processes:\n- alertmanager
          (port 9093): `1.76520548151e+09`\n- config-reloader sidecar (port 8080):
          `1.76520548159e+09`\n\nThe values alternate on each scrape, making `changes()`
          \u2248 number of scrapes, triggering the crashloop alert despite 0 actual
          restarts.\n\n## Changes\n\n- **roles/kube_prometheus_stack/vars/main.yml**:
          Remove `endpoint` from labeldrop regex to preserve endpoint label differentiation\n-
          **.github/styles/config/vocabularies/Base/accept.txt**: Add \"Alertmanager\"
          for Vale linting\n- **releasenotes/notes/**: Document fix\n\nAffects all
          ServiceMonitors using the `&relabelings_instance_to_pod_name` anchor (prometheus,
          grafana, keycloak, etc.).\n\n<!-- START COPILOT ORIGINAL PROMPT -->\n\n\n\n<details>\n\n<summary>Original
          prompt</summary>\n\n> \n> ----\n> \n> *This section details on the original
          issue you should resolve*\n> \n> <issue_title>[stable/2023.1] Fix AlertmanagerClusterCrashlooping
          false positive by preserving endpoint label</issue_title>\n> <issue_description>Manual
          cherrypick required.\n> \n> vexxhost/atmosphere#3581 failed to apply on
          top of branch \"stable/2023.1\":\n> ```\n> Patch is empty.\n> hint: When
          you have resolved this problem, run \"git am --continue\".\n> hint: If you
          prefer to skip this patch, run \"git am --skip\" instead.\n> hint: To record
          the empty patch as an empty commit, run \"git am --allow-empty\".\n> hint:
          To restore the original branch and stop patching, run \"git am --abort\".\n>
          hint: Disable this message with \"git config advice.mergeConflict false\"\n>
          \n> ```</issue_description>\n> \n> <agent_instructions>Can you create a
          clean cherry-pick for the PR that failed to backport?</agent_instructions>\n>
          \n> ## Comments on the Issue (you are @copilot in this section)\n> \n> <comments>\n>
          </comments>\n> \n\n\n</details>\n\n\n\n<!-- START COPILOT CODING AGENT SUFFIX
          -->\n\n- Fixes vexxhost/atmosphere#3608\n\n<!-- START COPILOT CODING AGENT
          TIPS -->\n---\n\n\U0001F4AC We'd love your input! Share your thoughts on
          Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey).\n"
        change_url: https://github.com/vexxhost/atmosphere/pull/3619
        commit_id: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
        patchset: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
        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: W3N0YWJsZS8yMDIzLjFdIEZpeCBBbGVydG1hbmFnZXJDbHVzdGVyQ3Jhc2hsb29waW5nIGZhbHNlIHBvc2l0aXZlIGJ5IHByZXNlcnZpbmcgZW5kcG9pbnQgbGFiZWwKCk1hbnVhbCBjaGVycnktcGljayBvZiAjMzU4MSB0byBzdGFibGUvMjAyMy4xLiBUaGUgYXV0b21hdGljIGJhY2twb3J0IGZhaWxlZCB3aXRoIGVtcHR5IHBhdGNoLgoKIyMgUm9vdCBDYXVzZQoKU2VydmljZU1vbml0b3IgcmVsYWJlbGluZyBkcm9wcyB0aGUgYGVuZHBvaW50YCBsYWJlbCwgY2F1c2luZyBtZXRyaWNzIGZyb20gZGlmZmVyZW50IGVuZHBvaW50cyB0byBtZXJnZSBpbnRvIGEgc2luZ2xlIHRpbWUgc2VyaWVzLiBGb3IgYWxlcnRtYW5hZ2VyLCB0aGlzIG1lcmdlcyBgcHJvY2Vzc19zdGFydF90aW1lX3NlY29uZHNgIGZyb20gdHdvIHByb2Nlc3NlczoKLSBhbGVydG1hbmFnZXIgKHBvcnQgOTA5Myk6IGAxLjc2NTIwNTQ4MTUxZSswOWAKLSBjb25maWctcmVsb2FkZXIgc2lkZWNhciAocG9ydCA4MDgwKTogYDEuNzY1MjA1NDgxNTllKzA5YAoKVGhlIHZhbHVlcyBhbHRlcm5hdGUgb24gZWFjaCBzY3JhcGUsIG1ha2luZyBgY2hhbmdlcygpYCDiiYggbnVtYmVyIG9mIHNjcmFwZXMsIHRyaWdnZXJpbmcgdGhlIGNyYXNobG9vcCBhbGVydCBkZXNwaXRlIDAgYWN0dWFsIHJlc3RhcnRzLgoKIyMgQ2hhbmdlcwoKLSAqKnJvbGVzL2t1YmVfcHJvbWV0aGV1c19zdGFjay92YXJzL21haW4ueW1sKio6IFJlbW92ZSBgZW5kcG9pbnRgIGZyb20gbGFiZWxkcm9wIHJlZ2V4IHRvIHByZXNlcnZlIGVuZHBvaW50IGxhYmVsIGRpZmZlcmVudGlhdGlvbgotICoqLmdpdGh1Yi9zdHlsZXMvY29uZmlnL3ZvY2FidWxhcmllcy9CYXNlL2FjY2VwdC50eHQqKjogQWRkICJBbGVydG1hbmFnZXIiIGZvciBWYWxlIGxpbnRpbmcKLSAqKnJlbGVhc2Vub3Rlcy9ub3Rlcy8qKjogRG9jdW1lbnQgZml4CgpBZmZlY3RzIGFsbCBTZXJ2aWNlTW9uaXRvcnMgdXNpbmcgdGhlIGAmcmVsYWJlbGluZ3NfaW5zdGFuY2VfdG9fcG9kX25hbWVgIGFuY2hvciAocHJvbWV0aGV1cywgZ3JhZmFuYSwga2V5Y2xvYWssIGV0Yy4pLgoKPCEtLSBTVEFSVCBDT1BJTE9UIE9SSUdJTkFMIFBST01QVCAtLT4KCgoKPGRldGFpbHM+Cgo8c3VtbWFyeT5PcmlnaW5hbCBwcm9tcHQ8L3N1bW1hcnk+Cgo+IAo+IC0tLS0KPiAKPiAqVGhpcyBzZWN0aW9uIGRldGFpbHMgb24gdGhlIG9yaWdpbmFsIGlzc3VlIHlvdSBzaG91bGQgcmVzb2x2ZSoKPiAKPiA8aXNzdWVfdGl0bGU+W3N0YWJsZS8yMDIzLjFdIEZpeCBBbGVydG1hbmFnZXJDbHVzdGVyQ3Jhc2hsb29waW5nIGZhbHNlIHBvc2l0aXZlIGJ5IHByZXNlcnZpbmcgZW5kcG9pbnQgbGFiZWw8L2lzc3VlX3RpdGxlPgo+IDxpc3N1ZV9kZXNjcmlwdGlvbj5NYW51YWwgY2hlcnJ5cGljayByZXF1aXJlZC4KPiAKPiB2ZXh4aG9zdC9hdG1vc3BoZXJlIzM1ODEgZmFpbGVkIHRvIGFwcGx5IG9uIHRvcCBvZiBicmFuY2ggInN0YWJsZS8yMDIzLjEiOgo+IGBgYAo+IFBhdGNoIGlzIGVtcHR5Lgo+IGhpbnQ6IFdoZW4geW91IGhhdmUgcmVzb2x2ZWQgdGhpcyBwcm9ibGVtLCBydW4gImdpdCBhbSAtLWNvbnRpbnVlIi4KPiBoaW50OiBJZiB5b3UgcHJlZmVyIHRvIHNraXAgdGhpcyBwYXRjaCwgcnVuICJnaXQgYW0gLS1za2lwIiBpbnN0ZWFkLgo+IGhpbnQ6IFRvIHJlY29yZCB0aGUgZW1wdHkgcGF0Y2ggYXMgYW4gZW1wdHkgY29tbWl0LCBydW4gImdpdCBhbSAtLWFsbG93LWVtcHR5Ii4KPiBoaW50OiBUbyByZXN0b3JlIHRoZSBvcmlnaW5hbCBicmFuY2ggYW5kIHN0b3AgcGF0Y2hpbmcsIHJ1biAiZ2l0IGFtIC0tYWJvcnQiLgo+IGhpbnQ6IERpc2FibGUgdGhpcyBtZXNzYWdlIHdpdGggImdpdCBjb25maWcgYWR2aWNlLm1lcmdlQ29uZmxpY3QgZmFsc2UiCj4gCj4gYGBgPC9pc3N1ZV9kZXNjcmlwdGlvbj4KPiAKPiA8YWdlbnRfaW5zdHJ1Y3Rpb25zPkNhbiB5b3UgY3JlYXRlIGEgY2xlYW4gY2hlcnJ5LXBpY2sgZm9yIHRoZSBQUiB0aGF0IGZhaWxlZCB0byBiYWNrcG9ydD88L2FnZW50X2luc3RydWN0aW9ucz4KPiAKPiAjIyBDb21tZW50cyBvbiB0aGUgSXNzdWUgKHlvdSBhcmUgQGNvcGlsb3QgaW4gdGhpcyBzZWN0aW9uKQo+IAo+IDxjb21tZW50cz4KPiA8L2NvbW1lbnRzPgo+IAoKCjwvZGV0YWlscz4KCgoKPCEtLSBTVEFSVCBDT1BJTE9UIENPRElORyBBR0VOVCBTVUZGSVggLS0+CgotIEZpeGVzIHZleHhob3N0L2F0bW9zcGhlcmUjMzYwOAoKPCEtLSBTVEFSVCBDT1BJTE9UIENPRElORyBBR0VOVCBUSVBTIC0tPgotLS0KCvCfkqwgV2UnZCBsb3ZlIHlvdXIgaW5wdXQhIFNoYXJlIHlvdXIgdGhvdWdodHMgb24gQ29waWxvdCBjb2RpbmcgYWdlbnQgaW4gb3VyIFsyIG1pbnV0ZSBzdXJ2ZXldKGh0dHBzOi8vZ2guaW8vY29waWxvdC1jb2RpbmctYWdlbnQtc3VydmV5KS4K
      patchset: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
      pipeline: check
      playbook_context:
        playbook_projects:
          trusted/project_0/vexxhost.dev/zuul-config:
            canonical_name: vexxhost.dev/zuul-config
            checkout: main
            commit: 9052b5a7781b3346e4cffd452a54448cbff54d8b
          trusted/project_1/opendev.org/zuul/zuul-jobs:
            canonical_name: opendev.org/zuul/zuul-jobs
            checkout: master
            commit: 571c0efa3491d12ecb8fc1169c510716d55c0fc2
          trusted/project_2/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: a6e68243e02ef030ce5e75f8b67630880c475f33
          untrusted/project_0/github.com/vexxhost/zuul-jobs:
            canonical_name: github.com/vexxhost/zuul-jobs
            checkout: main
            commit: a6e68243e02ef030ce5e75f8b67630880c475f33
          untrusted/project_1/vexxhost.dev/zuul-config:
            canonical_name: vexxhost.dev/zuul-config
            checkout: main
            commit: 9052b5a7781b3346e4cffd452a54448cbff54d8b
          untrusted/project_2/opendev.org/zuul/zuul-jobs:
            canonical_name: opendev.org/zuul/zuul-jobs
            checkout: master
            commit: 571c0efa3491d12ecb8fc1169c510716d55c0fc2
          untrusted/project_3/github.com/vexxhost/atmosphere:
            canonical_name: github.com/vexxhost/atmosphere
            checkout: stable/2023.1
            commit: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
          untrusted/project_4/opendev.org/openstack/openstack-helm:
            canonical_name: opendev.org/openstack/openstack-helm
            checkout: master
            commit: 0693074879fd8de267774e7bc45b7b4c6341c490
        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_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: stable/2023.1
          checkout_description: zuul branch
          commit: 21e1720bd1d1cfe8dba52bf811a42feedfd71c7b
          name: vexxhost/atmosphere
          required: false
          short_name: atmosphere
          src_dir: src/github.com/vexxhost/atmosphere
      ref: refs/pull/3619/head
      resources: {}
      tenant: oss
      timeout: 1800
      topic: null
      voting: true
