You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ambari.apache.org by "Hadoop QA (JIRA)" <ji...@apache.org> on 2016/06/30 18:50:10 UTC

[jira] [Commented] (AMBARI-17465) Management packs should be able to install extensions

    [ https://issues.apache.org/jira/browse/AMBARI-17465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15357632#comment-15357632 ] 

Hadoop QA commented on AMBARI-17465:
------------------------------------

{color:red}-1 overall{color}.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12815508/AMBARI-17465.patch
  against trunk revision .

    {color:green}+1 @author{color}.  The patch does not contain any @author tags.

    {color:red}-1 tests included{color}.  The patch doesn't appear to include any new or modified tests.
                        Please justify why no new tests are needed for this patch.
                        Also please list what manual steps were performed to verify this patch.

    {color:green}+1 javac{color}.  The applied patch does not increase the total number of javac compiler warnings.

    {color:green}+1 release audit{color}.  The applied patch does not increase the total number of release audit warnings.

    {color:red}-1 core tests{color}.  The test build failed in ambari-server 

Test results: https://builds.apache.org/job/Ambari-trunk-test-patch/7624//testReport/
Console output: https://builds.apache.org/job/Ambari-trunk-test-patch/7624//console

This message is automatically generated.

> Management packs should be able to install extensions
> -----------------------------------------------------
>
>                 Key: AMBARI-17465
>                 URL: https://issues.apache.org/jira/browse/AMBARI-17465
>             Project: Ambari
>          Issue Type: Improvement
>          Components: ambari-server
>    Affects Versions: 2.4.0
>            Reporter: Tim Thorpe
>            Assignee: Tim Thorpe
>         Attachments: AMBARI-17465.patch
>
>
> Currently management packs (AMBARI-14854) can only add stacks and addon services.  Now that AMBARI-12885 has been resolved, the management packs should be able to add extensions as well.  This would allow the following mpack.json:
> {
>   "type" : "fullrelease",
>   "name" : "MyExtension",
>   "version": "1.0.0.0",
>   "description" : "My Management Pack",
>   "prerequisites": {
>     "minambariversion" : "2.4"
>   },
>   "artifacts": [
>     {
>       "name" : "EXT-extension",
>       "type" : "extension-definition",
>       "source_dir": "extensions/EXT/1.0",
>       "extension_name" : "EXT",
>       "extension_version" : "1.0"
>     }
>   ]
> }
> or alternately with extension-definitions (which will include all extensions listed in the extensions directory):
>   "artifacts": [
>     {
>       "name" : "MyExtensions",
>       "type" : "extension-definitions",
>       "source_dir": "extensions"
>     }
>   ]
> myext-mpack1.0.0.0
> ├── mpack.json
> └── extensions
>     └── EXT
>         └── 1.0
>             └── metainfo.xml
>             └── services
>                 └── HAWQ
>                     └── metainfo.xml
>                 └── PXF
>                     └── metainfo.xml
> It could then be installed with the following command: 
>     ambari-server install-mpack --mpack=/tmp/myext-mpack1.0.0.0.tar.gz -v



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)