Add missing zuul parameters

Change-Id: I41e8eb35b34a7566e94ece4d144675faf6c93ba3
This commit is contained in:
James E. Blair 2012-05-30 09:25:41 -07:00
parent b5ef357f7d
commit 7338da8e4b
2 changed files with 45 additions and 6 deletions

View File

@ -19,9 +19,18 @@ parameters:
- name: UUID - name: UUID
type: string type: string
description: Zuul provided key to link builds with Gerrit events description: Zuul provided key to link builds with Gerrit events
- name: changes - name: DEPENDENT_CHANGES
type: string type: string
description: Zuul provided list of changes to merge description: Zuul provided list of dependent changes to merge
- name: GERRIT_PROJECT
type: string
description: Zuul provided project name
- name: GERRIT_BRANCH
type: string
description: Zuul provided branch name
- name: GERRIT_REFSPEC
type: string
description: Zuul provided refspec of the change to test
notification_endpoints: notification_endpoints:
- protocol: HTTP - protocol: HTTP
@ -58,9 +67,18 @@ parameters:
- name: UUID - name: UUID
type: string type: string
description: Zuul provided key to link builds with Gerrit events description: Zuul provided key to link builds with Gerrit events
- name: changes - name: DEPENDENT_CHANGES
type: string type: string
description: Zuul provided list of changes to merge description: Zuul provided list of dependent changes to merge
- name: GERRIT_PROJECT
type: string
description: Zuul provided project name
- name: GERRIT_BRANCH
type: string
description: Zuul provided branch name
- name: GERRIT_REFSPEC
type: string
description: Zuul provided refspec of the change to test
notification_endpoints: notification_endpoints:
- protocol: HTTP - protocol: HTTP
@ -97,9 +115,18 @@ parameters:
- name: UUID - name: UUID
type: string type: string
description: Zuul provided key to link builds with Gerrit events description: Zuul provided key to link builds with Gerrit events
- name: changes - name: DEPENDENT_CHANGES
type: string type: string
description: Zuul provided list of changes to merge description: Zuul provided list of dependent changes to merge
- name: GERRIT_PROJECT
type: string
description: Zuul provided project name
- name: GERRIT_BRANCH
type: string
description: Zuul provided branch name
- name: GERRIT_REFSPEC
type: string
description: Zuul provided refspec of the change to test
notification_endpoints: notification_endpoints:
- protocol: HTTP - protocol: HTTP

View File

@ -1,5 +1,12 @@
class zuul () class zuul ()
{ {
$packages = ["python-webob",
"python-paste"]
package { $packages:
ensure => "present",
}
# if we already have the repo the pull updates # if we already have the repo the pull updates
exec { "update_zuul": exec { "update_zuul":
@ -28,4 +35,9 @@ class zuul ()
file { "/etc/zuul": file { "/etc/zuul":
ensure => "directory", ensure => "directory",
} }
file { "/var/log/zuul":
ensure => "directory",
owner => 'jenkins'
}
} }