Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 45DE3200B43 for ; Tue, 19 Jul 2016 13:18:08 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4482D160A89; Tue, 19 Jul 2016 11:18:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 88D16160A76 for ; Tue, 19 Jul 2016 13:18:07 +0200 (CEST) Received: (qmail 64128 invoked by uid 500); 19 Jul 2016 11:18:06 -0000 Mailing-List: contact dev-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list dev@brooklyn.apache.org Received: (qmail 64116 invoked by uid 99); 19 Jul 2016 11:18:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jul 2016 11:18:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 485EAE03A6; Tue, 19 Jul 2016 11:18:06 +0000 (UTC) From: drigodwin To: dev@brooklyn.apache.org Reply-To: dev@brooklyn.apache.org References: In-Reply-To: Subject: [GitHub] brooklyn-docs pull request #93: Add to blueprinting-tips Content-Type: text/plain Message-Id: <20160719111806.485EAE03A6@git1-us-west.apache.org> Date: Tue, 19 Jul 2016 11:18:06 +0000 (UTC) archived-at: Tue, 19 Jul 2016 11:18:08 -0000 Github user drigodwin commented on a diff in the pull request: https://github.com/apache/brooklyn-docs/pull/93#discussion_r71319310 --- Diff: guide/yaml/blueprinting-tips.md --- @@ -98,8 +151,32 @@ If writing a custom integration, the following recommendations may be useful: For example, if deploying a MongoDB cluster then first focus on single-node MongoDB, and then make that configurable and composable for a cluster. -* Use the test framework to write test cases, so that others can run these to confirm that the - entity works in their environment. - * Where appropriate, share the new entity with the Brooklyn community so that it can be reviewed, tested and improved by others in the community! + + +## Cloud Portability + +You get a lot of support out-of-the-box for deploying blueprints to different clouds. The points +below may also be of help: + +* Test (and regression test) on each target cloud. + +* Be aware that images on different clouds can be very different. For example, two CentOS 6.6 VMs + might have different pre-installed libraries, different default iptables or SE Linux settings, + different repos, different sudo configuration, etc. + +* Different clouds handle private and public IPs differently. One must be careful about which + address to advertise to for use by other entities. + +* VMs on some clouds will not have a well-configured hostname (e.g. `ping $(hostname)` can fail). --- End diff -- VMs on some clouds will not -> VMs on some clouds may not --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---