blob: 32616d13e6a113a38c5b964fe3e765a663958868 [file] [log] [blame]
Gopinath Tagete2dff4d2018-03-15 17:22:28 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15pull_docker_registry:
16k8s_docker_registry: 'k8s.gcr.io/'
17
Matteo Scandoloe2965c92018-05-08 13:22:20 -070018imagePullPolicy: Always
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070019
Gopinath Tagetfff89342018-04-16 12:12:17 -070020replicas:
21 vcore: 1
22 vcli: 1
23 ofagent: 1
24 netconf: 1
25 envoy_for_etcd: 1
26
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070027
28node_ports:
29 vcli_port: 30110
30
Gopinath Tagetde4eae82018-04-25 17:15:44 -070031services:
32 envoy:
33 serviceType: NodePort
34 serviceInfo:
35 ports:
36 - name: rest
37 port: 8882
38 targetPort: 8882
39 nodePort: 30125
40 - name: mystery
41 port: 8001
42 targetPort: 8001
43 - name: mystery2
44 port: 8443
45 targetPort: 8443
46 - name: grpc
47 port: 50555
48 targetPort: 50555
49
Gopinath Taget5e49fe32018-06-25 17:02:05 -070050kafka:
51 enabled: false
52 persistence:
53 enabled: false
54 zookeeper:
55 persistence:
56 enabled: false
57
58etcd:
59 operator:
60 enabled: true
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070061etcd-operator:
62 customResources:
Gopinath Taget5e49fe32018-06-25 17:02:05 -070063 size: 1
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070064 createEtcdClusterCRD: true
65
Gopinath Taget5e49fe32018-06-25 17:02:05 -070066kafkaReleaseName: voltha-kafka
67etcdReleaseName: voltha-etcd
68
69consul:
70 enabled: false
71
Matteo Scandolof6c28df2018-05-08 11:44:05 -070072envoyForEtcdImage: 'voltha/voltha-envoy:latest'
Jonathan Hart65c480e2018-05-14 16:32:16 -070073freeradiusImage: 'tpdock/freeradius:latest'
Matteo Scandolof6c28df2018-05-08 11:44:05 -070074grafanaImage: 'kamon/grafana_graphite:3.0'
75netconfImage: 'voltha/voltha-netconf:latest'
76ofagentImage: 'voltha/voltha-ofagent:latest'
77dashdImage: 'voltha/voltha-dashd:latest'
78shovelImage: 'voltha/voltha-shovel:latest'
79vcliImage: 'voltha/voltha-cli:latest'
80vcoreImage: 'voltha/voltha-voltha:latest'
Jonathan Hart65c480e2018-05-14 16:32:16 -070081
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070082# Need the namespace global for kafka
83global:
84 namespace: voltha
85
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070086vcli_args:
87- "/cli/cli/setup.sh"
88- "-C consul:8500"
89- "-g voltha:50555"
90- "-s voltha:18880"
91- "-G"
92
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070093ofagent_args:
94- "/ofagent/ofagent/main.py"
95- "-v"
96- "--consul=consul.$(NAMESPACE).svc.cluster.local:8500"
Gopinath Tagetfff89342018-04-16 12:12:17 -070097- "--controller=onos-voltha-openflow:6653"
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070098- "--grpc-endpoint=vcore.$(NAMESPACE).svc.cluster.local:50556"
99- "--enable-tls"
100- "--key-file=/ofagent/pki/voltha.key"
101- "--cert-file=/ofagent/pki/voltha.crt"
102
103netconf_args:
104- "/netconf/netconf/main.py"
105- "-v"
106- "--consul=consul:8500"
Gopinath Taget98e42d62018-04-27 14:07:20 -0700107- "--grpc-endpoint=voltha:50555"