puppet-horizon/manifests/dashboard.pp
Takashi Kajinami 8bf867856f Recommend dashboard-specific classes
Currently puppet-horizon has implementations to allow more flexible
customization of specific dashboars(heat, octavia and manila) while
it provides the basic one to only install plugin packages.

This change adds a warning message to let users aware of the new
classes which provides more complete support for dashboard parameters.

Change-Id: I1baa3f166ef895bfb55302f144b696a9ace293cc
2022-02-13 13:35:02 +09:00

62 lines
1.7 KiB
Puppet

#
# Copyright (C) 2018 Binero
#
# Author: Tobias Urdin <tobias.urdin@binero.se>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# == Define: horizon::dashboard
#
# This resource installs additional horizon dashboard which is not
# shipped with the horizon packages, but as additional packages.
#
# == Parameters:
#
# [*ensure*]
# (Optional) The ensure state of the dashboard package.
# Defaults to present
#
# == Example:
#
# This will install the correct cloudkitty-dashboard package for your deployment.
# horizon::dashboard { 'cloudkitty': }
#
define horizon::dashboard (
$ensure = 'present',
) {
$dashboard = downcase($name)
if $dashboard in ['heat', 'octavia', 'manila'] {
warning("Use the horizon::dashboard::${dashboard} class instead. \
The class allows more flexible customization of the ${dashboard} dashboard.")
}
case $::osfamily {
'Debian': {
$dashboard_package_name = "python3-${dashboard}-dashboard"
}
'RedHat': {
$dashboard_package_name = "openstack-${dashboard}-ui"
}
default: {
fail("Unsupported OS family: ${::osfamily}")
}
}
ensure_packages($dashboard_package_name, {
'ensure' => $ensure,
'tag' => ['horizon-dashboard-package']
})
}