vagrant-packet 0.1.3 → 0.1.4
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 -1
- data/lib/vagrant-packet/action/connect_packet.rb +0 -1
- data/lib/vagrant-packet/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d9bb728d50978abf13726fc2b7be25323b6db6203f845c9c6bf05fe11096449
|
4
|
+
data.tar.gz: aafff717ee24f71f54aff126291e83f072c34c20a38b9f5817b6f53b50347ac1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f060b93f0dc4ac024fe3239f5ca593a8494fd0f7550f2310a22094e7c71e487b0027ad4a7d13563581b631c0d0e2e646718db62c0df7f186992a766881cdb2b
|
7
|
+
data.tar.gz: 49e4e69c8bbae478676aa8fc8bbee9d37a65848e5dbeca96315d47fa5729d419397bb014b976a4196d65c4343f3f75ac2552b627a9de41b0a6b777ccd7231806
|
data/README.md
CHANGED
@@ -7,11 +7,17 @@ Based heavily (almost completely) on the [Vagrant-AWS](https://github.com/mitche
|
|
7
7
|
- [Packet](https://packet.net) provisions bare metal machines. It's cool.
|
8
8
|
- Since they're bare metal, provision time is somewhat slower (5-10min)
|
9
9
|
- Once provisioned, I suggest `vagrant halt` and `vagrant up` for faster performance.
|
10
|
+
- Keeping machines around *does cost money* so running `vagrant destroy` once your short-term needs are met is a good idea.
|
10
11
|
- You need to add your SSH Key within the Packet.net portal. Vagrant will not handle this for you. (Much like the [Vagrant-Google](https://github.com/mitchellh/vagrant-google) plugin.)
|
11
12
|
- Your synced folders must use the rsync option (seen below) or it won't work.
|
12
13
|
- There are some Packet-specific options required in the config. The example explains how to find and select the correct options.
|
13
14
|
|
14
|
-
##
|
15
|
+
## Installation and use:
|
16
|
+
To install, run `vagrant plugin install vagrant-packet`
|
17
|
+
|
18
|
+
You can then use the packet provider in Vagrant.
|
19
|
+
|
20
|
+
Example Vagrantfile:
|
15
21
|
```
|
16
22
|
Vagrant.configure("2") do |config|
|
17
23
|
config.vm.box = "packet.box"
|
@@ -52,6 +58,8 @@ Vagrant.configure("2") do |config|
|
|
52
58
|
end
|
53
59
|
```
|
54
60
|
|
61
|
+
With this vagrant file you can then run `vagrant up`
|
62
|
+
|
55
63
|
## Development
|
56
64
|
To work on the `vagrant-packet` plugin, clone this repository out, and use
|
57
65
|
[Bundler](http://gembundler.com) to get the dependencies:
|