summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Rosmaita <rosmaita.fossdev@gmail.com>2021-09-23 19:20:36 -0400
committerBrian Rosmaita <rosmaita.fossdev@gmail.com>2021-09-23 19:20:36 -0400
commit39a0a92760b4f17772b26a25797cefe4a8047584 (patch)
treeb49decf151e3db5e7dffcf2274bfa6f5cd1b8d14
parent6ff9e30e175f2df80fb27701bcdc7e34f0edfb9e (diff)
downloadpython-cinderclient-39a0a92760b4f17772b26a25797cefe4a8047584.tar.gz
Correct "Increase default quotas for zuul jobs"
It turns out that you can't use the devstack post_config phase for this because it happens too late. The quota settings must be made to cinder.conf before cinder-manage db_sync is called where they're used to set the max limit for the tables used by the db quotas driver. Depends-on: https://review.opendev.org/c/openstack/devstack/+/803521 Change-Id: I3bb7d9f9bede063573b24fb5a33a364c53d52434
-rw-r--r--.zuul.yaml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.zuul.yaml b/.zuul.yaml
index 3bfb656..6181f71 100644
--- a/.zuul.yaml
+++ b/.zuul.yaml
@@ -11,11 +11,9 @@
devstack_localrc:
USE_PYTHON3: true
VOLUME_BACKING_FILE_SIZE: 16G
- devstack_local_conf:
- post-config:
- $CINDER_CONF:
- DEFAULT:
- quota_volumes: 25
+ CINDER_QUOTA_VOLUMES: 25
+ CINDER_QUOTA_BACKUPS: 25
+ CINDER_QUOTA_SNAPSHOTS: 25
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$