crowbar/crowbar-openstack

View on GitHub
chef/cookbooks/octavia/definitions/octavia_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Copyright 2019, SUSE LLC.
#
# 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 :octavia_service do
  package "openstack-octavia-#{params[:name]}" if ["rhel", "suse"].include? node[:platform_family]

  subscribe_confs = []
  OctaviaHelper.conf_file(params[:name]).each do |sub_conf|
    subscribe_confs << "template[#{sub_conf}]"
  end

  service "octavia-#{params[:name]}" do
    service_name "openstack-octavia-#{params[:name]}"
    supports status: true, restart: true
    action [:enable, :start]
    subscribes :restart, subscribe_confs
  end

  utils_systemd_service_restart "openstack-octavia-#{params[:name]}"
end