Add environment and roles for heat support
Change-Id: I8548c22ed1def430b0c71498d66d0cb4b8f40627 Implements: blueprint heat-support
This commit is contained in:
@@ -78,6 +78,9 @@ override_attributes(
|
||||
},
|
||||
"metering" => {
|
||||
"host" => "10.0.3.10"
|
||||
},
|
||||
"orchestration" => {
|
||||
"host" => "10.0.3.10"
|
||||
}
|
||||
},
|
||||
"developer_mode" => true,
|
||||
@@ -153,6 +156,18 @@ override_attributes(
|
||||
"scheme" => "http",
|
||||
"port" => "9696",
|
||||
"path" => "/v2"
|
||||
},
|
||||
"orchestration-api" => {
|
||||
"host" => "10.0.3.11",
|
||||
"scheme" => "http",
|
||||
"port" => "8004",
|
||||
"path" => "/v1/%(tenant_id)s"
|
||||
},
|
||||
"orchestration-api-cfn" => {
|
||||
"host" => "10.0.3.11",
|
||||
"scheme" => "http",
|
||||
"port" => "8000",
|
||||
"path" => "/v1"
|
||||
}
|
||||
},
|
||||
"identity" => {
|
||||
|
||||
6
roles/os-orchestration-api-cfn.rb
Normal file
6
roles/os-orchestration-api-cfn.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
name "os-orchestration-api-cfn"
|
||||
description "Role for Heat CloudFormation Api Service."
|
||||
run_list(
|
||||
"role[os-base]",
|
||||
"recipe[openstack-orchestration::api-cfn]"
|
||||
)
|
||||
6
roles/os-orchestration-api-cloudwatch.rb
Normal file
6
roles/os-orchestration-api-cloudwatch.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
name "os-orchestration-api-cloudwatch"
|
||||
description "Role for Heat CloudWatch Api Service."
|
||||
run_list(
|
||||
"role[os-base]",
|
||||
"recipe[openstack-orchestration::api-cloudwatch]"
|
||||
)
|
||||
6
roles/os-orchestration-api.rb
Normal file
6
roles/os-orchestration-api.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
name "os-orchestration-api"
|
||||
description "Role for Heat Api Service."
|
||||
run_list(
|
||||
"role[os-base]",
|
||||
"recipe[openstack-orchestration::api]"
|
||||
)
|
||||
6
roles/os-orchestration-engine.rb
Normal file
6
roles/os-orchestration-engine.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
name "os-orchestration-engine"
|
||||
description "Role for Heat Engine Service."
|
||||
run_list(
|
||||
"role[os-base]",
|
||||
"recipe[openstack-orchestration::engine]"
|
||||
)
|
||||
9
roles/os-orchestration.rb
Normal file
9
roles/os-orchestration.rb
Normal file
@@ -0,0 +1,9 @@
|
||||
name "os-orchestration"
|
||||
description "Role for Heat."
|
||||
run_list(
|
||||
"role[os-orchestration-engine]",
|
||||
"role[os-orchestration-api]",
|
||||
"role[os-orchestration-api-cfn]",
|
||||
"role[os-orchestration-api-cloudwatch]",
|
||||
"recipe[openstack-orchestration::identity_registration]"
|
||||
)
|
||||
Reference in New Issue
Block a user