blob: a3fb6862a69c18015ad248bd3729331c83cdad90 [file] [log] [blame]
Li Zi5cc26172018-08-31 02:01:53 +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
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Li Zi5cc26172018-08-31 02:01:53 +000020
21subChartsOnly:
22 enabled: true
23
24# application image
Forsyth, James (jf2512)b0db8102020-03-06 16:09:10 -050025image: onap/aai/esr-server:1.5.2
Li Zi5cc26172018-08-31 02:01:53 +000026pullPolicy: Always
HePeng2cfe89d2019-12-10 14:21:32 +080027msbaddr: msb-iag.{{ include "common.namespace" . }}:443
Li Zi5cc26172018-08-31 02:01:53 +000028
29# application configuration
30config:
31 logstashServiceName: log-ls
32 logstashPort: 5044
33
34# default number of instances
35replicaCount: 1
36
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
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
49readiness:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52
53service:
54 type: ClusterIP
55 name: esr-server
56 portName: esr-server
57 externalPort: 9518
58 internalPort: 9518
59
60ingress:
61 enabled: false
62
Dominik Mizynbc5ec3f2020-08-31 12:05:19 +020063log:
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
Li Zi5cc26172018-08-31 02:01:53 +000074resources: {}
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