vagrant-g5k 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d6991228db63db381f8f2516facf3887ad4b9ee
4
- data.tar.gz: 278db64626910dd610636f6c46491273513a0855
3
+ metadata.gz: 1ee52a76f22b067f569c85dc246c45f4b9dbafbd
4
+ data.tar.gz: a3e6d861c4d7f0b244b23b15d3105431da230c5a
5
5
  SHA512:
6
- metadata.gz: c6850fa3f81a71b3f626d41cc7fe10207de2b6c65635c15ab038e6674075a67f459ed10706529ced9d414eca28dc868be0c456032a68a71f972f2f751c396614
7
- data.tar.gz: c9997684c3978324128e5ec035a9f0fb96982f2e0266ec31d7bdd512649f0d976049480c9549038683d7dae2a39f4547caed648c76285740bdfa27d3d16d8469
6
+ metadata.gz: 8e1608c2187aa22dd8733f0791ab642f5965e7bad31df224e6996d79dc118ddbc63652d6341693482208e48c11d4696edb2756e3d90e9cc3ed2ba5f34eec64fb
7
+ data.tar.gz: e600cb952804870605befa569ef6586463814225eab274a8d520a21fe0263fac08ad30b06097d5caf6312979b43a559f43b96546ad4896f07789a586d4b4d237
@@ -1,4 +1,9 @@
1
- # 0.9.5 (unreleased)
1
+ # 0.9.6
2
+
3
+ * Fix Multiple nodes may be reserved for a single vm
4
+ [[-]](https://github.com/msimonin/vagrant-g5k/commit/c90d61ed7cdcf90dd5c903736c5153168e35a1f0)
5
+
6
+ # 0.9.5
2
7
 
3
8
  * Fix import error on command
4
9
  [[-]](https://github.com/msimonin/vagrant-g5k/commit/d5b69cc48c2e38de0895498c7bf1dfe7df2fa96c)
data/README.md CHANGED
@@ -188,7 +188,7 @@ If you plan to use a reservation or if you expect all your VMs to be ready
188
188
  almost on the same time you can use a job container (see:
189
189
  https://www.grid5000.fr/mediawiki/index.php/Advanced_OAR#Container_jobs)
190
190
 
191
- * First create you container job using OAR cli from the fronted of your choice.
191
+ * First create you container job using OAR cli from the frontend of your choice.
192
192
  * Then instruct vagrant-g5k about this job container id in the Vagrantfile :
193
193
 
194
194
  ```
@@ -36,7 +36,7 @@ Vagrant.configure(2) do |config|
36
36
 
37
37
  # Image backed on the frontend filesystem
38
38
  g5k.image = {
39
- :path => "/home/msimonin/public/debian-8.7-amd64-bento.qcow2",
39
+ :path => "/home/msimonin/public/conpaas-2.1.0-openstack-kvm.img",
40
40
  :backing => "snapshot"
41
41
  }
42
42
 
@@ -75,8 +75,9 @@ Vagrant.configure(2) do |config|
75
75
  # This defines a VM
76
76
  # If you want to use a local virtual machine (vbox, libvirt...)
77
77
  # add your vagrant options below as usual.
78
- config.vm.define "test" do |my|
79
- my.vm.box = "dummy"
78
+ (0..10).each do |i|
79
+ config.vm.define "test-#{i}" do |my|
80
+ my.vm.box = "dummy"
81
+ end
80
82
  end
81
-
82
83
  end
@@ -40,7 +40,7 @@ module VagrantPlugins
40
40
 
41
41
  def init_oar_unit(cpu, mem)
42
42
  if cpu != -1 and mem != -1
43
- unit = "core=#{cpu}"
43
+ unit = "nodes=1/core=#{cpu}"
44
44
  else
45
45
  unit = "nodes=1"
46
46
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module G5K
3
- VERSION = '0.9.5'
3
+ VERSION = '0.9.6'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-g5k
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu Simonin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-01 00:00:00.000000000 Z
11
+ date: 2017-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: iniparse