puppet-manila/manifests/coordination.pp
Takashi Kajinami e1aaaf7237 Add support for coordination parameters
The tooz library was introduced to Manila a while ago[1]. This change
adds the new manila::coordination class to manage coordination
parameters and backend packages.

[1] 326755f42ccf0385a02db37e734251860d81b00d

Depends-on: https://review.opendev.org/791628
Change-Id: I1a4c342a1d7876762af51d2c8bef87881719e598
2021-07-06 13:33:08 +09:00

21 lines
382 B
Puppet

# == Class: manila::coordination
#
# Setup and configure Manila coordination settings.
#
# === Parameters
#
# [*backend_url*]
# (Optional) Coordination backend URL.
# Defaults to $::os_service_default
#
class manila::coordination (
$backend_url = $::os_service_default,
) {
include manila::deps
oslo::coordination{ 'manila_config':
backend_url => $backend_url
}
}