Github user rtpro commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/149#discussion_r120809276
--- Diff: README.md ---
@@ -66,136 +48,47 @@ To install the latest development snapshot of ARIA:
. env/bin/activate
pip install
git+http://git-wip-us.apache.org/repos/asf/incubator-ariatosca.git
-To test it, let's create a service instance from a TOSCA blueprint:
-
- aria parse blueprints/tosca/node-cellar/node-cellar.yaml
-
-You can also get it in JSON or YAML formats:
-
- aria parse blueprints/tosca/node-cellar/node-cellar.yaml --json
-Or get an overview of the relationship graph:
- aria parse blueprints/tosca/node-cellar/node-cellar.yaml --graph
-You can provide inputs as JSON, overriding default values provided in the
blueprint
+Getting Started
+---------------
- aria parse blueprints/tosca/node-cellar/node-cellar.yaml
--inputs='{"openstack_credential": {"user": "username"}}'
+You can use the following commands to utilize ARIA. A usage example is
also provided at the end of this section.
-Instead of providing them explicitly, you can also provide them in a file
or URL, in either JSON or
-YAML. If you do so, the value must end in ".json" or ".yaml":
+* **`store`** Creates a service template.<br>
+ **Usage** `aria service-templates store <template_name.yaml>
<service_name>`
+
+* **`create-archive`** Builds a CSAR archive. This archive format is
unique to TOSCA.<br>
+ **Usage** `aria services create <service_name> -t <template_hello>`
+
+* **`reset`** Removes commands without removing any VM instances on which
they were running. Requires the use of an **`-f`** flag.
+
+* **`services`** Controls services by creating a logical instance of a
service template. You can create multiple service templates, each with its own
inputs, requirements and functionalities.<br>
+ **Usage** `aria executions start install -s <service_name>`
- aria parse blueprints/tosca/node-cellar/node-cellar.yaml
--inputs=blueprints/tosca/node-cellar/inputs.yaml
+* **`create-service`** Displays a graph after parsing is complete.
--- End diff --
I would add the set of commands needed to getting started with the "Hello
World" example.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---