blob: 41b0e30cf7578c4c62c3df0fe941844e9c43692f [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
Gopinath Taget7f357cf2018-07-03 12:34:38 -070046 nodePort: 32443
Gopinath Tagetde4eae82018-04-25 17:15:44 -070047 - name: grpc
48 port: 50555
49 targetPort: 50555
50
Gopinath Taget5e49fe32018-06-25 17:02:05 -070051etcd:
52 operator:
53 enabled: true
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070054etcd-operator:
55 customResources:
Gopinath Taget5e49fe32018-06-25 17:02:05 -070056 size: 1
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070057 createEtcdClusterCRD: true
58
Zack Williams675b2a22018-08-27 14:22:55 -070059kafkaReleaseName: cord-kafka
Gopinath Taget5e49fe32018-06-25 17:02:05 -070060etcdReleaseName: voltha-etcd
61
62consul:
63 enabled: false
64
Jonathan Hart1d5bff92018-07-12 09:18:27 -070065envoyForEtcdImage: 'voltha/voltha-envoy:1.4.0'
Jonathan Hart65c480e2018-05-14 16:32:16 -070066freeradiusImage: 'tpdock/freeradius:latest'
Jonathan Hart1d5bff92018-07-12 09:18:27 -070067netconfImage: 'voltha/voltha-netconf:1.4.0'
68ofagentImage: 'voltha/voltha-ofagent:1.4.0'
Jonathan Hart1d5bff92018-07-12 09:18:27 -070069vcliImage: 'voltha/voltha-cli:1.4.0'
70vcoreImage: 'voltha/voltha-voltha:1.4.0'
Jonathan Hart65c480e2018-05-14 16:32:16 -070071
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070072# Need the namespace global for kafka
73global:
74 namespace: voltha
75
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070076vcli_args:
77- "/cli/cli/setup.sh"
78- "-C consul:8500"
79- "-g voltha:50555"
80- "-s voltha:18880"
81- "-G"
82
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070083ofagent_args:
84- "/ofagent/ofagent/main.py"
85- "-v"
86- "--consul=consul.$(NAMESPACE).svc.cluster.local:8500"
Jonathan Hart9f638ff2018-08-22 18:19:15 -070087- "--controller=onos-openflow.default.svc.cluster.local:6653"
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070088- "--grpc-endpoint=vcore.$(NAMESPACE).svc.cluster.local:50556"
Gopinath Tagete2dff4d2018-03-15 17:22:28 -070089
90netconf_args:
91- "/netconf/netconf/main.py"
92- "-v"
93- "--consul=consul:8500"
Gopinath Taget98e42d62018-04-27 14:07:20 -070094- "--grpc-endpoint=voltha:50555"