blob: 5a2d46bba6f6385e90ac0767915afcf8a9acc4dd [file] [log] [blame]
Andy Bavierf15d53a2018-03-07 17:34:30 -07001---
Andy Bavierf15d53a2018-03-07 17:34:30 -07002# Copyright 2018-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
Zack Williams2749ae52018-09-28 09:43:43 -070016# Default values for ONOS
Andy Bavierf15d53a2018-03-07 17:34:30 -070017# This is a YAML-formatted file.
18# Declare variables to be passed into your templates.
19
20replicaCount: 1
21
Zack Williams7a506d22018-09-24 17:00:13 -070022images:
Zack Williams2749ae52018-09-28 09:43:43 -070023 onos:
24 repository: 'onosproject/onos'
25 tag: '{{ .Chart.AppVersion }}'
26 pullPolicy: 'Always'
Zack Williams7a506d22018-09-24 17:00:13 -070027
28 # keep in sync with: https://github.com/helm/charts/blob/master/stable/filebeat/values.yaml
29 log_agent:
30 repository: docker.elastic.co/beats/filebeat-oss
31 tag: 6.4.2
32 pullPolicy: IfNotPresent
33
34global:
35 registry: ''
36
37log_agent:
38 enabled: True
39 kafka_brokers: ['cord-kafka:9092']
Andy Bavierf15d53a2018-03-07 17:34:30 -070040
Zack Williams2749ae52018-09-28 09:43:43 -070041nameOverride: ''
42fullnameOverride: ''
43
44xos_service_label: ONOS
Zack Williams9963fe52018-04-03 08:40:26 -070045
Gopinath Tagetfff89342018-04-16 12:12:17 -070046serviceAccountName: default
47
Andy Bavierf15d53a2018-03-07 17:34:30 -070048services:
Andy Bavierf15d53a2018-03-07 17:34:30 -070049 openflow:
Hyunsun Moon90c60502019-10-19 14:46:41 -060050 type: NodePort
Andy Bavierf15d53a2018-03-07 17:34:30 -070051 port: 6653
Zack Williams2749ae52018-09-28 09:43:43 -070052 nodePort: 31653
Andy Bavierf15d53a2018-03-07 17:34:30 -070053 ssh:
Hyunsun Moon90c60502019-10-19 14:46:41 -060054 type: NodePort
Andy Bavierf15d53a2018-03-07 17:34:30 -070055 port: 8101
Zack Williams2749ae52018-09-28 09:43:43 -070056 nodePort: 30115
Andy Bavierf15d53a2018-03-07 17:34:30 -070057 ui:
Hyunsun Moon90c60502019-10-19 14:46:41 -060058 type: NodePort
Andy Bavierf15d53a2018-03-07 17:34:30 -070059 port: 8181
Zack Williams2749ae52018-09-28 09:43:43 -070060 nodePort: 30120
Matteo Scandolofe4ed632018-09-07 12:14:48 -070061 debugger:
Hyunsun Moon90c60502019-10-19 14:46:41 -060062 type: NodePort
Matteo Scandolofe4ed632018-09-07 12:14:48 -070063 port: 5005
Zack Williams2749ae52018-09-28 09:43:43 -070064 nodePort: 30555
Zack Williams2749ae52018-09-28 09:43:43 -070065 ovsdb:
Hyunsun Moon90c60502019-10-19 14:46:41 -060066 type: ClusterIP
Zack Williams2749ae52018-09-28 09:43:43 -070067 port: 6640
Hyunsun Moon90c60502019-10-19 14:46:41 -060068 # Add application specific ports
69 #progran:
70 # type: NodePort
71 # port: 4010
72 # nodePort: 30410
Andy Bavierf15d53a2018-03-07 17:34:30 -070073
Luca Prete3a56a682018-12-12 15:45:07 -080074onos_env:
75- name: POD_IP
76 valueFrom:
77 fieldRef:
78 fieldPath: status.podIP
79- name: NAMESPACE
80 valueFrom:
81 fieldRef:
82 fieldPath: metadata.namespace
83- name: ONOS_APPS
84 value: "drivers,openflow-base"
Daniele Moro556b6e02019-09-05 09:05:44 -070085- name: JAVA_DEBUG_PORT
86 value: "0.0.0.0:5005"
Zack Williams2749ae52018-09-28 09:43:43 -070087
Andy Bavierf15d53a2018-03-07 17:34:30 -070088resources: {}
89
90nodeSelector: {}
91
92tolerations: []
93
94affinity: {}
Scott Baker900343a2018-08-09 17:03:16 -070095
Zack Williams2749ae52018-09-28 09:43:43 -070096application_logs: ''