blob: 6b2f6a88977c130fe38914cbe198b98eca9dffb7 [file] [log] [blame]
SeanCondon3c3d08f2022-05-27 11:39:58 +01001# SPDX-FileCopyrightText: 2022-present Intel Corporation
2#
3# SPDX-License-Identifier: Apache-2.0
4
5# A topology kind representing an Aether Enterprise node
6apiVersion: topo.onosproject.org/v1beta1
7kind: Kind
8metadata:
9 name: fabric
10spec:
11 aspects: {}
12
13# Fabrics as targets
14{{- range .Values.fabrics }}
15---
16apiVersion: topo.onosproject.org/v1beta1
17kind: Entity
18metadata:
19 name: {{ .id }}
20spec:
21 uri: {{ .id }}
22 kind:
23 name: fabric
24 aspects:
25 onos.topo.Configurable:
26 address: fabric-adapter-v0-1:5150
27 version: 0.1.x
28 type: sdn-fabric
29 onos.topo.Location:
30 lat: {{ .lat }}
31 lng: {{ .long }}
32 onos.topo.TLSOptions:
33 insecure: true
34 onos.topo.Asset:
35 name: {{ .name }}
36 onos.topo.MastershipState: {}
37{{- end }}