blob: 7b9f813a01c33502fddf018dc8fe5bcd7444100f [file] [log] [blame]
Doyoung Lee7102a812019-02-10 20:41:00 -08001---
2# 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
16# Default values for ONOS
17# This is a YAML-formatted file.
18# Declare variables to be passed into your templates.
19
20replicaCount: 1
21
22images:
23 onos:
Wei-Yu Chen2d2b3162019-02-12 14:38:35 -080024 repository: 'muluder/prograncontrollermcord'
Doyoung Lee7102a812019-02-10 20:41:00 -080025 tag: '{{ .Chart.AppVersion }}'
26 pullPolicy: 'Always'
27
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']
40
41nameOverride: ''
42fullnameOverride: ''
43
44xos_service_label: ONOS
45
46namespace: default
47serviceAccountName: default
48
49services:
50 openflowServiceType: NodePort
51 openflow:
52 port: 6653
53 nodePort: 31654
54
55 sshServiceType: NodePort
56 ssh:
57 port: 8101
58 nodePort: 30116
59
60 uiServiceType: NodePort
61 ui:
62 port: 8181
63 nodePort: 30121
64
65 debuggerServiceType: NodePort
66 debugger:
67 port: 5005
68 nodePort: 30556
69
Pingping Linccf0f942019-02-13 10:10:35 -080070 progranPort22ServiceType: NodePort
71 port22:
Doyoung Lee7102a812019-02-10 20:41:00 -080072 port: 22
73 nodePort: 30022
74
Pingping Linccf0f942019-02-13 10:10:35 -080075 progranPort9876ServiceType: NodePort
76 port9876:
Doyoung Lee7102a812019-02-10 20:41:00 -080077 port: 9876
78 nodePort: 30876
79
Pingping Linccf0f942019-02-13 10:10:35 -080080 progranPort4010ServiceType: NodePort
81 port4010:
Doyoung Lee7102a812019-02-10 20:41:00 -080082 port: 4010
Pingping Lin2bb5c142019-02-13 16:33:17 -080083 nodePort: 30410
Doyoung Lee7102a812019-02-10 20:41:00 -080084
85 ovsdbServiceType: ClusterIP
86 ovsdb:
87 port: 6640
88
89 cluster:
90 port: 9876
91
92onos_env:
93- name: POD_IP
94 valueFrom:
95 fieldRef:
96 fieldPath: status.podIP
97- name: NAMESPACE
98 valueFrom:
99 fieldRef:
100 fieldPath: metadata.namespace
101- name: ONOS_APPS
102 value: "drivers,openflow-base,progran"
103
104resources: {}
105
106nodeSelector: {}
107
108tolerations: []
109
110affinity: {}
111
112application_logs: ''
113