blob: b8b120c0d361b98f3d5370bc8e1926e474008174 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
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
Mike Elliottd32d36e2018-02-12 15:54:03 -050015# Default values for so.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18global: # global defaults
19 nodePortPrefix: 302
Mike Elliottd32d36e2018-02-12 15:54:03 -050020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mike Elliottd32d36e2018-02-12 15:54:03 -050022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000025subChartsOnly:
26 enabled: true
Mike Elliottd32d36e2018-02-12 15:54:03 -050027
28# application image
29repository: nexus3.onap.org:10001
Gary Wudd568582018-05-08 07:21:20 -070030image: openecomp/mso:1.2.1
Mike Elliottd32d36e2018-02-12 15:54:03 -050031pullPolicy: Always
32
33# flag to enable debugging - application support required
34debugEnabled: false
35
36# application configuration
37config:
38 # message router configuration
39 dmaapTopic: "AUTO"
40 # openstack configuration
41 openStackUserName: "vnf_user"
42 openStackRegion: "RegionOne"
43 openStackKeyStoneUrl: "http://1.2.3.4:5000"
44 openStackServiceTenantName: "service"
45 openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
BorislavG5f3b6192018-03-25 18:12:38 +030046 logstashServiceName: log-ls
47 logstashPort: 5044
BorislavGcaf4a502018-04-17 14:24:11 +000048 sniro:
49 serviceName: sniro-emulator
50 port: 80
51 aai:
52 serviceName: aai
Mike Elliott2499fcc2018-05-07 11:55:15 -040053 port: 8443
54 messagerouter:
55 serviceName: message-router
56 port: 3904
BorislavGcaf4a502018-04-17 14:24:11 +000057 msb:
58 serviceName: msb-iag
59 port: 80
Mike Elliott2499fcc2018-05-07 11:55:15 -040060 oof:
61 serviceName: oof-has-api
62 port: 8091
BorislavGcaf4a502018-04-17 14:24:11 +000063 sdnc:
64 serviceName: sdnc
65 port: 8282
66 sdc:
67 serviceName: sdc-be
68 port: 8443
Mike Elliottd32d36e2018-02-12 15:54:03 -050069
Mike Elliott282751f2018-04-19 17:24:08 -040070# subchart configuration
71mariadb:
72 nameOverride: so-db
73
Mike Elliottd32d36e2018-02-12 15:54:03 -050074# default number of instances
75replicaCount: 1
76
77nodeSelector: {}
78
79affinity: {}
80
81# probe configuration parameters
82liveness:
83 initialDelaySeconds: 10
84 periodSeconds: 10
85 # necessary to disable liveness probe when setting breakpoints
86 # in debugger so K8s doesn't restart unresponsive container
87 enabled: true
88
89readiness:
90 initialDelaySeconds: 10
91 periodSeconds: 10
92
93service:
94 type: NodePort
95 name: so
Mike Elliott282751f2018-04-19 17:24:08 -040096 portName: so
Mike Elliottd32d36e2018-02-12 15:54:03 -050097 internalPort: 8080
Mike Elliott282751f2018-04-19 17:24:08 -040098 nodePort: 23
Mike Elliottd32d36e2018-02-12 15:54:03 -050099 internalPort2: 3904
Mike Elliott282751f2018-04-19 17:24:08 -0400100 nodePort2: 25
Mike Elliottd32d36e2018-02-12 15:54:03 -0500101 internalPort3: 3905
Mike Elliott282751f2018-04-19 17:24:08 -0400102 nodePort3: 24
Mike Elliottd32d36e2018-02-12 15:54:03 -0500103 internalPort4: 9990
Mike Elliott282751f2018-04-19 17:24:08 -0400104 nodePort4: 22
Mike Elliottd32d36e2018-02-12 15:54:03 -0500105 internalPort5: 8787
Mike Elliott282751f2018-04-19 17:24:08 -0400106 nodePort5: 50
Mike Elliottd32d36e2018-02-12 15:54:03 -0500107
108ingress:
109 enabled: false
110
111resources: {}
112 # We usually recommend not to specify default resources and to leave this as a conscious
113 # choice for the user. This also increases chances charts run on environments with little
114 # resources, such as Minikube. If you do want to specify resources, uncomment the following
115 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
116 #
117 # Example:
118 # Configure resource requests and limits
119 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
120 # Minimum memory for development is 2 CPU cores and 4GB memory
121 # Minimum memory for production is 4 CPU cores and 8GB memory
122#resources:
123# limits:
124# cpu: 2
125# memory: 4Gi
126# requests:
127# cpu: 2
128# memory: 4Gi