Merge "CORD-2831 Generate TOSCA for rcord-lite profile"
diff --git a/xos-profiles/rcord-lite/.helmignore b/xos-profiles/rcord-lite/.helmignore
new file mode 100644
index 0000000..f0c1319
--- /dev/null
+++ b/xos-profiles/rcord-lite/.helmignore
@@ -0,0 +1,21 @@
+# Patterns to ignore when building packages.
+# This supports shell glob matching, relative path matching, and
+# negation (prefixed with !). Only one pattern per line.
+.DS_Store
+# Common VCS dirs
+.git/
+.gitignore
+.bzr/
+.bzrignore
+.hg/
+.hgignore
+.svn/
+# Common backup files
+*.swp
+*.bak
+*.tmp
+*~
+# Various IDEs
+.project
+.idea/
+*.tmproj
diff --git a/xos-profiles/rcord-lite/Chart.yaml b/xos-profiles/rcord-lite/Chart.yaml
new file mode 100644
index 0000000..5c4972c
--- /dev/null
+++ b/xos-profiles/rcord-lite/Chart.yaml
@@ -0,0 +1,21 @@
+---
+
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: v1
+appVersion: "1.0"
+description: A Helm chart for XOS's "rcord-lite" profile
+name: rcord-lite
+version: 0.1.0
diff --git a/xos-profiles/rcord-lite/requirements.yaml b/xos-profiles/rcord-lite/requirements.yaml
new file mode 100644
index 0000000..fd27eb4
--- /dev/null
+++ b/xos-profiles/rcord-lite/requirements.yaml
@@ -0,0 +1,29 @@
+---
+
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+dependencies:
+- name: onos-service
+  version: 0.1.0
+  repository: file://../../xos-services/onos-service
+- name: addressmanager
+  version: 0.1.0
+  repository: file://../../xos-services/addressmanager
+- name: fabric
+  version: 0.1.0
+  repository: file://../../xos-services/fabric
+- name: volt
+  version: 0.1.0
+  repository: file://../../xos-services/volt
\ No newline at end of file
diff --git a/xos-profiles/rcord-lite/templates/_helpers.tpl b/xos-profiles/rcord-lite/templates/_helpers.tpl
new file mode 100644
index 0000000..0d74e8b
--- /dev/null
+++ b/xos-profiles/rcord-lite/templates/_helpers.tpl
@@ -0,0 +1,47 @@
+{{/* vim: set filetype=mustache: */}}
+{{/*
+Copyright 2018-present Open Networking Foundation
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/}}
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "rcord-lite.name" -}}
+{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+
+{{/*
+Create a default fully qualified app name.
+We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
+If release name contains chart name it will be used as a full name.
+*/}}
+{{- define "rcord-lite.fullname" -}}
+{{- if .Values.fullnameOverride -}}
+{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
+{{- else -}}
+{{- $name := default .Chart.Name .Values.nameOverride -}}
+{{- if contains $name .Release.Name -}}
+{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
+{{- else -}}
+{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+{{- end -}}
+{{- end -}}
+
+{{/*
+Create chart name and version as used by the chart label.
+*/}}
+{{- define "rcord-lite.chart" -}}
+{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
diff --git a/xos-profiles/rcord-lite/templates/configmap.yaml b/xos-profiles/rcord-lite/templates/configmap.yaml
new file mode 100644
index 0000000..b9da88e
--- /dev/null
+++ b/xos-profiles/rcord-lite/templates/configmap.yaml
@@ -0,0 +1,29 @@
+---
+
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: v1
+kind: ConfigMap
+metadata:
+  name: rcord-lite-tosca
+data:
+  010-fixtures.yaml: |
+{{ toYaml .Values.toscaRecipes.fixtures | indent 4 }}
+  020-deployment.yaml: |
+{{ toYaml .Values.toscaRecipes.deployment | indent 4 }}
+  030-fabric-service.yaml: |
+{{ toYaml .Values.toscaRecipes.fabricService | indent 4 }}
+  040-cord-services.yaml: |
+{{ toYaml .Values.toscaRecipes.cordServices | indent 4 }}
diff --git a/xos-profiles/rcord-lite/templates/deployment.yaml b/xos-profiles/rcord-lite/templates/deployment.yaml
new file mode 100644
index 0000000..e06960f
--- /dev/null
+++ b/xos-profiles/rcord-lite/templates/deployment.yaml
@@ -0,0 +1,66 @@
+---
+
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: apps/v1beta2
+kind: Deployment
+metadata:
+  name: {{ template "rcord-lite.fullname" . }}
+  labels:
+    app: {{ template "rcord-lite.name" . }}
+    chart: {{ template "rcord-lite.chart" . }}
+    release: {{ .Release.Name }}
+    heritage: {{ .Release.Service }}
+spec:
+  replicas: {{ .Values.replicaCount }}
+  selector:
+    matchLabels:
+      app: {{ template "rcord-lite.name" . }}
+      release: {{ .Release.Name }}
+  template:
+    metadata:
+      labels:
+        app: {{ template "rcord-lite.name" . }}
+        release: {{ .Release.Name }}
+      annotations:
+        checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
+    spec:
+      containers:
+        - name: {{ .Chart.Name }}
+          image: "{{ .Values.pull_docker_registry }}{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+          imagePullPolicy: {{ .Values.image.pullPolicy }}
+          command: ["/bin/sh"]
+          args: ["-c", "for recipe in /opt/tosca/*; do echo $recipe; http --ignore-stdin POST http://xos-tosca:$XOS_TOSCA_SERVICE_PORT/run xos-username:{{ .Values.xosAdminUser }} xos-password:{{ .Values.xosAdminPassword }} @$recipe || exit 1; echo ''; done; sleep 3600"]
+          resources:
+{{ toYaml .Values.resources | indent 12 }}
+          volumeMounts:
+            - name: rcord-lite-tosca
+              mountPath: /opt/tosca
+      volumes:
+        - name: rcord-lite-tosca
+          configMap:
+            name: rcord-lite-tosca
+    {{- with .Values.nodeSelector }}
+      nodeSelector:
+{{ toYaml . | indent 8 }}
+    {{- end }}
+    {{- with .Values.affinity }}
+      affinity:
+{{ toYaml . | indent 8 }}
+    {{- end }}
+    {{- with .Values.tolerations }}
+      tolerations:
+{{ toYaml . | indent 8 }}
+    {{- end }}
diff --git a/xos-profiles/rcord-lite/values.yaml b/xos-profiles/rcord-lite/values.yaml
new file mode 100644
index 0000000..a3b7efb
--- /dev/null
+++ b/xos-profiles/rcord-lite/values.yaml
@@ -0,0 +1,256 @@
+---
+
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Default values for the rcord-lite profile.
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+
+replicaCount: 1
+
+pull_docker_registry:
+
+image:
+  repository: clue/httpie
+  tag: latest
+  pullPolicy: IfNotPresent
+
+resources: {}
+
+nodeSelector: {}
+
+tolerations: []
+
+affinity: {}
+
+xosAdminUser: admin@opencord.org
+xosAdminPassword: letmein
+
+# Service-specific configuration.
+addressmanager:
+  serviceConfig:
+    accessor:
+      username: admin@opencord.org
+      password: letmein
+fabric:
+  serviceConfig:
+  accessor:
+    username: admin@opencord.org
+    password: letmein
+onos-service:
+  serviceConfig:
+    accessor:
+      username: admin@opencord.org
+      password: letmein
+volt:
+  serviceConfig:
+    accessor:
+      username: admin@opencord.org
+      password: letmein
+
+toscaRecipes:
+  fixtures:
+    tosca_definitions_version: tosca_simple_yaml_1_0
+    description: Some basic fixtures
+    imports:
+      - custom_types/siterole.yaml
+      - custom_types/slicerole.yaml
+      - custom_types/networkparametertype.yaml
+      - custom_types/networktemplate.yaml
+    topology_template:
+      node_templates:
+    # -----------------------------------------------------------------------------
+    # Network Parameter Types
+    # -----------------------------------------------------------------------------
+        s_tag:
+          type: tosca.nodes.NetworkParameterType
+          properties:
+            name: s_tag
+        c_tag:
+          type: tosca.nodes.NetworkParameterType
+          properties:
+            name: c_tag
+        next_hop:
+          type: tosca.nodes.NetworkParameterType
+          properties:
+            name: next_hop
+        device:
+          type: tosca.nodes.NetworkParameterType
+          properties:
+            name: device
+        bridge:
+          type: tosca.nodes.NetworkParameterType
+          properties:
+            name: bridge
+        neutron_port_name:
+          type: tosca.nodes.NetworkParameterType
+          properties:
+            name: neutron_port_name
+    # ----------------------------------------------------------------------------
+    # Roles
+    # ----------------------------------------------------------------------------
+        siterole#admin:
+          type: tosca.nodes.SiteRole
+          properties:
+            role: admin
+        siterole#pi:
+          type: tosca.nodes.SiteRole
+          properties:
+            role: pi
+        siterole#tech:
+          type: tosca.nodes.SiteRole
+          properties:
+            role: tech
+        slicerole#admin:
+          type: tosca.nodes.SliceRole
+          properties:
+            role: admin
+        slicerole#access:
+          type: tosca.nodes.SliceRole
+          properties:
+            role: access
+    # -----------------------------------------------------------------------------
+    # Network Templates
+    # -----------------------------------------------------------------------------
+        Private:
+          type: tosca.nodes.NetworkTemplate
+          properties:
+            name: Private
+            visibility: private
+            translation: none
+        Public shared IPv4:
+          type: tosca.nodes.NetworkTemplate
+          properties:
+            name: Public shared IPv4
+            visibility: private
+            translation: NAT
+            shared_network_name: nat-net
+        Public dedicated IPv4:
+          type: tosca.nodes.NetworkTemplate
+          properties:
+            name: Public dedicated IPv4
+            visibility: public
+            translation: none
+            shared_network_name: ext-net
+
+  deployment:
+    tosca_definitions_version: tosca_simple_yaml_1_0
+    imports:
+       - custom_types/deployment.yaml
+    description: deployment config, generated by platform-install
+    topology_template:
+      node_templates:
+        MyDeployment:
+          type: tosca.nodes.Deployment
+          properties:
+            name: MyDeployment
+
+  fabricService:
+    tosca_definitions_version: tosca_simple_yaml_1_0
+    imports:
+      - custom_types/onosservice.yaml
+      - custom_types/serviceattribute.yaml
+      - custom_types/fabricservice.yaml
+      - custom_types/onosapp.yaml
+      - custom_types/serviceinstancelink.yaml
+    description: fabric services, generated by rcord profile
+    topology_template:
+      node_templates:
+        service#ONOS_Fabric:
+          type: tosca.nodes.ONOSService
+          properties:
+              name: ONOS_Fabric
+              kind: platform
+              no_container: true
+              rest_hostname: onos-fabric
+        serviceattribute#fabric_network_cfg_json:
+          type: tosca.nodes.ServiceAttribute
+          requirements:
+              - service:
+                  node: service#ONOS_Fabric
+                  relationship: tosca.relationships.BelongsToOne
+          properties:
+              name: rest_onos/v1/network/configuration/
+              value: ''
+        service#fabric:
+          type: tosca.nodes.FabricService
+          properties:
+              name: fabric
+              kind: platform
+        Fabric_ONOS_app:
+          type: tosca.nodes.ONOSApp
+          requirements:
+              - owner:
+                  node: service#ONOS_Fabric
+                  relationship: tosca.relationships.BelongsToOne
+          properties:
+              name: Fabric_ONOS_app
+              dependencies: org.onosproject.drivers, org.onosproject.openflow, org.onosproject.netcfghostprovider, org.onosproject.segmentrouting
+        Fabric_ONOS_app_ONOS_Fabric:
+            type: tosca.nodes.ServiceInstanceLink
+            requirements:
+              - provider_service_instance:
+                  node: Fabric_ONOS_app
+                  relationship: tosca.relationships.BelongsToOne
+              - subscriber_service:
+                  node: service#fabric
+                  relationship: tosca.relationships.BelongsToOne
+
+  cordServices:
+    tosca_definitions_version: tosca_simple_yaml_1_0
+    description: Set up VOLT, AddressManager, and RCORD services
+    imports:
+      - custom_types/addressmanagerservice.yaml
+      - custom_types/addresspool.yaml
+      - custom_types/image.yaml
+      - custom_types/network.yaml
+      - custom_types/networkslice.yaml
+      - custom_types/networktemplate.yaml
+      - custom_types/nodelabel.yaml
+      - custom_types/onosapp.yaml
+      - custom_types/onosservice.yaml
+      - custom_types/site.yaml
+      - custom_types/service.yaml
+      - custom_types/servicedependency.yaml
+      - custom_types/serviceinstanceattribute.yaml
+      - custom_types/serviceinstancelink.yaml
+      - custom_types/slice.yaml
+      - custom_types/voltservice.yaml
+    topology_template:
+      node_templates:
+        service#rcord:
+          type: tosca.nodes.Service
+          properties:
+            name: rcord
+        rcord_volt:
+          type: tosca.nodes.ServiceDependency
+          properties:
+            connect_method: None
+          requirements:
+            - subscriber_service:
+                node: service#rcord
+                relationship: tosca.relationships.BelongsToOne
+            - provider_service:
+                node: service#volt
+                relationship: tosca.relationships.BelongsToOne
+        service#volt:
+          type: tosca.nodes.VOLTService
+          properties:
+            name: volt
+            kind: rcord
+        service#addressmanager:
+          type: tosca.nodes.AddressManagerService
+          properties:
+            name: addressmanager