diff options
author | 2016-12-30 12:55:46 -0500 | |
---|---|---|
committer | 2017-08-23 15:10:33 -0400 | |
commit | 014a27a90d7ed4bf2f2c557ccfe02661a04d9655 (patch) | |
tree | 401a0e169602e42379f1ed9887678de24402aa72 /docs/components/component-specification/start-here.md | |
parent | 487c0cc16cdca19c7014898eab240c0e3c913b85 (diff) |
Add dcae documentation repo
Change-Id: I53662e0a1562d38775c878d6f257b50a125a998c
Issue-Id: DCAEGEN2-81
Signed-off-by: Michael Hwang <mhwang@research.att.com>
Diffstat (limited to 'docs/components/component-specification/start-here.md')
-rw-r--r-- | docs/components/component-specification/start-here.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/components/component-specification/start-here.md b/docs/components/component-specification/start-here.md new file mode 100644 index 00000000..3816dd06 --- /dev/null +++ b/docs/components/component-specification/start-here.md @@ -0,0 +1,21 @@ +# Component specification + +Every component that onboards onto the DCAE platform requires a component specification. The component specification is a JSON artifact that fully describes your components. The format of the component specification is standardized for CDAP applications and Dockerized applications and is validated using [a JSON schema](ONAP URL TBD). + +The component specification is used by: + +* Design - TOSCA models are generated from the component specification so that your component can be used by designers to compose new DCAE services in SDC. +* Policy - TOSCA models are generated from the component specification so that operations can create policy models used to dynamically configure your component. +* Runtime platform - Your component's application configuration (JSON) is generated from the component specification and will be provided to your component at runtime. + +## dcae-cli + +Use the [`dcae-cli`](../dcae-cli/quickstart) tool to manage your component specification and to test your components with it. + +The dcae-cli can also be used to view component specifications that have already been added and published. Please check out the [shared catalog](../dcae-cli/walkthrough/#shared-catalog) for examples for both Docker and CDAP. + +## Next + +If you are building a CDAP application, review the [component specification details for CDAP](cdap-specification.md). + +If you are building a Dockerized application, review the [component specification details for Docker](docker-specification.md). |