summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2018-05-22 11:25:49 -0700
committerMonty Taylor <mordred@inaugust.com>2018-05-22 11:25:49 -0700
commit31580c2a58a027264c10a095e39a5d2c51151a45 (patch)
treea965cea2a4ee5d234e54f4f9fa510a467cbf5985
parented6d20d66c896b0f4c7a1010a775d58836bac1bf (diff)
Update repo count and devstack playbook
-rw-r--r--src/gating/gating.rst29
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
125OpenStack Scale Comparison 125OpenStack 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
144Four Opens 145Four 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
603Devstack-gate / Tempest Playbook 604devstack / 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
617Simple Shell Playbook 624Simple Shell Playbook
618===================== 625=====================