blob: f3a73f027875556ec36fafc62a7af3b8adf0247c [file] [log] [blame]
Scott Bakerfdbad762022-01-03 16:00:45 -08001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
Scott Bakerfdbad762022-01-03 16:00:45 -08004
5apiVersion: config.onosproject.org/v1beta1
6kind: Model
7metadata:
8 name: {{ template "aether.fullname" . }}
9 namespace: {{ .Release.Namespace }}
10 labels:
11 {{- include "aether.labels" . | nindent 4 }}
12spec:
13 plugin:
14 type: Aether
15 version: {{ .Chart.AppVersion | quote }}
16 modules:
Sean Condon11d6f422022-01-14 13:02:03 +000017 - name: onf-connectivity-service
Scott Bakerfdbad762022-01-03 16:00:45 -080018 organization: Open Networking Foundation
Sean Condon11d6f422022-01-14 13:02:03 +000019 revision: 2022-01-14
Scott Bakerfdbad762022-01-03 16:00:45 -080020 file: onf-connectivity-service.yang
Sean Condon11d6f422022-01-14 13:02:03 +000021 - name: onf-enterprise
Scott Bakerfdbad762022-01-03 16:00:45 -080022 organization: Open Networking Foundation
Sean Condon11d6f422022-01-14 13:02:03 +000023 revision: 2022-01-14
Scott Bakerfdbad762022-01-03 16:00:45 -080024 file: onf-enterprise.yang
Scott Bakerfdbad762022-01-03 16:00:45 -080025 files:
26 {{- range $path, $_ := $.Files.Glob "files/yang/*.yang" }}
27 {{ base $path }}: |
28{{ $.Files.Get $path | indent 6 }}
29 {{- end }}