blob: 97afe1e7730944ef67912b86335ec667740d0427 [file] [log] [blame]
Andy Bavierac5a1922018-07-09 17:19:19 -07001---
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16# Aggregation chart of SEBA charts
17
18# configuration for kafka
19voltha-kafka:
20 replicas: 1
21 persistence:
22 enabled: false
23 zookeeper:
24 servers: 1
25 persistence:
26 enabled: false
27
28voltha:
29 etcd-operator:
30 customResources:
Matteo Scandolo2eadad72018-07-25 13:40:56 -070031 createEtcdClusterCRD: true
Andy Bavierac5a1922018-07-09 17:19:19 -070032 kafkaReleaseName: "seba-substrate-voltha-kafka"
33
34# from configs/onos-voltha.yaml
35onos-voltha:
36 nameOverride: "onosv"
37 fullnameOverride: "onos-voltha"
38
Andy Bavierac5a1922018-07-09 17:19:19 -070039 onosImage: 'voltha/voltha-onos:latest'
40
41 services:
42 openflowServiceType: ClusterIP
43 ovsdbServiceType: ClusterIP
44 sshServiceType: NodePort
45 uiServiceType: NodePort
46 ssh:
47 nodePort: 30115
48 ui:
49 nodePort: 30120
50
51 onos_env:
52 - name: POD_IP
53 valueFrom:
54 fieldRef:
55 fieldPath: status.podIP
56 - name: NAMESPACE
57 valueFrom:
58 fieldRef:
59 fieldPath: metadata.namespace
60 - name: ONOS_APPS
61 value: "drivers,openflow-base"
62
63
64# from configs/onos-fabric.yaml
65onos-fabric:
Jonathan Hart5b3f4162018-08-03 15:31:50 -070066 nameOverride: "onosf"
67 fullnameOverride: "onos-fabric"
68
Andy Bavierac5a1922018-07-09 17:19:19 -070069 services:
70 openflowServiceType: NodePort
71 ovsdbServiceType: NodePort
72 sshServiceType: NodePort
73 uiServiceType: NodePort
74 ovsdb:
75 nodePort: 31640
76 openflow:
77 nodePort: 31653
78 ssh:
79 nodePort: 31101
80 ui:
81 nodePort: 31181
82
83 onos_env:
84 - name: ONOS_APPS
85 value: "openflow"