vagrant-box-gcs 1.0.0 → 1.0.2
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/README.md +9 -5
- data/lib/vagrant-box-gcs/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a44b3dbe183134f2616f5ec4a30b678cc3897f2018d5ba629251fe6667bc39b
|
|
4
|
+
data.tar.gz: 56bbfb1f8ae10c5a2241fa904782ac03fe31ee5df269b1591eaee722cc00f0ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 571a9482f482bedfd7795f390db1d18832e3e3b2ec9510e078dddbee045cbd39db6d0cb23c6cfa5835732ac3b8f8555a59f227c56b61610403ac2e7fab6155c4
|
|
7
|
+
data.tar.gz: 351b3604b46603edcfa03078ca26c5d86f66750a3ea09cbb23e5bb64281871d486ef08433808a28a9d6375b14b463e32ecdc129c1385dd0a0d201e8353d7feb6
|
data/README.md
CHANGED
|
@@ -14,15 +14,15 @@ $ vagrant plugin install vagrant-box-gcs
|
|
|
14
14
|
|
|
15
15
|
Only the `gs://` protocol shorthand is supported
|
|
16
16
|
|
|
17
|
-
The plugin supports fetching compatible
|
|
17
|
+
The plugin supports fetching compatible manifest file of versioned boxes repository. See [packer-vagrant-box-gcs](https://github.com/arnaud-dezandee/packer-vagrant-box-gcs) to create one.
|
|
18
18
|
|
|
19
|
-
#### From
|
|
19
|
+
#### From versioned box:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
$ vagrant box add gs://my-bucket/my-org/my-box-
|
|
22
|
+
$ vagrant box add gs://my-bucket/my-org/my-box-manifest.json
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
The `box update` command line is available when using
|
|
25
|
+
The `box update` command line is available when using manifest
|
|
26
26
|
```bash
|
|
27
27
|
$ vagrant box update --box my-org/my-box
|
|
28
28
|
```
|
|
@@ -31,7 +31,7 @@ $ vagrant box update --box my-org/my-box
|
|
|
31
31
|
# Vagrantfile
|
|
32
32
|
Vagrant.configure('2') do |config|
|
|
33
33
|
config.vm.box = 'my-org/my-box'
|
|
34
|
-
config.vm.box_url = 'gs://my-bucket/my-org/my-box-
|
|
34
|
+
config.vm.box_url = 'gs://my-bucket/my-org/my-box-manifest.json'
|
|
35
35
|
end
|
|
36
36
|
```
|
|
37
37
|
|
|
@@ -88,3 +88,7 @@ Vagrant.configure('2') do |config|
|
|
|
88
88
|
# ...
|
|
89
89
|
end
|
|
90
90
|
```
|
|
91
|
+
|
|
92
|
+
## Related
|
|
93
|
+
|
|
94
|
+
- [packer-vagrant-box-gcs](https://github.com/arnaud-dezandee/packer-vagrant-box-gcs) - Packer plugin to upload Vagrant boxes to Google GCS.
|
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-box-gcs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arnaud Dezandee
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: digest-crc
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.5.1
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.5.1
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: google-cloud-storage
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -61,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
75
|
- !ruby/object:Gem::Version
|
|
62
76
|
version: '0'
|
|
63
77
|
requirements: []
|
|
64
|
-
rubygems_version: 3.
|
|
78
|
+
rubygems_version: 3.0.3
|
|
65
79
|
signing_key:
|
|
66
80
|
specification_version: 4
|
|
67
81
|
summary: Vagrant plugin to download boxes from Google GCS.
|