feat: Add ironic and octavia into service_mapping
1. add ironic into service_mapping 2. add octavia into service_mapping 3. change interface_type as public Change-Id: I9ffa419ffac3b7f20784cf7ae4e12a26e3e6bb4d
This commit is contained in:
parent
1eebe91eaf
commit
12c0618314
@ -2,9 +2,9 @@ default:
|
|||||||
access_token_expire: 3600
|
access_token_expire: 3600
|
||||||
access_token_renew: 1800
|
access_token_renew: 1800
|
||||||
cors_allow_origins: []
|
cors_allow_origins: []
|
||||||
database_url: sqlite:////tmp/skyline.db
|
database_url: mysql://root:root@localhost:3306/skyline
|
||||||
debug: false
|
debug: false
|
||||||
log_dir: /tmp
|
log_dir: ./log
|
||||||
secret_key: aCtmgbcUqYUy_HNVg5BDXCaeJgJQzHJXwqbXr0Nmb2o
|
secret_key: aCtmgbcUqYUy_HNVg5BDXCaeJgJQzHJXwqbXr0Nmb2o
|
||||||
session_name: session
|
session_name: session
|
||||||
developer:
|
developer:
|
||||||
@ -66,9 +66,11 @@ openstack:
|
|||||||
nginx_prefix: /api/openstack
|
nginx_prefix: /api/openstack
|
||||||
reclaim_instance_interval: 604800
|
reclaim_instance_interval: 604800
|
||||||
service_mapping:
|
service_mapping:
|
||||||
|
baremetal: ironic
|
||||||
compute: nova
|
compute: nova
|
||||||
identity: keystone
|
identity: keystone
|
||||||
image: glance
|
image: glance
|
||||||
|
load-balancer: octavia
|
||||||
network: neutron
|
network: neutron
|
||||||
orchestration: heat
|
orchestration: heat
|
||||||
placement: placement
|
placement: placement
|
||||||
|
@ -74,7 +74,7 @@ interface_type = Opt(
|
|||||||
name="interface_type",
|
name="interface_type",
|
||||||
description="OpenStack endpoint interface type",
|
description="OpenStack endpoint interface type",
|
||||||
schema=InterfaceType,
|
schema=InterfaceType,
|
||||||
default="internal",
|
default="public",
|
||||||
)
|
)
|
||||||
|
|
||||||
nginx_prefix = Opt(
|
nginx_prefix = Opt(
|
||||||
@ -173,6 +173,8 @@ service_mapping = Opt(
|
|||||||
"network": "neutron",
|
"network": "neutron",
|
||||||
"compute": "nova",
|
"compute": "nova",
|
||||||
"placement": "placement",
|
"placement": "placement",
|
||||||
|
"baremetal": "ironic",
|
||||||
|
"load-balancer": "octavia",
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user