Hi,
I'm trying to deploy latest HDP version 2.6.5.0 via blueprints. I already have working simple blueprint for HDP-2.6.4.0.
BUT now, when trying to to use it against latest version, I have error like below when loading the hostmap.json.
error message:
"status" : 400,
"message" : "The properties [blueprint, repository_version_id, default_password] specified in the request or predicate are not supported for the resource type Blueprint."
here my hostmap.json
{
"blueprint" : "clustername",
"default_password" : "clusterpass",
"repository_version_id": 1,
"host_groups" :[
{
"name" : "host_group_1",
"hosts" : [ { "fqdn" : "{{ master1_hostname }}"} ] },
{
"name" : "host_group_2",
"hosts" : [ { "fqdn" : "{{ master2_hostname }}" } ] },
{
"name" : "host_group_3",
"hosts" : [ { "fqdn" : "{{ master3_hostname }}" } ] },
{
"name" : "host_group_4",
"hosts" : [
{ "fqdn" : "{{ worker1_hostname }}" },
{ "fqdn" : "{{ worker2_hostname }}" },
{ "fqdn" : "{{ worker3_hostname }}" } ] }
]
}