Andy Bavier | c0aa0b9 | 2018-04-23 11:28:38 -0700 | [diff] [blame] | 1 | --- |
| 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 | |
| 17 | apiVersion: v1 |
| 18 | kind: ConfigMap |
| 19 | metadata: |
| 20 | name: base-openstack-tosca |
| 21 | data: |
Andy Bavier | 43cdc66 | 2018-05-15 14:50:47 -0700 | [diff] [blame] | 22 | 010-fixtures.yaml: | |
| 23 | {{ include "base-openstack.fixtureTosca" . | indent 4 }} |
| 24 | 020-openstack-controller.yaml: | |
| 25 | {{ include "openstack.controllerTosca" .Values | indent 4 }} |
| 26 | 030-openstack-flavors.yaml: | |
| 27 | {{ include "openstack.flavorTosca" .Values.openstack | indent 4 }} |
Matteo Scandolo | 979695d | 2018-06-08 17:47:01 -0700 | [diff] [blame] | 28 | 040-onos-service-vtn-app.yaml: | |
| 29 | {{ include "onos-service.vtnAppTosca" (index .Values "onos-service") | indent 4 }} |
| 30 | 041-vtn-service.yaml: | |
Andy Bavier | 43cdc66 | 2018-05-15 14:50:47 -0700 | [diff] [blame] | 31 | {{ include "vtn-service.serviceTosca" (index .Values "vtn-service") | indent 4 }} |
| 32 | 050-openstack-compute.yaml: | |
Andy Bavier | 6e6191a | 2018-05-22 14:53:10 -0700 | [diff] [blame] | 33 | {{ include "base-openstack.computeNodeTosca" . | indent 4 }} |
Andy Bavier | 43cdc66 | 2018-05-15 14:50:47 -0700 | [diff] [blame] | 34 | 060-openstack-networks.yaml: | |
| 35 | {{ include "openstack.networkTosca" .Values | indent 4 }} |
Andy Bavier | 43cdc66 | 2018-05-15 14:50:47 -0700 | [diff] [blame] | 36 | 300-service-graph.yaml: | |
| 37 | {{ include "base-openstack.serviceGraphTosca" . | indent 4 }} |
Andy Bavier | c0aa0b9 | 2018-04-23 11:28:38 -0700 | [diff] [blame] | 38 | |