Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bsedin/ansible-elastic-apm
https://github.com/bsedin/ansible-elastic-apm
ansible-role docker elastic-apm elasticsearch
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsedin/ansible-elastic-apm
- Owner: bsedin
- License: mit
- Created: 2018-03-09T13:03:51.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-13T14:57:47.000Z (over 4 years ago)
- Last Synced: 2024-12-16T08:36:49.455Z (about 2 months ago)
- Topics: ansible-role, docker, elastic-apm, elasticsearch
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Elasticsearch role for ansible
Create `./library` directory in your ansible project:
```
mkdir ./library
```And configure `ansible.cfg`:
```
[defaults]
roles_path = ./library
```Add submodule:
```
git submodule add [email protected]:kressh/ansible-elastic-apm.git library/elastic-apm
```Use role:
```yaml
---
- hosts: infra01.yourserver.io
remote_user: ansible
become: true
roles:
- elastic-apm
```