From e6915f3795a49f04844c41d7d781c4d495350efd Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Fri, 25 Sep 2015 19:54:18 +0200 Subject: [PATCH] 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 --- docs/siteconfig.rst | 3 +++ teuthology/config.py | 1 + teuthology/openstack/setup-openstack.sh | 1 + 3 files changed, 5 insertions(+) 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 -- 2.47.3