From: Loic Dachary Date: Fri, 25 Sep 2015 17:54:18 +0000 (+0200) Subject: config: ~/teuthology.yaml check_package_signatures hint X-Git-Tag: 1.1.0~794^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F640%2Fhead;p=teuthology.git config: ~/teuthology.yaml check_package_signatures hint If check_package_signatures is false, the tasks installing packages (install, ceph-deploy, ...) are authorized to skip the package signatures verifications. Set this as the default for a cluster dynamically generated by the OpenStack backend. http://tracker.ceph.com/issues/13249 Refs: #13249 Signed-off-by: Loic Dachary --- diff --git a/docs/siteconfig.rst b/docs/siteconfig.rst index 933cbb32f..ef72db9d2 100644 --- a/docs/siteconfig.rst +++ b/docs/siteconfig.rst @@ -51,6 +51,9 @@ Here is a sample configuration with many of the options set and documented:: # Gitbuilder archive that stores e.g. ceph packages gitbuilder_host: gitbuilder.example.com + # Verify the packages signatures + check_package_signatures: true + # Where all git repos are considered to reside. ceph_git_base_url: https://github.com/ceph/ diff --git a/teuthology/config.py b/teuthology/config.py index e456cc6c5..497a71faf 100644 --- a/teuthology/config.py +++ b/teuthology/config.py @@ -132,6 +132,7 @@ class TeuthologyConfig(YamlConfig): 'reserve_machines': 5, 'ceph_git_base_url': 'https://github.com/ceph/', 'gitbuilder_host': 'gitbuilder.ceph.com', + 'check_package_signatures': True, 'lab_domain': 'front.sepia.ceph.com', 'lock_server': 'http://paddles.front.sepia.ceph.com/', 'max_job_time': 259200, # 3 days diff --git a/teuthology/openstack/setup-openstack.sh b/teuthology/openstack/setup-openstack.sh index f2fc3aea7..16910b918 100755 --- a/teuthology/openstack/setup-openstack.sh +++ b/teuthology/openstack/setup-openstack.sh @@ -54,6 +54,7 @@ archive_upload_key: teuthology/openstack/archive-key lock_server: http://localhost:8080/ results_server: http://localhost:8080/ gitbuilder_host: gitbuilder.ceph.com +check_package_signatures: false queue_port: 11300 queue_host: localhost lab_domain: $labdomain