Return-Path: X-Original-To: apmail-brooklyn-commits-archive@minotaur.apache.org Delivered-To: apmail-brooklyn-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9FD7611979 for ; Fri, 6 Jun 2014 20:55:42 +0000 (UTC) Received: (qmail 77334 invoked by uid 500); 6 Jun 2014 20:55:42 -0000 Delivered-To: apmail-brooklyn-commits-archive@brooklyn.apache.org Received: (qmail 77310 invoked by uid 500); 6 Jun 2014 20:55:42 -0000 Mailing-List: contact commits-help@brooklyn.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.incubator.apache.org Delivered-To: mailing list commits@brooklyn.incubator.apache.org Received: (qmail 77303 invoked by uid 99); 6 Jun 2014 20:55:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Jun 2014 20:55:42 +0000 X-ASF-Spam-Status: No, hits=-2000.6 required=5.0 tests=ALL_TRUSTED,NORMAL_HTTP_TO_IP,RP_MATCHES_RCVD,WEIRD_PORT X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 06 Jun 2014 20:55:42 +0000 Received: (qmail 77059 invoked by uid 99); 6 Jun 2014 20:55:17 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Jun 2014 20:55:17 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id A95FA8BB132; Fri, 6 Jun 2014 20:55:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: richard@apache.org To: commits@brooklyn.incubator.apache.org Date: Fri, 06 Jun 2014 20:55:17 -0000 Message-Id: <4656c8f8d3ba480499e8483055e677a3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/4] git commit: Added OpenStack options to brooklyn.properties X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-brooklyn Updated Branches: refs/heads/master 8e493f1cf -> 8e24bd34f Added OpenStack options to brooklyn.properties Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/4a5578db Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/4a5578db Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/4a5578db Branch: refs/heads/master Commit: 4a5578db687f9d6de4ac0dcf0bdfb5772a329cf8 Parents: ba8209b Author: alessiogambi Authored: Fri Jun 6 08:47:43 2014 +0200 Committer: alessiogambi Committed: Fri Jun 6 08:47:43 2014 +0200 ---------------------------------------------------------------------- docs/use/guide/quickstart/brooklyn.properties | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/4a5578db/docs/use/guide/quickstart/brooklyn.properties ---------------------------------------------------------------------- diff --git a/docs/use/guide/quickstart/brooklyn.properties b/docs/use/guide/quickstart/brooklyn.properties index 08a9d7c..e2817c2 100644 --- a/docs/use/guide/quickstart/brooklyn.properties +++ b/docs/use/guide/quickstart/brooklyn.properties @@ -229,9 +229,43 @@ brooklyn.location.named.aws-tokyo = jclouds:aws-ec2:ap-northeast-1 ## Various Private Clouds +## Example: OpenStack Nova + ## openstack identity and credential are random strings of letters and numbers (TBC - still the case?) # brooklyn.location.named.My\ Openstack=jclouds:openstack-nova:https://9.9.9.9:9999/v2.0/ +## OpenStack Nova access information can be downloaded from the openstack web interface; for example, as openrc.sh file +# brooklyn.location.named.My\ Openstack=jclouds:openstack-nova:keystone-url +# brooklyn.location.named.My\ OpenStack.identity=your-tenant-name:your-user-name +# brooklyn.location.named.My\ OpenStack.credential=your-password +# brooklyn.location.named.My\ OpenStack.endpoint=your-keystone-url + +## The ID of the image must be configured according to the local OpenStack settings +## Use the command nova image-list to list all the available images +## Use the command nova show to get more details +# brooklyn.location.named.My\ OpenStack.imageId=the-region-name/the-image-id + +## Virtual Machine flavors must match the ones created upfront according to the local OpenStack settings +## Use the command nova flavor-list to list all the available options +## Use the command nova flavor-show to get more details +# brooklyn.location.named.My\ OpenStack.hardwareId=the-region-name/the-flavor-id + +## (Optional) Configurations + +# brooklyn.location.named.My\ OpenStack.user=user-name-inside-the-instance + +## The keyPair must by created upfront. Both the following two options are required at the same time. +# brooklyn.location.named.My\ OpenStack.keyPair=the-key-pair-name +# brooklyn.location.named.My\ OpenStack.loginUser.privateKeyFile=/path/to/keypair.pem + +## Security groups must be created upfront (TBC - How to specify many security groups at one ?) +# brooklyn.location.named.My\ OpenStack.securityGroups=universal + +# brooklyn.location.named.My\ OpenStack.openIptables=true +# brooklyn.location.named.My\ OpenStack.selinux.disabled=true +# brooklyn.location.named.My\ OpenStack.auto-create-floating-ips=true +# brooklyn.location.named.My\ OpenStack.openstack-nova.auto-generate-keypairs=false + ## cloudstack identity and credential are rather long random strings of letters and numbers ## you generate this in the cloudstack gui, under accounts, then "view users", then "generate key" ## use the "api key" as the identity and "secret key" as the credential