blob: 17090944910ae3131a1f3befaaa723936b3cf48e [file] [log] [blame]
Andy Baviera40e82b2018-05-07 17:00:36 -07001---
2
3# Copyright 2018-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17apiVersion: v1
18kind: ConfigMap
19metadata:
20 name: mcord-tosca
21data:
Matteo Scandolo3f2426b2019-01-18 13:46:26 -080022 010-onos-service.yaml: |
23{{ include "mcord.onosTosca" .Values | indent 4 }}
Matteo Scandolo4df2a0b2019-01-25 13:19:15 -080024{{- if .Values.fabric.enabled }}
Matteo Scandolo3f2426b2019-01-18 13:46:26 -080025 020-fabric-service.yaml: |
26{{ include "fabric.serviceTosca" .Values.fabric | indent 4 }}
Matteo Scandolo4df2a0b2019-01-25 13:19:15 -080027{{- end }}
Matteo Scandolo3f2426b2019-01-18 13:46:26 -080028 030-fixtures.yaml: |
Andy Baviera40e82b2018-05-07 17:00:36 -070029{{ include "mcord.fixtureTosca" . | indent 4 }}
Woojoong Kim411585c2019-07-29 18:31:28 -070030{{- if .Values.progran.enabled }}
Matteo Scandolo3f2426b2019-01-18 13:46:26 -080031 040-progran-service.yaml: |
Andy Baviera40e82b2018-05-07 17:00:36 -070032{{ include "progran.serviceTosca" .Values.progran | indent 4 }}
Woojoong Kim411585c2019-07-29 18:31:28 -070033{{- end }}
Matteo Scandoloa9ac2b82019-01-29 16:55:35 -080034 050-vrouter-service.yaml: |
35{{ include "vrouter.serviceTosca" .Values.vrouter | indent 4 }}
Andy Baviera40e82b2018-05-07 17:00:36 -070036 100-mcord-subscriber-service.yaml: |
37{{ include "mcord-subscriber.serviceTosca" (index .Values "mcord-subscriber") | indent 4 }}
Andy Bavierfe8b7d02018-06-12 10:04:52 -070038 300-service-graph.yaml: |
Andy Baviera40e82b2018-05-07 17:00:36 -070039{{ include "mcord.serviceGraphTosca" . | indent 4 }}