From 6b84339630c4d30feba94fe0b77b329601e2a5cf Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Thu, 13 Oct 2016 19:51:19 +0000 Subject: [PATCH] add a separate release type for fuel Change-Id: Idde4b1acc5ac36dc216e2f31b1e94714ba260211 Signed-off-by: Doug Hellmann --- README.rst | 3 +++ openstack_releases/project_config.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/README.rst b/README.rst index 96147955ed..184913b20e 100644 --- a/README.rst +++ b/README.rst @@ -248,6 +248,9 @@ The top level of a deliverable file is a mapping with keys: Allows a more flexible versioning in line with xstatic package guidelines and requirements. + ``fuel`` + The Fuel project manages its own packages. + ``releases`` A list of the releases for the deliverable. diff --git a/openstack_releases/project_config.py b/openstack_releases/project_config.py index 62f3373731..3f134e156c 100644 --- a/openstack_releases/project_config.py +++ b/openstack_releases/project_config.py @@ -57,6 +57,9 @@ _RELEASE_JOBS_FOR_TYPE = { 'xstatic': [ 'xstatic-publish-jobs', ], + 'fuel': [ + # Fuel is manually packaged by the team at Mirantis. + ], }