diff options
Diffstat (limited to 'src/gating')
-rw-r--r-- | src/gating/gating.rst | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/src/gating/gating.rst b/src/gating/gating.rst index 69723bb..06dafbe 100644 --- a/src/gating/gating.rst +++ b/src/gating/gating.rst | |||
@@ -120,7 +120,7 @@ Large numbers of | |||
120 | 120 | ||
121 | * Contributors (\~2k in any given 6 month period) | 121 | * Contributors (\~2k in any given 6 month period) |
122 | * Changes | 122 | * Changes |
123 | * Code Repositories (1904 as of this morning) | 123 | * Code Repositories (1930 as of this morning) |
124 | 124 | ||
125 | OpenStack Scale Comparison | 125 | OpenStack Scale Comparison |
126 | ========================== | 126 | ========================== |
@@ -139,6 +139,7 @@ OpenStack Scale Comparison | |||
139 | * 10,000 changes merged per month | 139 | * 10,000 changes merged per month |
140 | 140 | ||
141 | By comparison, our friends at the amazing project Ansible received | 141 | By comparison, our friends at the amazing project Ansible received |
142 | |||
142 | 13,000 changes and had merged 8,000 of them in its first 4 years. | 143 | 13,000 changes and had merged 8,000 of them in its first 4 years. |
143 | 144 | ||
144 | Four Opens | 145 | Four Opens |
@@ -600,19 +601,25 @@ Playbooks | |||
600 | https://github.com/projectatomic/bubblewrap | 601 | https://github.com/projectatomic/bubblewrap |
601 | * Playbooks are not allowed to execute content on 'localhost' | 602 | * Playbooks are not allowed to execute content on 'localhost' |
602 | 603 | ||
603 | Devstack-gate / Tempest Playbook | 604 | devstack / Tempest Playbook |
604 | ================================ | 605 | =========================== |
605 | 606 | ||
606 | .. code:: yaml | 607 | .. code:: yaml |
607 | 608 | ||
608 | # devstack-gate / tempest playbook | 609 | # Changes that run through devstack-tempest are likely to have an impact on |
609 | hosts: all | 610 | # the devstack part of the job, so we keep devstack in the main play to |
610 | roles: | 611 | # avoid zuul retrying on legitimate failures. |
611 | - setup-multinode-networking | 612 | - hosts: all |
612 | - partition-swap | 613 | roles: |
613 | - configure-mirrors | 614 | - run-devstack |
614 | - run-devstack | 615 | |
615 | - run-tempest | 616 | # We run tests only on one node, regardless how many nodes are in the system |
617 | - hosts: tempest | ||
618 | roles: | ||
619 | - setup-tempest-run-dir | ||
620 | - setup-tempest-data-dir | ||
621 | - acl-devstack-files | ||
622 | - run-tempest | ||
616 | 623 | ||
617 | Simple Shell Playbook | 624 | Simple Shell Playbook |
618 | ===================== | 625 | ===================== |