Skip to content

Commit 23694c6

Browse files
committed
Fixes #258: Add pip to elk example requirements and bump RAM for ES to 4GB.
1 parent b4597f9 commit 23694c6

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

elk/Vagrantfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/ubuntu2004"
8+
config.vm.synced_folder '.', '/vagrant', disabled: true
89
config.ssh.insert_key = false
910

1011
config.vm.provider :virtualbox do |v|
11-
v.memory = 2048
12+
v.memory = 4096
1213
v.cpus = 2
1314
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
1415
v.customize ["modifyvm", :id, "--ioapic", "on"]
@@ -31,6 +32,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
3132
web.vm.hostname = "web.test"
3233
web.vm.network :private_network, ip: "192.168.9.91"
3334

35+
web.vm.provider :virtualbox do |v|
36+
v.memory = 512
37+
v.cpus = 1
38+
end
39+
3440
web.vm.provision :ansible do |ansible|
3541
ansible.playbook = "provisioning/web/main.yml"
3642
ansible.inventory_path = "provisioning/web/inventory"

elk/provisioning/elk/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
roles:
1313
- geerlingguy.java
1414
- geerlingguy.nginx
15+
- geerlingguy.pip
1516
- geerlingguy.elasticsearch
1617
- geerlingguy.elasticsearch-curator
1718
- geerlingguy.kibana

elk/requirements.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
roles:
33
- name: geerlingguy.java
44
- name: geerlingguy.nginx
5+
- name: geerlingguy.pip
56
- name: geerlingguy.elasticsearch
67
version: 4.1.1
78
- name: geerlingguy.elasticsearch-curator

0 commit comments

Comments
 (0)