blob: 0b2af159e121d95a0b18591cc6770dfa5f46b982 [file] [log] [blame]
Scott Bakerc9d3d842021-09-17 11:32:53 -07001# 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 Bakerc9d3d842021-09-17 11:32:53 -07004
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:
17 - name: aether-subscriber
18 organization: Open Networking Foundation
19 revision: 2020-08-18
20 file: aether-subscriber.yang
21 - name: apn-profile
22 organization: Open Networking Foundation
23 revision: 2020-08-18
24 file: apn-profile.yang
25 - name: up-profile
26 organization: Open Networking Foundation
27 revision: 2020-08-18
28 file: up-profile.yang
29 - name: qos-profile
30 organization: Open Networking Foundation
31 revision: 2020-08-18
32 file: qos-profile.yang
33 - name: access-profile
34 organization: Open Networking Foundation
35 revision: 2020-08-18
36 file: access-profile.yang
37 files:
38 {{- range $path, $_ := $.Files.Glob "files/yang/*.yang" }}
39 {{ base $path }}: |
40{{ $.Files.Get $path | indent 6 }}
41 {{- end }}