crowbar/crowbar-openstack

View on GitHub
chef/cookbooks/monasca/recipes/monasca_log_persister.rb

Summary

Maintainability
A
30 mins
Test Coverage
#
# Cookbook Name:: monasca
# Recipe:: monasca-log-persister
#
# Copyright 2018, SUSE Linux GmbH.
#
# 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.
#

package "openstack-monasca-log-persister"

monasca_node = search(:node, "roles:monasca-server")[0]
monasca_net_ip = MonascaHelper.get_host_for_monitoring_url(monasca_node)

template "/etc/monasca-log-persister/monasca-log-persister.conf" do
  source "monasca-log-persister.conf.erb"
  owner node[:monasca][:log_persister][:user]
  group node[:monasca][:log_persister][:group]
  mode "0640"
  variables(
    zookeeper_hosts: monasca_net_ip,
    elasticsearch_hosts: monasca_net_ip
  )
  notifies :restart, "service[openstack-monasca-log-persister]"
end

service "openstack-monasca-log-persister" do
  supports status: true, restart: true, start: true, stop: true
  action [:enable, :start]
end