dpl 1.8.31.travis.1895.3 → 1.8.31.travis.1897.3
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 +12 -11
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5649d2e4ca1db9e7eb626ed8ca6edd837a938a05
|
|
4
|
+
data.tar.gz: f308e33667f12c71dba5b15cfcb9dfda63c5b6d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1318e7a9035efdb217d1df12367813b0945f56ba66eae83264d0e1cd0b5faeee436dbfa167f2a7cdfc5b0f45ccb608101334880da45e647ed8db516d648b7458
|
|
7
|
+
data.tar.gz: 8a60ecddd5b6f7dc9dc5ba5fb7367c0106e02b8fe862ed9ccbafeb78f2682db55cf337bd64020a4c623d07e896e24956a8e0db67983c2994b8ef446bcd015c0b
|
data/README.md
CHANGED
|
@@ -666,19 +666,20 @@ For accounts using two factor authentication, you have to use an oauth token as
|
|
|
666
666
|
#### Setup:
|
|
667
667
|
|
|
668
668
|
1. Get the deployment target for Catalyze:
|
|
669
|
-
|
|
670
|
-
|
|
669
|
+
1. Make sure your catalyze environment is [associated](https://resources.catalyze.io/paas/paas-cli-reference/#associate).
|
|
670
|
+
2. Get the git remote by running ```git remote -v``` from within the associated repo.
|
|
671
671
|
2. Setup a deployment key to Catalyze for Travis CI:
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
672
|
+
1. Install the travis-ci cli.
|
|
673
|
+
2. Get the public SSH key for your travis project and save it to a file by running ```travis pubkey > travis.pub```
|
|
674
|
+
3. Add the key as a deploy key using the catalyze cli within the associated repo. For example: ```catalyze deploy-keys add travisci ./travis.pub code-1```
|
|
675
675
|
3. Setup Catalyze as a known host for Travis CI:
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
676
|
+
1. List your known hosts by running ```cat ~/.ssh/known_hosts```
|
|
677
|
+
2. Find and copy the line from known_hosts that includes the git remote found in step #1. It'll look something like "[git.catalyzeapps.com]:2222 ecdsa-sha2-nistp256 BBBB12abZmKlLXNo..."
|
|
678
|
+
3. Update your `before_deploy` step in `.travis.yml` to update the `known_hosts` file:
|
|
679
|
+
|
|
680
|
+
```
|
|
681
|
+
before_deploy: echo "[git.catalyzeapps.com]:2222 ecdsa-sha2-nistp256 BBBB12abZmKlLXNo..." >> ~/.ssh/known_hosts
|
|
682
|
+
```
|
|
682
683
|
|
|
683
684
|
### Chef Supermarket:
|
|
684
685
|
|