mirror of
https://github.com/fhmq/hmq.git
synced 2026-06-15 17:51:33 +00:00
c6b1f1db42
* modify * update * add acl * add feature * update dockerfile * add deploy * update * update * plugins * plugins * update * update * update * fixed * remove * fixed * add log * update * fixed * update * fix config * add http api * add http api * resp * add config for work chan * update * fixed * update * disable trace * fixed * change acl * fixed * fixed res * dd * dd * ddd * dd * update * fixed * update * add * fixed * update key * add log * update * format * update * update auth * update * update readme * added * update * fixed * fixed * fix * upade * update * update
21 lines
528 B
Ruby
21 lines
528 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
# We have 5 * 192MB ZK processes and 5 * 320MB Kafka processes => 2560MB
|
|
MEMORY = 3072
|
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
config.vm.box = "ubuntu/trusty64"
|
|
|
|
config.vm.provision :shell, path: "vagrant/provision.sh"
|
|
|
|
config.vm.network "private_network", ip: "192.168.100.67"
|
|
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = MEMORY
|
|
end
|
|
end
|