You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2022/03/02 12:51:27 UTC

[brooklyn-docs] 03/06: hiding some ip data

This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git

commit c1f344b0508c26336158181b27a575cea0395276
Author: zan-mateusz <ma...@cloudsoftcorp.com>
AuthorDate: Mon Feb 28 13:01:21 2022 +0000

    hiding some ip data
---
 guide/blueprints/yaml-reference.md        | 16 ++++++++--------
 guide/ops/troubleshooting/connectivity.md |  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/guide/blueprints/yaml-reference.md b/guide/blueprints/yaml-reference.md
index 6c2c3c5..ca4995a 100644
--- a/guide/blueprints/yaml-reference.md
+++ b/guide/blueprints/yaml-reference.md
@@ -188,10 +188,10 @@ If you have pre-existing nodes, you can use the `byon` provider, either in this
         user: root
         privateKeyFile: ~/.ssh/key.pem
         hosts:
-        - 81.95.144.58
-        - 81.95.144.59
-        - brooklyn@159.253.144.139
-        - brooklyn@159.253.144.140
+        - 11.22.33.44
+        - 11.22.33.45
+        - brooklyn@55.66.77.88
+        - brooklyn@55.66.77.89
 
 or:
 
@@ -199,7 +199,7 @@ or:
       byon:
         user: root
         privateKeyFile: ~/.ssh/key.pem
-        hosts: "{81.95.144.{58,59},brooklyn@159.253.144.{139-140}"
+        hosts: "{11.22.33.{44,45},brooklyn@55.66.77.{88-89}"
 
 You cannot use glob expansions with the list notation, nor can you specify per-host
 information apart from user within a single `byon` declaration.
@@ -212,11 +212,11 @@ However you can combine locations using `multi`:
             user: root
             privateKeyFile: ~/.ssh/key.pem
             hosts:
-            - 81.95.144.58
-            - 81.95.144.59
+            - 11.22.33.44
+            - 11.22.33.45
         - byon:
             privateKeyFile: ~/.ssh/brooklyn_key.pem
-            hosts: brooklyn@159.253.144{139-140}
+            hosts: brooklyn@55.66.77{88-89}
 
 
 ## DSL Commands
diff --git a/guide/ops/troubleshooting/connectivity.md b/guide/ops/troubleshooting/connectivity.md
index 5c218bc..65cf998 100644
--- a/guide/ops/troubleshooting/connectivity.md
+++ b/guide/ops/troubleshooting/connectivity.md
@@ -28,7 +28,7 @@ You can check if a given TCP port is reachable and listening using `telnet <host
 `telnet www.google.com 80`, which gives output like:
 
 ~~~
-    Trying 31.55.163.219...
+    Trying 11.22.33.44...
     Connected to www.google.com.
     Escape character is '^]'.
 ~~~