diff options
author | Grzegorz Wielgosinski <g.wielgosins@samsung.com> | 2021-02-08 19:24:25 +0100 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2021-02-15 13:44:28 +0000 |
commit | 273a6f7cbc4313cdd05e46d4f68ab7969e0ab6d1 (patch) | |
tree | 783e8312c72dc38338a4f7cb3eaca81d428215ef /components/model-catalog | |
parent | de13d783a07dbe7f64d377256be465486c65309b (diff) |
1. Wrap configuration-template DAY2 API
2. Create config-template component
Issue-ID: CCSDK-2922
Signed-off-by: Grzegorz Wielgosinski <g.wielgosins@samsung.com>
Change-Id: I124c5995294c2c05eab471eb3a2658368a49cf06
Diffstat (limited to 'components/model-catalog')
-rw-r--r-- | components/model-catalog/definition-type/starter-type/node_type/component-k8s-config-template.json | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/components/model-catalog/definition-type/starter-type/node_type/component-k8s-config-template.json b/components/model-catalog/definition-type/starter-type/node_type/component-k8s-config-template.json new file mode 100644 index 000000000..452bb1527 --- /dev/null +++ b/components/model-catalog/definition-type/starter-type/node_type/component-k8s-config-template.json @@ -0,0 +1,65 @@ +{ + "description": "This component is rendering and sending the k8s config template to the multicloud plugin.", + "version": "1.0.0", + "attributes": { + "statuses": { + "required": true, + "type": "json" + } + }, + "capabilities": { + "component-node": { + "type": "tosca.capabilities.Node" + } + }, + "interfaces": { + "K8sConfigTemplateComponent": { + "operations": { + "process": { + "inputs": { + "k8s-rb-config-template-name": { + "description": "K8s template name", + "required": false, + "type": "string" + }, + "k8s-rb-definition-name": { + "description": "K8s definition name", + "required": false, + "type": "string" + }, + "k8s-rb-definition-version": { + "description": "Version of the definition", + "required": false, + "type": "string" + }, + "k8s-rb-config-template-source": { + "description": "Source (tgz/folder) for the template in CBA", + "required": false, + "type": "string" + }, + "artifact-prefix-names": { + "description": "Resource Assignment Artifact Prefix names", + "required": false, + "type": "list", + "entry_schema": { + "type": "string" + } + }, + "resource-assignment-map": { + "description": "Holds resolved values for each artifact prefix eg. { vdns: { vnf-id: 123 } }", + "required": false, + "type": "json" + } + }, + "outputs": { + "statuses": { + "required": true, + "type": "string" + } + } + } + } + } + }, + "derived_from": "tosca.nodes.Component" +} |