diff options
author | Marek SzwaĆkiewicz <marek.szwalkiewicz@external.t-mobile.pl> | 2020-09-02 12:48:47 +0000 |
---|---|---|
committer | Lukasz Rajewski <lukasz.rajewski@orange.com> | 2020-09-07 10:19:30 +0200 |
commit | 836be777835eb05be1a62b98a9e1f5860623d7b2 (patch) | |
tree | 9cd2057fa544719ae648a0b757e7869dfde95774 /components | |
parent | 953b78a4c0c36d31c944baf93db4ae3d8584d232 (diff) |
Add k8s-upload-profile node type and logic.
Issue-ID: CCSDK-2630
Change-Id: Icd50ab98503a2c2259c56ced20976579afefd7fc
Signed-off-by: Marek SzwaĆkiewicz <marek.szwalkiewicz@external.t-mobile.pl>
Diffstat (limited to 'components')
-rw-r--r-- | components/model-catalog/definition-type/starter-type/node_type/component-k8s-profile-upload.json | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/components/model-catalog/definition-type/starter-type/node_type/component-k8s-profile-upload.json b/components/model-catalog/definition-type/starter-type/node_type/component-k8s-profile-upload.json new file mode 100644 index 000000000..ac7c95cd8 --- /dev/null +++ b/components/model-catalog/definition-type/starter-type/node_type/component-k8s-profile-upload.json @@ -0,0 +1,62 @@ +{ + "description": "This component is rendering and sending the k8s profile to the multicloud plugin.", + "version": "1.0.0", + "attributes": { + "statuses": { + "required": true, + "type": "json" + } + }, + "capabilities": { + "component-node": { + "type": "tosca.capabilities.Node" + } + }, + "interfaces": { + "K8sProfileUploadComponent": { + "operations": { + "process": { + "inputs": { + "k8s-rb-profile-name": { + "description": "K8s profile 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-profile-namespace": { + "description": "a K8s namespace for the profile", + "required": false, + "type": "string" + }, + "k8s-rb-profile-source": { + "description": "Source (tgz/folder) for the template in CBA", + "required": false, + "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" +}
\ No newline at end of file |