[
https://issues.apache.org/jira/browse/AMBARI-23314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jonathan Hurley updated AMBARI-23314:
-------------------------------------
Description:
The operating systems endpoint allows for creation and deletion of repositories
which are associated with a single management pack:
{code}
PUT http://{{ambari-server}}:8080/api/v1/mpacks/1/operating_systems/redhat7
{
"OperatingSystems" : {
"is_ambari_managed" : true,
"repositories" : [
{
"distribution" : null,
"components" : null,
"unique" : true,
"tags" : [ ],
"base_url" :
"http://repo.ambari.apache.org/hdpcore/centos7/HDPCORE-1.0.0-b96/foo",
"os_type" : "redhat7",
"repo_id" : "HDPCORE-1.0.0-b96",
"repo_name" : "HDPCORE",
"mirrors_list" : null,
"default_base_url" : null,
"ambari_managed" : true
},
{
"distribution" : null,
"components" : null,
"unique" : false,
"tags" : [ ],
"base_url" :
"http://repo.ambari.apache.org/hdpcore/centos7/HDP-UTILS-1.1.0.22/foo",
"os_type" : "redhat7",
"repo_id" : "HDP-UTILS-1.1.0.21",
"repo_name" : "HDP-UTILS",
"mirrors_list" : null,
"default_base_url" : null,
"ambari_managed" : true
}
]
}
}
{code}
However, multiple PUTs causes duplicate entries for the same OS. This should be
prevented.
was:
The operating systems endpoint allows for creation and deletion of repositories
which are associated with a single management pack:
{code:title=PUT
http://{{ambari-server}}:8080/api/v1/mpacks/1/operating_systems/redhat7}
{
"OperatingSystems" : {
"is_ambari_managed" : true,
"repositories" : [
{
"distribution" : null,
"components" : null,
"unique" : true,
"tags" : [ ],
"base_url" :
"http://repo.ambari.apache.org/hdpcore/centos7/HDPCORE-1.0.0-b96/foo",
"os_type" : "redhat7",
"repo_id" : "HDPCORE-1.0.0-b96",
"repo_name" : "HDPCORE",
"mirrors_list" : null,
"default_base_url" : null,
"ambari_managed" : true
},
{
"distribution" : null,
"components" : null,
"unique" : false,
"tags" : [ ],
"base_url" :
"http://repo.ambari.apache.org/hdpcore/centos7/HDP-UTILS-1.1.0.22/foo",
"os_type" : "redhat7",
"repo_id" : "HDP-UTILS-1.1.0.21",
"repo_name" : "HDP-UTILS",
"mirrors_list" : null,
"default_base_url" : null,
"ambari_managed" : true
}
]
}
}
{code}
However, multiple PUTs causes duplicate entries for the same OS. This should be
prevented.
> Prevent Multiple OS Entries For a Single Mpack
> ----------------------------------------------
>
> Key: AMBARI-23314
> URL: https://issues.apache.org/jira/browse/AMBARI-23314
> Project: Ambari
> Issue Type: Bug
> Affects Versions: 3.0.0
> Reporter: Jonathan Hurley
> Assignee: Jonathan Hurley
> Priority: Critical
> Fix For: 3.0.0
>
>
> The operating systems endpoint allows for creation and deletion of
> repositories which are associated with a single management pack:
> {code}
> PUT http://{{ambari-server}}:8080/api/v1/mpacks/1/operating_systems/redhat7
> {
> "OperatingSystems" : {
> "is_ambari_managed" : true,
> "repositories" : [
> {
> "distribution" : null,
> "components" : null,
> "unique" : true,
> "tags" : [ ],
> "base_url" :
> "http://repo.ambari.apache.org/hdpcore/centos7/HDPCORE-1.0.0-b96/foo",
> "os_type" : "redhat7",
> "repo_id" : "HDPCORE-1.0.0-b96",
> "repo_name" : "HDPCORE",
> "mirrors_list" : null,
> "default_base_url" : null,
> "ambari_managed" : true
> },
> {
> "distribution" : null,
> "components" : null,
> "unique" : false,
> "tags" : [ ],
> "base_url" :
> "http://repo.ambari.apache.org/hdpcore/centos7/HDP-UTILS-1.1.0.22/foo",
> "os_type" : "redhat7",
> "repo_id" : "HDP-UTILS-1.1.0.21",
> "repo_name" : "HDP-UTILS",
> "mirrors_list" : null,
> "default_base_url" : null,
> "ambari_managed" : true
> }
> ]
> }
> }
> {code}
> However, multiple PUTs causes duplicate entries for the same OS. This should
> be prevented.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)