Ansible playbook to deploy a simple Kibana client on Linux Vagrant instance.
The aim of this project is to deploy Kibana on Vagrant instances.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
What things you need to run this Ansible playbook :
$ ansible-galaxy install -r requirements.yml
A good point with Vagrant is that you can create, update and destroy all architecture easily with some commands.
Be aware that you need to be in the Vagrant directory to be able to run the commands.
To deploy the Kibana client on baremetal, you have to configure the variable kibana_install_type to baremetal in the file kibana.yml before running the playbook :
[...]
vars:
kibana_install_type: baremetal
kibana_elasticsearch_hosts: ["<CONFIGURE_ME>"]
[...]
Once it’s done, you just have to provision the Vagrant instance and the Ansible playbook will automatically be called :
$ vagrant up
The Kibana Web interface should be accessible at : http://10.0.0.11:5601/
To deploy the Kibana client on Docker, you have to configure the variable kibana_install_type to docker in the file kibana.yml before running the playbook :
[...]
vars:
kibana_install_type: docker
kibana_elasticsearch_hosts: ["<CONFIGURE_ME>"]
[...]
Once it’s done, you just have to provision the Vagrant instance and the Ansible playbook will automatically be called :
$ vagrant up
If everything run has expected, you should have a Docker container named kibana.
The Kibana Web interface should be accessible at : http://10.0.0.11:5601/
To deploy the Kibana client on Kubernetes, you have to configure the variable kibana_install_type to kubernetes in the file kibana.yml before running the playbook :
[...]
vars:
kibana_install_type: kubernetes
kibana_elasticsearch_hosts: ["<CONFIGURE_ME>"]
[...]
Once it’s done, you just have to provision the Vagrant instance and the Ansible playbook will automatically be called :
$ vagrant up
If everything run has expected, you should have a namespace and a pod named kibana. This pod should be configured by two config map kibana-config and kibana-pipeline.
The Kibana Web interface should be accessible at : http://10.0.0.11:5601/
To destroy the Vagrant resources created, just run this command :
$ vagrant destroy
This section list some simple command to use and manage the playbook and the Vagrant hosts.
To update the Kibana configuration with Ansible, you just have to run the Ansible playbook kibana.yml with this command :
$ ansible-playbook kibana.yml
To update the Kibana configuration with Vagrant, you just have to run provisioning part of the Vagrant file :
$ vagrant provision
To be able to connect to a Vagrant instance, you should use the CLI which is configured to automatically use the default SSH key :
$ vagrant ssh kibana01
Member of Wikitops : https://www.wikitops.io/
This project is licensed under the Apache License, Version 2.0. For the full text of the license, see the LICENSE file.