From 90ee7096865d97ddc41ddc71d15fd5bd250d5827 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 1 Jun 2012 14:40:29 -0700 Subject: [PATCH] Install Zuul on stackforge Change-Id: Ibcb77244b371b0cae4d167f4f50839d8ac33397c --- manifests/stackforge.pp | 9 +++++ modules/stackforge-config/README | 1 + .../stackforge-config/files/zuul/layout.yaml | 31 +++++++++++++++ .../stackforge-config/files/zuul/logging.conf | 39 +++++++++++++++++++ 4 files changed, 80 insertions(+) create mode 100644 modules/stackforge-config/README create mode 100644 modules/stackforge-config/files/zuul/layout.yaml create mode 100644 modules/stackforge-config/files/zuul/logging.conf diff --git a/manifests/stackforge.pp b/manifests/stackforge.pp index c277e0ec26..52bc563440 100644 --- a/manifests/stackforge.pp +++ b/manifests/stackforge.pp @@ -79,6 +79,15 @@ node "jenkins.stackforge.org" { projects => ['reddwarf', 'ceilometer', 'heat'] } + class { 'zuul': } + file { "/etc/zuul/layout.yaml": + ensure => 'present', + source => 'puppet:///modules/stackforge-config/zuul/layout.yaml' + } + file { "/etc/zuul/logging.conf": + ensure => 'present', + source => 'puppet:///modules/stackforge-config/zuul/logging.conf' + } } # diff --git a/modules/stackforge-config/README b/modules/stackforge-config/README new file mode 100644 index 0000000000..2ffb8bf738 --- /dev/null +++ b/modules/stackforge-config/README @@ -0,0 +1 @@ +This file stores config files specific to the Stackforge project. diff --git a/modules/stackforge-config/files/zuul/layout.yaml b/modules/stackforge-config/files/zuul/layout.yaml new file mode 100644 index 0000000000..5e1722d524 --- /dev/null +++ b/modules/stackforge-config/files/zuul/layout.yaml @@ -0,0 +1,31 @@ +queues: + - name: check + manager: IndependentQueueManager + trigger: + - event: patchset-created + success: + verified: 1 + failure: + verified: -1 + - name: gate + manager: DependentQueueManager + trigger: + - event: comment-added + approval: + - approved: 1 + success: + verified: 2 + submit: true + failure: + verified: -2 + - name: post + manager: IndependentQueueManager + trigger: + - event: ref-updated + ref: ^(?!refs/).*$ + +jobs: + - name: ^.*-merge$ + failure-message: This change was unable to be automatically merged with the current state of the repository. Please rebase your change and upload a new patchset. + +projects: diff --git a/modules/stackforge-config/files/zuul/logging.conf b/modules/stackforge-config/files/zuul/logging.conf new file mode 100644 index 0000000000..948b05826b --- /dev/null +++ b/modules/stackforge-config/files/zuul/logging.conf @@ -0,0 +1,39 @@ +[loggers] +keys=root,zuul + +[handlers] +keys=console,debug,normal + +[formatters] +keys=simple + +[logger_root] +level=WARNING +handlers=console + +[logger_zuul] +level=DEBUG +handlers=debug,normal +qualname=zuul + +[handler_console] +level=WARNING +class=StreamHandler +formatter=simple +args=(sys.stdout,) + +[handler_debug] +level=DEBUG +class=logging.handlers.TimedRotatingFileHandler +formatter=simple +args=('/var/log/zuul/debug.log', 'midnight', 1, 30,) + +[handler_normal] +level=INFO +class=logging.handlers.TimedRotatingFileHandler +formatter=simple +args=('/var/log/zuul/zuul.log', 'midnight', 1, 30,) + +[formatter_simple] +format=%(asctime)s %(levelname)s %(name)s: %(message)s +datefmt=