summaryrefslogtreecommitdiffstats
path: root/patches/opnfv-fuel/0034-Nailgun-Increase-target-image-build-timeout.patch
blob: 2fbe680a0cc16862071557f9e4edc8953be247f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Date: Sat, 11 Jun 2016 21:37:29 +0200
Subject: [PATCH] Nailgun: Increase target image build timeout

Currently we're close to 40 minutes of image building (thanks to
qemu-debootstrap). If network connectivity is a bit slow (happened to
me) it's easy to go over 1h limit. Therefore let's push this to 2 hours
to be safer.

[ Alexandru Avadanii ]
Moved original patch wrote by Stan to post-install.

Signed-off-by: Stanislaw Kardach <stanislaw.kardach@caviumnetworks.com>
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
---
 .../f_isoroot/f_bootstrap/post-scripts/80_prepare_cross_builds.sh  | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/build/f_isoroot/f_bootstrap/post-scripts/80_prepare_cross_builds.sh b/build/f_isoroot/f_bootstrap/post-scripts/80_prepare_cross_builds.sh
index 7ceaacc..0435a28 100755
--- a/build/f_isoroot/f_bootstrap/post-scripts/80_prepare_cross_builds.sh
+++ b/build/f_isoroot/f_bootstrap/post-scripts/80_prepare_cross_builds.sh
@@ -45,6 +45,13 @@ if which dpkg > /dev/null 2>&1; then
     # the maximum timeout value for mcagent has to be increased (use 2h).
     sed -i.bak -r 's/^(\s+:timeout\s*=>)\s*[[:digit:]]+$/\1 7200/' \
       /usr/libexec/mcollective/mcollective/agent/execute_shell_command.ddl
+    # Update nailgun timeout setting (2h)
+    if [ -f ${PYTHON_SITEPKGS_DIR}/nailgun/settings.yaml ]; then
+      sed -i.bak -r \
+        's/^(PROVISIONING_IMAGES_BUILD_TIMEOUT:)\s*[[:digit:]]+$/\1 7200/' \
+        ${PYTHON_SITEPKGS_DIR}/nailgun/settings.yaml
+      echo "INFO: [1h] => [2h] updated nailgun image build timeout."
+    fi
 
     # Bootstrap: Use gzip instead of xz compression.
     #
> utils from yardstick.common import constants as consts try: from urlparse import urljoin except ImportError: from urllib.parse import urljoin LOG = logging.getLogger(__name__) app = Flask(__name__) app.config['MAX_CONTENT_LENGTH'] = 2 * 1024 * 1024 * 1024 Swagger(app) api = Api(app, errors=consts.API_ERRORS) @app.teardown_request def shutdown_session(exception=None): if exception: LOG.warning(exception.message) db_session.remove() def get_resource(resource_name): name = ''.join(resource_name.split('_')) return next((r for r in utils.itersubclasses(ApiResource) if r.__name__.lower() == name)) def init_db(): def func(a): try: if issubclass(a[1], Base): return True except TypeError: pass return False subclses = filter(func, inspect.getmembers(models, inspect.isclass)) LOG.debug('Import models: %s', [a[1] for a in subclses]) Base.metadata.create_all(bind=engine) def app_wrapper(*args, **kwargs): init_db() return app(*args, **kwargs) def get_endpoint(url): ip = socket.gethostbyname(socket.gethostname()) return urljoin('http://{}:{}'.format(ip, consts.API_PORT), url) for u in urlpatterns: try: api.add_resource(get_resource(u.target), u.url, endpoint=get_endpoint(u.url)) except StopIteration: LOG.error('url resource not found: %s', u.url) if __name__ == '__main__': _init_logging() LOG.setLevel(logging.DEBUG) LOG.info('Starting server') init_db() app.run(host='0.0.0.0')