blob: b467cb850be0c881bd4606b329fc1685e1bf34cc [file] [log] [blame]
Amit Wankhede3d0bc582021-10-18 22:28:50 +05301# 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
Amit Wankhede3d0bc582021-10-18 22:28:50 +05304
5apiVersion: config.onosproject.org/v1beta1
6kind: Model
7metadata:
8 name: {{ template "plproxy.fullname" . }}
9 namespace: {{ .Release.Namespace }}
10 labels:
11 {{- include "plproxy.labels" . | nindent 4 }}
12spec:
13 plugin:
14 type: PLProxy
15 version: {{ .Chart.AppVersion | quote }}
16 modules:
17 - name: plproxy-service
18 organization: Open Networking Foundation
19 revision: 2021-09-24
20 file: prom-label-proxy.yang
21 files:
22 {{- range $path, $_ := $.Files.Glob "files/yang/*.yang" }}
23 {{ base $path }}: |
24{{ $.Files.Get $path | indent 6 }}
25 {{- end }}