1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- class nova::cell_v2::simple_setup (
- $extra_params = '',
- $transport_url = undef,
- $database_connection = undef,
- ) {
- include ::nova::deps
- include ::nova::cell_v2::map_cell0
- nova::cell_v2::cell { 'default':
- extra_params => $extra_params,
- transport_url => $transport_url,
- database_connection => $database_connection
- }
- include ::nova::cell_v2::discover_hosts
- Class['nova::cell_v2::map_cell0'] ->
- Nova::Cell_v2::Cell <| |> ~>
- Class['nova::cell_v2::discover_hosts']
- }
|