Adding tosca files for UI visualization of vnodlocal

Change-Id: I2d42fd7566b1a21817ac19ffde0f8e6d1e821357
diff --git a/xos/macros.m4 b/xos/macros.m4
new file mode 100644
index 0000000..1f48f10
--- /dev/null
+++ b/xos/macros.m4
@@ -0,0 +1,84 @@
+# Note: Tosca derived_from isn't working the way I think it should, it's not
+#    inheriting from the parent template. Until we get that figured out, use
+#    m4 macros do our inheritance
+
+define(xos_base_props,
+            no-delete:
+                type: boolean
+                default: false
+                description: Do not allow Tosca to delete this object
+            no-create:
+                type: boolean
+                default: false
+                description: Do not allow Tosca to create this object
+            no-update:
+                type: boolean
+                default: false
+                description: Do not allow Tosca to update this object
+            replaces:
+                type: string
+                required: false
+                descrption: Replaces/renames this object)
+# Service
+define(xos_base_service_caps,
+            scalable:
+                type: tosca.capabilities.Scalable
+            service:
+                type: tosca.capabilities.xos.Service)
+define(xos_base_service_props,
+            kind:
+                type: string
+                default: generic
+                description: Type of service.
+            view_url:
+                type: string
+                required: false
+                description: URL to follow when icon is clicked in the Service Directory.
+            icon_url:
+                type: string
+                required: false
+                description: ICON to display in the Service Directory.
+            enabled:
+                type: boolean
+                default: true
+            published:
+                type: boolean
+                default: true
+                description: If True then display this Service in the Service Directory.
+            public_key:
+                type: string
+                required: false
+                description: Public key to install into Instances to allows Services to SSH into them.
+            private_key_fn:
+                type: string
+                required: false
+                description: Location of private key file
+            versionNumber:
+                type: string
+                required: false
+                description: Version number of Service.)
+# Subscriber
+define(xos_base_subscriber_caps,
+            subscriber:
+                type: tosca.capabilities.xos.Subscriber)
+define(xos_base_subscriber_props,
+            kind:
+                type: string
+                default: generic
+                description: Kind of subscriber
+            service_specific_id:
+                type: string
+                required: false
+                description: Service specific ID opaque to XOS but meaningful to service)
+define(xos_base_tenant_props,
+            kind:
+                type: string
+                default: generic
+                description: Kind of tenant
+            service_specific_id:
+                type: string
+                required: false
+                description: Service specific ID opaque to XOS but meaningful to service)
+
+# end m4 macros
+
diff --git a/xos/tosca/resources/vnodlocalservice.py b/xos/tosca/resources/vnodlocalservice.py
new file mode 100644
index 0000000..0f0d8bd
--- /dev/null
+++ b/xos/tosca/resources/vnodlocalservice.py
@@ -0,0 +1,8 @@
+from service import XOSService
+from services.vnodlocal.models import VnodLocalService
+
+class VNodLocalService(XOSService):
+    provides = "tosca.nodes.VNodLocalService"
+    xos_model = VnodLocalService
+    copyin_props = ["view_url", "icon_url", "enabled", "published", "public_key", "versionNumber"]
+
diff --git a/xos/vnodlocal-onboard.yaml b/xos/vnodlocal-onboard.yaml
index 937cfab..c1a7387 100644
--- a/xos/vnodlocal-onboard.yaml
+++ b/xos/vnodlocal-onboard.yaml
@@ -7,7 +7,7 @@
 
 topology_template:
   node_templates:
-    vnodlocal:
+    servicecontroller#vnodlocal:
       type: tosca.nodes.ServiceController
       properties:
           base_url: file:///opt/xos_services/metronet-local/xos/
@@ -18,3 +18,5 @@
           rest_service: subdirectory:vnodlocalservice api/service/vnodlocalservice/vnodlocalservice.py
           synchronizer: synchronizer/manifest
           synchronizer_run: vnodlocal-synchronizer.py
+          tosca_resource: tosca/resources/vnodlocalservice.py
+          tosca_custom_types: vnodlocal.yaml
diff --git a/xos/vnodlocal.m4 b/xos/vnodlocal.m4
new file mode 100644
index 0000000..6b5b401
--- /dev/null
+++ b/xos/vnodlocal.m4
@@ -0,0 +1,30 @@
+tosca_definitions_version: tosca_simple_yaml_1_0
+
+# compile this with "m4 vnodlocal.m4 > vnodlocal.yaml"
+
+# include macros
+include(macros.m4)
+
+node_types:
+    
+    tosca.nodes.VNodLocalService:
+        derived_from: tosca.nodes.Root
+        description: >
+            CORD: The VNodLocal Service.
+        capabilities:
+            xos_base_service_caps
+        properties:
+            xos_base_props
+            xos_base_service_props
+            rest_hostname:
+                type: string
+                required: false
+            rest_port:
+                type: string
+                required: false
+            rest_user:
+                type: string
+                required: false
+            rest_pass:
+                type: string
+                required: false
diff --git a/xos/vnodlocal.yaml b/xos/vnodlocal.yaml
new file mode 100644
index 0000000..bc717d1
--- /dev/null
+++ b/xos/vnodlocal.yaml
@@ -0,0 +1,93 @@
+tosca_definitions_version: tosca_simple_yaml_1_0
+
+# compile this with "m4 vnodlocal.m4 > vnodlocal.yaml"
+
+# include macros
+# Note: Tosca derived_from isn't working the way I think it should, it's not
+#    inheriting from the parent template. Until we get that figured out, use
+#    m4 macros do our inheritance
+
+
+# Service
+
+
+# Subscriber
+
+
+
+
+# end m4 macros
+
+
+
+node_types:
+    
+    tosca.nodes.VNodLocalService:
+        derived_from: tosca.nodes.Root
+        description: >
+            CORD: The VNodLocal Service.
+        capabilities:
+            scalable:
+                type: tosca.capabilities.Scalable
+            service:
+                type: tosca.capabilities.xos.Service
+        properties:
+            no-delete:
+                type: boolean
+                default: false
+                description: Do not allow Tosca to delete this object
+            no-create:
+                type: boolean
+                default: false
+                description: Do not allow Tosca to create this object
+            no-update:
+                type: boolean
+                default: false
+                description: Do not allow Tosca to update this object
+            replaces:
+                type: string
+                required: false
+                descrption: Replaces/renames this object
+            kind:
+                type: string
+                default: generic
+                description: Type of service.
+            view_url:
+                type: string
+                required: false
+                description: URL to follow when icon is clicked in the Service Directory.
+            icon_url:
+                type: string
+                required: false
+                description: ICON to display in the Service Directory.
+            enabled:
+                type: boolean
+                default: true
+            published:
+                type: boolean
+                default: true
+                description: If True then display this Service in the Service Directory.
+            public_key:
+                type: string
+                required: false
+                description: Public key to install into Instances to allows Services to SSH into them.
+            private_key_fn:
+                type: string
+                required: false
+                description: Location of private key file
+            versionNumber:
+                type: string
+                required: false
+                description: Version number of Service.
+            rest_hostname:
+                type: string
+                required: false
+            rest_port:
+                type: string
+                required: false
+            rest_user:
+                type: string
+                required: false
+            rest_pass:
+                type: string
+                required: false