
The ruby version of Kibana reached its end-of-life in May 2015, remove support for it from this puppet module. Change-Id: I164ab9228e8ac8ada95d1ce2c0ee809cc01c9aa3
64 lines
1.8 KiB
Puppet
64 lines
1.8 KiB
Puppet
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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.
|
|
#
|
|
# Class to install kibana frontend to logstash.
|
|
#
|
|
class kibana (
|
|
$discover_nodes = ['localhost:9200'],
|
|
$js_elasticsearch_prefix = '/',
|
|
$js_elasticsearch_url = 'http://localhost:9200',
|
|
$js_vhost_aliases = [],
|
|
$js_vhost_name = $::fqdn,
|
|
$js_vhost_template = 'kibana/dual-elasticsearch.vhost.erb',
|
|
$version = 'js',
|
|
) {
|
|
|
|
group { 'kibana':
|
|
ensure => present,
|
|
}
|
|
|
|
user { 'kibana':
|
|
ensure => present,
|
|
comment => 'Kibana User',
|
|
home => '/opt/kibana',
|
|
gid => 'kibana',
|
|
shell => '/bin/bash',
|
|
membership => 'minimum',
|
|
require => Group['kibana'],
|
|
}
|
|
|
|
file { '/opt/kibana':
|
|
ensure => directory,
|
|
owner => 'kibana',
|
|
group => 'kibana',
|
|
mode => '0755',
|
|
require => User['kibana'],
|
|
}
|
|
|
|
case $version {
|
|
'js': {
|
|
class { '::kibana::js':
|
|
vhost_name => $js_vhost_name,
|
|
vhost_aliases => $js_vhost_aliases,
|
|
vhost_template => $js_vhost_template,
|
|
elasticsearch_prefix => $js_elasticsearch_prefix,
|
|
elasticsearch_url => $js_elasticsearch_url,
|
|
}
|
|
}
|
|
default: {
|
|
fail("Unknown version: ${version}")
|
|
}
|
|
}
|
|
}
|