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/10/24 11:02:58 UTC

[brooklyn-docs] branch master updated (5b2890fa -> e7e1ded0)

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

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


    from 5b2890fa Merge branch 'workflow'
     new 5e2c4e01 fix indentation in blueprint
     new e7e1ded0 tidy language for workflow

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 guide/blueprints/workflow/index.md | 4 ++--
 guide/locations/_vSphere.md        | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)


[brooklyn-docs] 01/02: fix indentation in blueprint

Posted by he...@apache.org.
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 5e2c4e01668f927ec8b9b396f9fba3f264be5639
Author: Alex Heneveld <al...@cloudsoft.io>
AuthorDate: Mon Oct 24 11:57:32 2022 +0100

    fix indentation in blueprint
---
 guide/locations/_vSphere.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/guide/locations/_vSphere.md b/guide/locations/_vSphere.md
index a126160d..185b94a2 100644
--- a/guide/locations/_vSphere.md
+++ b/guide/locations/_vSphere.md
@@ -29,7 +29,7 @@ brooklyn.catalog:
   id: my-vsphere-linux-location
   name: my-vsphere-linux-location
   itemType: location
-    item:
+  item:
       type: vsphere
       brooklyn.config:
         displayName: vSphere VMware Linux
@@ -68,7 +68,7 @@ brooklyn.catalog:
   id: my-vsphere-windows-location
   name: my-vsphere-windows-location
   itemType: location
-    item:
+  item:
       type: vsphere
       brooklyn.config:
         displayName: vSphere VMware Windows
@@ -96,4 +96,4 @@ brooklyn.catalog:
         cloudMachineNamer: org.apache.brooklyn.core.location.cloud.names.CustomMachineNamer
         custom.machine.namer.machine: <PREFIX>-${entity.application.id}-WINDOWS-${entity.displayName[0..*10]}-${entity.id}
         vmNameMaxLength: 80
-```
\ No newline at end of file
+```


[brooklyn-docs] 02/02: tidy language for workflow

Posted by he...@apache.org.
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 e7e1ded054b69e7bd580bdb9747e09a36d5c5002
Author: Alex Heneveld <al...@cloudsoft.io>
AuthorDate: Mon Oct 24 11:58:54 2022 +0100

    tidy language for workflow
---
 guide/blueprints/workflow/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guide/blueprints/workflow/index.md b/guide/blueprints/workflow/index.md
index cbbda277..0d5b2304 100644
--- a/guide/blueprints/workflow/index.md
+++ b/guide/blueprints/workflow/index.md
@@ -10,7 +10,7 @@ children:
 - nested-workflow.md
 ---
 
-Apache Brooklyn has a powerful workflow engine and syntax for defining effectors, sensors, and policies.
+Apache Brooklyn has a powerful workflow engine and syntax for defining entities, effectors, sensors, and policies.
 
 For example, to define an effector `one-and-two` which invokes effector `one` then effector `two`, you can write:
 
@@ -23,7 +23,7 @@ brooklyn.initializers:
       - invoke-effector two
 ```
 
-This can be used to define [effectors, sensors, and policies](defining.md).
+This can be used within [most Apache Brooklyn resources](defining.md).
 
 The syntax supports [longhand, conditions, loops, error-handling](common.md), [variables](variables.md),
 a large set of [built-in step types](steps.md), and the ability to [define custom step types](nested-workflow.md).