Andy Bavier | ac5a192 | 2018-07-09 17:19:19 -0700 | [diff] [blame] | 1 | --- |
| 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 |
| 19 | voltha-kafka: |
| 20 | replicas: 1 |
| 21 | persistence: |
| 22 | enabled: false |
| 23 | zookeeper: |
| 24 | servers: 1 |
| 25 | persistence: |
| 26 | enabled: false |
| 27 | |
| 28 | voltha: |
| 29 | etcd-operator: |
| 30 | customResources: |
| 31 | createEtcdClusterCRD: false |
| 32 | kafkaReleaseName: "seba-substrate-voltha-kafka" |
| 33 | |
| 34 | # from configs/onos-voltha.yaml |
| 35 | onos-voltha: |
| 36 | nameOverride: "onosv" |
| 37 | fullnameOverride: "onos-voltha" |
| 38 | |
| 39 | namespace: voltha |
| 40 | serviceAccountName: voltha-serviceaccount |
| 41 | |
| 42 | onosImage: 'voltha/voltha-onos:latest' |
| 43 | |
| 44 | services: |
| 45 | openflowServiceType: ClusterIP |
| 46 | ovsdbServiceType: ClusterIP |
| 47 | sshServiceType: NodePort |
| 48 | uiServiceType: NodePort |
| 49 | ssh: |
| 50 | nodePort: 30115 |
| 51 | ui: |
| 52 | nodePort: 30120 |
| 53 | |
| 54 | onos_env: |
| 55 | - name: POD_IP |
| 56 | valueFrom: |
| 57 | fieldRef: |
| 58 | fieldPath: status.podIP |
| 59 | - name: NAMESPACE |
| 60 | valueFrom: |
| 61 | fieldRef: |
| 62 | fieldPath: metadata.namespace |
| 63 | - name: ONOS_APPS |
| 64 | value: "drivers,openflow-base" |
| 65 | |
| 66 | |
| 67 | # from configs/onos-fabric.yaml |
| 68 | onos-fabric: |
| 69 | 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" |
| 86 | |