Skip to content

Configure and run a Splunk data index in a Docker container.

Notifications You must be signed in to change notification settings

derekmerck/ansible-splunk-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ansible Role for Splunk in Docker

Build Status

Derek Merck
derek_merck@brown.edu
Rhode Island Hospital and Brown University
Providence, RI

Configure and run a Splunk data index in a Docker container.

Dependencies

Galaxy Roles

Run with --skip-tags deps to skip installing dependency roles.

Remote Node

Role Variables

Global Vars

data_dir:         "/data"
config_dir:       "/config"
service_password: "passw0rd!"
common_name:      "example.com"
public_host_name: "splunk"

Docker Image and Tag

Always uses the official Splunk image.

Set the Splunk version tag.

splunk_docker_image_tag:   "latest"

This probably only works with Splunk v7 or later, because they changed the mechanism for setting the initial administrator password.

Docker Container Configuration

splunk_container_name: "splunk"
splunk_use_data_container: True
splunk_http_port:      8000
splunk_admin_port:     8089
splunk_hec_port:       8088

Service Configuration

splunk_indices:        []
splunk_hec_enabled:    True
splunk_create_hec_tokens: {}
splunk_hec_tokens:      {}
splunk_secured:         False
splunk_required_disk_size: 0

indices should be a list like ['index1', 'index2', etc...]

create_hec_tokens should be a dict like {'tok_name': {'desc': 'My token', 'index': 'index1'} }

hec_tokens adds values directly, should be a dict like {'tok_name': {'desc': 'My token', 'index': 'index1', 'value': xxxxyyyy-xxx...} }

For vagrant or other small footprint installs, indicate required_disk_size in MB (0=default 5000, but 500 is ok)

Splunkbase

Any Splunkbase plugins in "{{ role_path }}/splunk-apps/*.tgz" are copied into the container and installed.

Example Playbook

- hosts: indexer
  roles:
     - derekmerck.splunk_docker

Extra Tasks

Call docker_logger_play to setup the Splunk logger for Docker for other derekmerck namespace roles.

- include_role: derekmerck.splunk_docker
  tasks_from:  docker_logger_play

Requires a properly configured host group `indexers'

Vagrant

You need at least 1GB of RAM available to run Splunk, but Vagrant has only 500MB out of the box. To fix, add something like this to your Vagrantfile:

  config.vm.provider "virtualbox" do |vb|
     vb.memory = "4096"
  end

License

MIT

About

Configure and run a Splunk data index in a Docker container.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published