vagrant-g5k 0.9.5 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/Vagrantfile +5 -4
- data/lib/vagrant-g5k/g5k_connection.rb +1 -1
- data/lib/vagrant-g5k/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ee52a76f22b067f569c85dc246c45f4b9dbafbd
|
|
4
|
+
data.tar.gz: a3e6d861c4d7f0b244b23b15d3105431da230c5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e1608c2187aa22dd8733f0791ab642f5965e7bad31df224e6996d79dc118ddbc63652d6341693482208e48c11d4696edb2756e3d90e9cc3ed2ba5f34eec64fb
|
|
7
|
+
data.tar.gz: e600cb952804870605befa569ef6586463814225eab274a8d520a21fe0263fac08ad30b06097d5caf6312979b43a559f43b96546ad4896f07789a586d4b4d237
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
# 0.9.
|
|
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
|
|
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
|
```
|
data/Vagrantfile
CHANGED
|
@@ -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/
|
|
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
|
-
|
|
79
|
-
|
|
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
|
data/lib/vagrant-g5k/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2017-06-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: iniparse
|