blob: 7e2cf06ba5728f837767233acb4f1008b59394f9 [file] [log] [blame]
Woojoong Kima053c4a2019-08-09 16:19:14 -07001---
2# Copyright 2019-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16apiVersion: v1
17kind: ConfigMap
18metadata:
19 name: comac-tosca
20data:
Woojoong Kim4e3f0992019-09-30 14:27:12 -070021{{- if .Values.resdentialService.enabled }}
Woojoong Kima053c4a2019-08-09 16:19:14 -070022 010-rcord-subscriber-service.yaml: |
23{{ include "rcord.serviceTosca" .Values.rcord | indent 4 }}
24 020-volt-service.yaml: |
25{{ include "volt.serviceTosca" .Values.volt | indent 4 }}
26 030-fabric-crossconnect-service.yaml: |
27{{ include "fabric-crossconnect.serviceTosca" (index .Values "fabric-crossconnect") | indent 4 }}
Woojoong Kimb30eee52019-10-02 16:55:28 -070028 031-fixtures.yaml: |
29{{ include "att-workflow-driver.serviceTosca" (index .Values "att-workflow-driver") | indent 4 }}
Woojoong Kima053c4a2019-08-09 16:19:14 -070030{{- end }}
31 040-onos-service.yaml: |
32{{ include "comac.onosTosca" .Values | indent 4 }}
33{{- if .Values.fabric.enabled }}
34 050-fabric-service.yaml: |
35{{ include "fabric.serviceTosca" .Values.fabric | indent 4 }}
36{{- end }}
Woojoong Kim4e3f0992019-09-30 14:27:12 -070037{{- if .Values.resdentialService.enabled }}
Woojoong Kima053c4a2019-08-09 16:19:14 -070038 060-fixtures.yaml: |
39{{ include "comac.basicFixturesTosca" . | indent 4 }}
40{{- end }}
41 070-vrouter-service.yaml: |
42{{ include "vrouter.serviceTosca" .Values.vrouter | indent 4 }}
43 080-mcord-subscriber-service.yaml: |
44{{ include "mcord-subscriber.serviceTosca" (index .Values "mcord-subscriber") | indent 4 }}
45 300-service-graph.yaml: |
46{{ include "comac.serviceGraphTosca" . | indent 4 }}