b8b120c0d361b98f3d5370bc8e1926e474008174
[oom.git] / kubernetes / so / values.yaml
1 # 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
15 # Default values for so.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24
25 subChartsOnly:
26   enabled: true
27
28 # application image
29 repository: nexus3.onap.org:10001
30 image: openecomp/mso:1.2.1
31 pullPolicy: Always
32   
33 # flag to enable debugging - application support required
34 debugEnabled: false
35
36 # application configuration
37 config:
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"
46   logstashServiceName: log-ls
47   logstashPort: 5044
48   sniro:
49     serviceName: sniro-emulator
50     port: 80
51   aai:
52     serviceName: aai
53     port: 8443
54   messagerouter:
55     serviceName: message-router
56     port: 3904
57   msb:
58     serviceName: msb-iag
59     port: 80
60   oof:
61     serviceName: oof-has-api
62     port: 8091
63   sdnc:
64     serviceName: sdnc
65     port: 8282
66   sdc:
67     serviceName: sdc-be
68     port: 8443
69
70 # subchart configuration
71 mariadb:
72   nameOverride: so-db
73
74 # default number of instances
75 replicaCount: 1
76
77 nodeSelector: {}
78
79 affinity: {}
80
81 # probe configuration parameters
82 liveness:
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
89 readiness:
90   initialDelaySeconds: 10
91   periodSeconds: 10
92
93 service:
94   type: NodePort
95   name: so
96   portName: so
97   internalPort: 8080
98   nodePort: 23
99   internalPort2: 3904
100   nodePort2: 25
101   internalPort3: 3905
102   nodePort3: 24
103   internalPort4: 9990
104   nodePort4: 22
105   internalPort5: 8787
106   nodePort5: 50
107
108 ingress:
109   enabled: false
110
111 resources: {}
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