dpl 1.7.17.travis.869.4 → 1.7.17.travis.882.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 +8 -8
- data/README.md +26 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MWNkYjNhODZkODY5ZTA0MTRmYTdjZWIyYjNjNDc0ODkxYTQxN2NhZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MjYxMjI1YjdiZTY0MGQzMjMwNGFlMWI3MDVkZjE0NDExYzRkMzRmMw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NGQ2YTE5MGM3YTJlYTUzM2JkZjAxMjZmOWQwZGNiZjhkMWI1MmQ4ZmU3MmUy
|
|
10
|
+
ZjRkNzgwZjI4NjUwZDhhOGRlZDE4MTIzZWI0YjNmYjAwOTYxNGJjNzZkMDAz
|
|
11
|
+
ZWRjNWI3ODgwODJkNzU0OGU2ZjQwMGJmMjAzMmUxMDQ0NzY1ZTg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
OTQ2ZGI4OWVlNGVlNWUzOWE3MDMzOGJmYWVhZjQ0MjI5NzUwNmJkMzI0YzZi
|
|
14
|
+
MTk3M2U5MmQwMzA1ZTFkZGQ5MzIxZWI0MTIxNjM4MjRkMzM1YjcyNWJmZTVj
|
|
15
|
+
ZWQ0ZjI3YTkxOGZiNjg3NzU0ZmFhOGY5NDkxMTc4NWM0MDhmMWU=
|
data/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
Dpl supports the following providers:
|
|
5
5
|
|
|
6
6
|
* [AppFog](#appfog)
|
|
7
|
+
* [Atlas by HashiCorp](#atlas)
|
|
7
8
|
* [Biicode](#biicode)
|
|
8
9
|
* [Bintray](#bintray)
|
|
9
10
|
* [BitBalloon](#bitballoon)
|
|
@@ -354,6 +355,31 @@ It is possible to set file-specific `Cache-Control` and `Expires` headers using
|
|
|
354
355
|
dpl --provider=appfog --email=<email> --password=<password>
|
|
355
356
|
dpl --provider=appfog --email=<email> --password=<password> --app=<app>
|
|
356
357
|
|
|
358
|
+
### Atlas:
|
|
359
|
+
|
|
360
|
+
The Atlas provider uses the [`atlas-upload-cli`](https://github.com/hashicorp/atlas-upload-cli) command. The [Atlas Upload CLI](https://github.com/hashicorp/atlas-upload-cli) is a lightweight command line interface for uploading application code to [Atlas](https://atlas.hashicorp.com/homepage?utm_source=github&utm_medium=travis-ci&utm_campaign=dpl) to kick off Atlas-based deployment processes from Travis CI.
|
|
361
|
+
|
|
362
|
+
You first need to create an [Atlas account](https://atlas.hashicorp.com/account/new?utm_source=github&utm_medium=travis-ci&utm_campaign=dpl), then, generate an [Atlas API token](https://atlas.hashicorp.com/settings/tokens) for Travis CI.
|
|
363
|
+
|
|
364
|
+
#### Options:
|
|
365
|
+
|
|
366
|
+
* **token** (Required): Atlas API token.
|
|
367
|
+
* **app** (Required): Atlas application name (`<atlas-username>/<app-name>`).
|
|
368
|
+
* **exclude**: Glob pattern of files or directories to exclude (this may be specified multiple times).
|
|
369
|
+
* **include**: Glob pattern of files/directories to include (this may be specified multiple times, any excludes will override conflicting includes).
|
|
370
|
+
* **address**: The address of the Atlas server.
|
|
371
|
+
* **vcs**: Use VCS to determine which files to include/exclude.
|
|
372
|
+
* **metadata**: Arbitrary key-value (string) metadata to be sent with the upload; may be specified multiple times.
|
|
373
|
+
* **debug**: Turn on debug output.
|
|
374
|
+
* **version**: Print the version of this application.
|
|
375
|
+
|
|
376
|
+
#### Examples:
|
|
377
|
+
|
|
378
|
+
dpl --provider=atlas --token=ATLAS_TOKEN --app=ATLAS_USERNAME/APP_NAME
|
|
379
|
+
dpl --provider=atlas --token=ATLAS_TOKEN --app=ATLAS_USERNAME/APP_NAME --debug --vcs --version
|
|
380
|
+
dpl --provider=atlas --token=ATLAS_TOKEN --app=ATLAS_USERNAME/APP_NAME --exclude="*.log" --include="build/*" --include="bin/*"
|
|
381
|
+
dpl --provider=atlas --token=ATLAS_TOKEN --app=ATLAS_USERNAME/APP_NAME --metadata="foo=bar" --metadata="bar=baz"
|
|
382
|
+
|
|
357
383
|
### Divshot.io:
|
|
358
384
|
|
|
359
385
|
#### Options:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dpl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.17.travis.
|
|
4
|
+
version: 1.7.17.travis.882.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|