Puppet Class: manila::coordination

Defined in:
manifests/coordination.pp

Overview

Class: manila::coordination

Setup and configure Manila coordination settings.

Parameters

backend_url

(Optional) Coordination backend URL. Defaults to $facts

Parameters:

  • backend_url (Any) (defaults to: $facts['os_service_default'])


11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'manifests/coordination.pp', line 11

class manila::coordination (
  $backend_url = $facts['os_service_default'],
) {

  include manila::deps

  oslo::coordination{ 'manila_config':
    backend_url => $backend_url
  }

  # all coordination settings should be applied and all packages should be
  # installed before service startup
  Oslo::Coordination['manila_config'] -> Anchor['manila::service::begin']
}