scenario001: deploy Cinder with RBD backend
Improve scenario001 with Cinder + RBD coverage. Also remove Barbican bits, we don't deploy Barbican in scenario001, but 002. Change-Id: Ib9cadbefcb3ddcdb4812f47ff5496e74b2bd888d
This commit is contained in:
parent
adcb48823b
commit
26c229a4b5
@ -53,6 +53,10 @@ parameter_defaults:
|
|||||||
- OS::TripleO::Services::CephMon
|
- OS::TripleO::Services::CephMon
|
||||||
- OS::TripleO::Services::CephOSD
|
- OS::TripleO::Services::CephOSD
|
||||||
- OS::TripleO::Services::CephClient
|
- OS::TripleO::Services::CephClient
|
||||||
|
- OS::TripleO::Services::CinderApi
|
||||||
|
- OS::TripleO::Services::CinderBackup
|
||||||
|
- OS::TripleO::Services::CinderScheduler
|
||||||
|
- OS::TripleO::Services::CinderVolume
|
||||||
ControllerExtraConfig:
|
ControllerExtraConfig:
|
||||||
nova::compute::libvirt::services::libvirt_virt_type: qemu
|
nova::compute::libvirt::services::libvirt_virt_type: qemu
|
||||||
nova::compute::libvirt::libvirt_virt_type: qemu
|
nova::compute::libvirt::libvirt_virt_type: qemu
|
||||||
|
@ -72,12 +72,22 @@ resources:
|
|||||||
router_id: { get_resource: router }
|
router_id: { get_resource: router }
|
||||||
subnet_id: { get_resource: private_subnet }
|
subnet_id: { get_resource: private_subnet }
|
||||||
|
|
||||||
|
volume1:
|
||||||
|
type: OS::Cinder::Volume
|
||||||
|
properties:
|
||||||
|
name: Volume1
|
||||||
|
image: { get_param: image }
|
||||||
|
size: 1
|
||||||
|
|
||||||
server1:
|
server1:
|
||||||
type: OS::Nova::Server
|
type: OS::Nova::Server
|
||||||
|
depends_on: volume1
|
||||||
properties:
|
properties:
|
||||||
name: Server1
|
name: Server1
|
||||||
|
block_device_mapping:
|
||||||
|
- device_name: vda
|
||||||
|
volume_id: { get_resource: volume1 }
|
||||||
flavor: { get_resource: test_flavor }
|
flavor: { get_resource: test_flavor }
|
||||||
image: { get_param: image }
|
|
||||||
key_name: { get_resource: key_pair }
|
key_name: { get_resource: key_pair }
|
||||||
networks:
|
networks:
|
||||||
- port: { get_resource: server1_port }
|
- port: { get_resource: server1_port }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user