Files
puppet-nova/manifests/compute/image_cache.pp
Takashi Kajinami 51829b985f Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: Ibe75e48eeb387c213c42511797c59b9df39a7762
2023-03-02 12:25:22 +09:00

64 lines
2.6 KiB
Puppet

# == Class: nova::compute::image_cache
#
# Configures image caching in nova
#
# === Parameters:
#
# [*manager_interval*]
# (optional) Number of seconds to wait between runs of the image cache manager.
# Defaults to $facts['os_service_default']
#
# [*subdirectory_name*]
# (optional) Location of cached images.
# Defaults to $facts['os_service_default']
#
# [*remove_unused_base_images*]
# (optional) Should unused base images be removed?
# Defaults to $facts['os_service_default']
#
# [*remove_unused_original_minimum_age_seconds*]
# (optional) Unused unresized base images younger than this will not be removed.
# Defaults to $facts['os_service_default']
#
# [*remove_unused_resized_minimum_age_seconds*]
# (optional) Unused resized base images younger than this will not be removed.
# Defaults to $facts['os_service_default']
#
# [*precache_concurrency*]
# (optional) Maximum number of compute hosts to trigger image precaching
# in parallel.
# Defaults to $facts['os_service_default']
#
class nova::compute::image_cache (
$manager_interval = $facts['os_service_default'],
$subdirectory_name = $facts['os_service_default'],
$remove_unused_base_images = $facts['os_service_default'],
$remove_unused_original_minimum_age_seconds = $facts['os_service_default'],
$remove_unused_resized_minimum_age_seconds = $facts['os_service_default'],
$precache_concurrency = $facts['os_service_default']
) {
include nova::deps
$remove_unused_base_images_real = pick(
$::nova::compute::libvirt::remove_unused_base_images,
$remove_unused_base_images)
$remove_unused_original_minimum_age_seconds_real = pick(
$::nova::compute::libvirt::remove_unused_original_minimum_age_seconds,
$remove_unused_original_minimum_age_seconds)
$remove_unused_resized_minimum_age_seconds_real = pick(
$::nova::compute::libvirt::remove_unused_resized_minimum_age_seconds,
$remove_unused_resized_minimum_age_seconds)
nova_config {
'image_cache/manager_interval': value => $manager_interval;
'image_cache/subdirectory_name': value => $subdirectory_name;
'image_cache/remove_unused_base_images': value => $remove_unused_base_images_real;
'image_cache/remove_unused_original_minimum_age_seconds': value => $remove_unused_original_minimum_age_seconds_real;
'image_cache/remove_unused_resized_minimum_age_seconds': value => $remove_unused_resized_minimum_age_seconds_real;
'image_cache/precache_concurrency': value => $precache_concurrency;
}
}