[Groonga-commit] droonga/presentation-groonga-night-5-droonga-as-groonga-with-replication at 0d6bcda [master] Add Vagrantfile

アーカイブの一覧に戻る

YUKI Hiroshi null+****@clear*****
Fri Nov 28 19:06:36 JST 2014


YUKI Hiroshi	2014-11-28 19:06:36 +0900 (Fri, 28 Nov 2014)

  New Revision: 0d6bcda8e706de0702abadefcae56c3311c4832f
  https://github.com/droonga/presentation-groonga-night-5-droonga-as-groonga-with-replication/commit/0d6bcda8e706de0702abadefcae56c3311c4832f

  Message:
    Add Vagrantfile

  Added files:
    vagrant/Vagrantfile

  Added: vagrant/Vagrantfile (+17 -0) 100644
===================================================================
--- /dev/null
+++ vagrant/Vagrantfile    2014-11-28 19:06:36 +0900 (d485c71)
@@ -0,0 +1,17 @@
+ines = 3
+box        = "ubuntu/trusty64"
+
+VAGRANTFILE_API_VERSION = "2"
+Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
+  n_machines.times do |index|
+    config.vm.define :"node#{index}" do |node_config|
+      node_config.vm.box = box
+      node_config.vm.network(:private_network,
+                             :ip => "192.168.100.#{50 + index}")
+      node_config.vm.host_name = "node#{index}"
+      node_config.vm.provider("virtualbox") do |virtual_box|
+        virtual_box.memory = 2048
+      end
+    end
+  end
+end
-------------- next part --------------
HTML����������������������������...
ダウンロード 



More information about the Groonga-commit mailing list
アーカイブの一覧に戻る