Doyoung Lee | 7102a81 | 2019-02-10 20:41:00 -0800 | [diff] [blame] | 1 | --- |
| 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 | |
| 20 | replicaCount: 1 |
| 21 | |
| 22 | images: |
| 23 | onos: |
Wei-Yu Chen | 2d2b316 | 2019-02-12 14:38:35 -0800 | [diff] [blame] | 24 | repository: 'muluder/prograncontrollermcord' |
Doyoung Lee | 7102a81 | 2019-02-10 20:41:00 -0800 | [diff] [blame] | 25 | 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 | |
| 34 | global: |
| 35 | registry: '' |
| 36 | |
| 37 | log_agent: |
| 38 | enabled: True |
| 39 | kafka_brokers: ['cord-kafka:9092'] |
| 40 | |
| 41 | nameOverride: '' |
| 42 | fullnameOverride: '' |
| 43 | |
| 44 | xos_service_label: ONOS |
| 45 | |
| 46 | namespace: default |
| 47 | serviceAccountName: default |
| 48 | |
| 49 | services: |
| 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 Lin | ccf0f94 | 2019-02-13 10:10:35 -0800 | [diff] [blame] | 70 | progranPort22ServiceType: NodePort |
| 71 | port22: |
Doyoung Lee | 7102a81 | 2019-02-10 20:41:00 -0800 | [diff] [blame] | 72 | port: 22 |
| 73 | nodePort: 30022 |
| 74 | |
Pingping Lin | ccf0f94 | 2019-02-13 10:10:35 -0800 | [diff] [blame] | 75 | progranPort9876ServiceType: NodePort |
| 76 | port9876: |
Doyoung Lee | 7102a81 | 2019-02-10 20:41:00 -0800 | [diff] [blame] | 77 | port: 9876 |
| 78 | nodePort: 30876 |
| 79 | |
Pingping Lin | ccf0f94 | 2019-02-13 10:10:35 -0800 | [diff] [blame] | 80 | progranPort4010ServiceType: NodePort |
| 81 | port4010: |
Doyoung Lee | 7102a81 | 2019-02-10 20:41:00 -0800 | [diff] [blame] | 82 | port: 4010 |
Pingping Lin | 2bb5c14 | 2019-02-13 16:33:17 -0800 | [diff] [blame] | 83 | nodePort: 30410 |
Doyoung Lee | 7102a81 | 2019-02-10 20:41:00 -0800 | [diff] [blame] | 84 | |
| 85 | ovsdbServiceType: ClusterIP |
| 86 | ovsdb: |
| 87 | port: 6640 |
| 88 | |
| 89 | cluster: |
| 90 | port: 9876 |
| 91 | |
| 92 | onos_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 | |
| 104 | resources: {} |
| 105 | |
| 106 | nodeSelector: {} |
| 107 | |
| 108 | tolerations: [] |
| 109 | |
| 110 | affinity: {} |
| 111 | |
| 112 | application_logs: '' |
| 113 | |