blob: 57fb42f50652a07615824bc8a671099850e86ca7 [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 -070046namespace: default
47serviceAccountName: default
48
Andy Bavierf15d53a2018-03-07 17:34:30 -070049services:
Andy Bavierf15d53a2018-03-07 17:34:30 -070050 openflow:
Hyunsun Moon90c60502019-10-19 14:46:41 -060051 type: NodePort
Andy Bavierf15d53a2018-03-07 17:34:30 -070052 port: 6653
Zack Williams2749ae52018-09-28 09:43:43 -070053 nodePort: 31653
Andy Bavierf15d53a2018-03-07 17:34:30 -070054 ssh:
Hyunsun Moon90c60502019-10-19 14:46:41 -060055 type: NodePort
Andy Bavierf15d53a2018-03-07 17:34:30 -070056 port: 8101
Zack Williams2749ae52018-09-28 09:43:43 -070057 nodePort: 30115
Andy Bavierf15d53a2018-03-07 17:34:30 -070058 ui:
Hyunsun Moon90c60502019-10-19 14:46:41 -060059 type: NodePort
Andy Bavierf15d53a2018-03-07 17:34:30 -070060 port: 8181
Zack Williams2749ae52018-09-28 09:43:43 -070061 nodePort: 30120
Matteo Scandolofe4ed632018-09-07 12:14:48 -070062 debugger:
Hyunsun Moon90c60502019-10-19 14:46:41 -060063 type: NodePort
Matteo Scandolofe4ed632018-09-07 12:14:48 -070064 port: 5005
Zack Williams2749ae52018-09-28 09:43:43 -070065 nodePort: 30555
Zack Williams2749ae52018-09-28 09:43:43 -070066 ovsdb:
Hyunsun Moon90c60502019-10-19 14:46:41 -060067 type: ClusterIP
Zack Williams2749ae52018-09-28 09:43:43 -070068 port: 6640
Hyunsun Moon90c60502019-10-19 14:46:41 -060069 # Add application specific ports
70 #progran:
71 # type: NodePort
72 # port: 4010
73 # nodePort: 30410
Andy Bavierf15d53a2018-03-07 17:34:30 -070074
Luca Prete3a56a682018-12-12 15:45:07 -080075onos_env:
76- name: POD_IP
77 valueFrom:
78 fieldRef:
79 fieldPath: status.podIP
80- name: NAMESPACE
81 valueFrom:
82 fieldRef:
83 fieldPath: metadata.namespace
84- name: ONOS_APPS
85 value: "drivers,openflow-base"
Zack Williams2749ae52018-09-28 09:43:43 -070086
Andy Bavierf15d53a2018-03-07 17:34:30 -070087resources: {}
88
89nodeSelector: {}
90
91tolerations: []
92
93affinity: {}
Scott Baker900343a2018-08-09 17:03:16 -070094
Zack Williams2749ae52018-09-28 09:43:43 -070095application_logs: ''