dpl 1.10.1.travis.2956.6 → 1.10.1.travis.2957.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/README.md +3 -3
- data/lib/dpl/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: 2df41ff5d676f485638160e1f16d5aba0fcb179a075aa6eaa3c7ebfea7c2e189
|
|
4
|
+
data.tar.gz: 247b61e7f168b78d838d5e6a6dc5864d582b6a85d3ad346462dd67aab0576cd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68ecf1f262555b246ac93782eee151e6d9cfff4dc696e4ad4fc1f480e7cf3ae46c073975b3997ba329544687d723e0e5956a75dd10dbb55233c1b23a229d0658
|
|
7
|
+
data.tar.gz: fc4b520539a6c58e4f69b97470ffa4295710c4e0a1fffeb4770f63a9fbaaac920410f2813209c96fd154179ea8616bda1011644a332a39839be8996bfb27a5ac
|
data/README.md
CHANGED
|
@@ -882,10 +882,10 @@ In order to use this provider, please make sure you have the [App Engine Admin A
|
|
|
882
882
|
* **project**: [Project ID](https://developers.google.com/console/help/new/#projectnumber) used to identify the project on Google Cloud.
|
|
883
883
|
* **keyfile**: Path to the JSON file containing your [Service Account](https://developers.google.com/console/help/new/#serviceaccounts) credentials in [JSON Web Token](https://tools.ietf.org/html/rfc7519) format. To be obtained via the [Google Developers Console](https://console.developers.google.com/project/_/apiui/credential). Defaults to `"service-account.json"`. Note that this file should be handled with care as it contains authorization keys.
|
|
884
884
|
* **config**: Path to your module configuration file. Defaults to `"app.yaml"`. This file is runtime dependent ([Go](https://cloud.google.com/appengine/docs/go/config/appconfig), [Java](https://cloud.google.com/appengine/docs/java/configyaml/appconfig_yaml), [PHP](https://developers.google.com/console/help/new/#projectnumber), [Python](https://cloud.google.com/appengine/docs/python/config/appconfig))
|
|
885
|
-
* **version**: The version of the app that will be created or replaced by this deployment. If you do not specify a version, one will be generated for you. See [`gcloud
|
|
886
|
-
* **no_promote**: Flag to not promote the deployed version. See [`gcloud
|
|
885
|
+
* **version**: The version of the app that will be created or replaced by this deployment. If you do not specify a version, one will be generated for you. See [`gcloud app deploy`](https://cloud.google.com/sdk/gcloud/reference/app/deploy)
|
|
886
|
+
* **no_promote**: Flag to not promote the deployed version. See [`gcloud app deploy`](https://cloud.google.com/sdk/gcloud/reference/app/deploy)
|
|
887
887
|
* **verbosity**: Let's you adjust the verbosity when invoking `"gcloud"`. Defaults to `"warning"`. See [`gcloud`](https://cloud.google.com/sdk/gcloud/reference/).
|
|
888
|
-
* **no_stop_previous_version**: Flag to prevent your deployment from stopping the previously promoted version. This is from the future, so might not work (yet). See [`gcloud
|
|
888
|
+
* **no_stop_previous_version**: Flag to prevent your deployment from stopping the previously promoted version. This is from the future, so might not work (yet). See [`gcloud app deploy`](https://cloud.google.com/sdk/gcloud/reference/app/deploy)
|
|
889
889
|
|
|
890
890
|
#### Environment variables:
|
|
891
891
|
|
data/lib/dpl/version.rb
CHANGED