Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / esr / components / esr-server / 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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20
21 subChartsOnly:
22   enabled: true
23
24 # application image
25 image: onap/aai/esr-server:1.5.2
26 pullPolicy: Always
27 msbaddr: msb-iag.{{ include "common.namespace" . }}:443
28
29 # application configuration
30 config:
31   logstashServiceName: log-ls
32   logstashPort: 5044
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 10
44   periodSeconds: 10
45   # necessary to disable liveness probe when setting breakpoints
46   # in debugger so K8s doesn't restart unresponsive container
47   enabled: true
48
49 readiness:
50   initialDelaySeconds: 10
51   periodSeconds: 10
52
53 service:
54   type: ClusterIP
55   name: esr-server
56   portName: esr-server
57   externalPort: 9518
58   internalPort: 9518
59
60 ingress:
61   enabled: false
62
63 log:
64   componentName: esr
65   subcomponentName: esr-server
66   debug: true
67   scan:
68     enabled: false
69   logDir: /var/log/onap
70   queueSize: 256
71   root:
72     level: INFO
73
74 resources: {}
75   # We usually recommend not to specify default resources and to leave this as a conscious
76   # choice for the user. This also increases chances charts run on environments with little
77   # resources, such as Minikube. If you do want to specify resources, uncomment the following
78   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
79   #
80   # Example:
81   # Configure resource requests and limits
82   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
83   # Minimum memory for development is 2 CPU cores and 4GB memory
84   # Minimum memory for production is 4 CPU cores and 8GB memory
85 #resources:
86 #  limits:
87 #    cpu: 2
88 #    memory: 4Gi
89 #  requests:
90 #    cpu: 2
91 #    memory: 4Gi