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 381B3200B30 for ; Mon, 4 Jul 2016 17:09:56 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 36ACE160A65; Mon, 4 Jul 2016 15:09:56 +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 7D593160A34 for ; Mon, 4 Jul 2016 17:09:55 +0200 (CEST) Received: (qmail 64664 invoked by uid 500); 4 Jul 2016 15:09:54 -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 64653 invoked by uid 99); 4 Jul 2016 15:09:54 -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; Mon, 04 Jul 2016 15:09:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 55490E03C0; Mon, 4 Jul 2016 15:09:54 +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 #85: Split locations docs into more sections Content-Type: text/plain Message-Id: <20160704150954.55490E03C0@git1-us-west.apache.org> Date: Mon, 4 Jul 2016 15:09:54 +0000 (UTC) archived-at: Mon, 04 Jul 2016 15:09:56 -0000 Github user drigodwin commented on a diff in the pull request: https://github.com/apache/brooklyn-docs/pull/85#discussion_r69470183 --- Diff: guide/ops/locations/_openstack.md --- @@ -0,0 +1,169 @@ +--- +section: Openstack +title: Openstack +section_type: inline +section_position: 6 +--- + +## Openstack + +### Apache jclouds + +Support for OpenStack is provided by Apache jclouds. For more information, see their guide +[here](https://jclouds.apache.org/guides/openstack/). + + +### Networks + +When multiple networks are available you should indicate which ones machines should join. +Do this by setting the desired values id as an option in the +**[templateOptions](#custom-template-options)** configuration: + + location: + jclouds:openstack-nova: + ... + templateOptions: + # Assign the node to all networks in the list. + networks: + - network-one-id + - network-two-id + - ... + + +### Floating IPs + +Configuration of floating IPs is as networks; specify the pools to use as another +[template option](#custom-template-options): + + location: + jclouds:openstack-nova: + ... + templateOptions: + # Pool names to use when allocating a floating IP + floatingIpPoolNames: + - "pool name" + + +### Basic Location Structure + +This is a basic inline YAML template for an OpenStack location: + +``` +location: --- End diff -- The format of this code block is incorrect, please indent it like the others or use [liquid tags](https://jekyllrb.com/docs/templates/#code-snippet-highlighting). --- 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. ---