blob: 7c29fd46f4c1009f655468510c63f882b2c2e175 [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001# Copyright © 2018 Amdocs, Bell Canada, AT&T
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 resources.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18global: # global defaults
19 nodePortPrefix: 302
20
21# application image
22repository: nexus3.onap.org:10001
23image: onap/aai-schema-service:1.7.13
24pullPolicy: Always
25restartPolicy: Always
26flavorOverride: small
27# default number of instances
28replicaCount: 1
29
30nodeSelector: {}
31
32affinity: {}
33
34# probe configuration parameters
35liveness:
36 initialDelaySeconds: 60
37 periodSeconds: 60
38 # necessary to disable liveness probe when setting breakpoints
39 # in debugger so K8s doesn't restart unresponsive container
40 enabled: false
41
42readiness:
43 initialDelaySeconds: 60
44 periodSeconds: 10
45
46service:
47 type: ClusterIP
48 portName: aai-schema-service-8452
49 internalPort: 8452
50 portName2: aai-schema-service-5005
51 internalPort2: 5005
52
53ingress:
54 enabled: false
55
56 # We usually recommend not to specify default resources and to leave this as a conscious
57 # choice for the user. This also increases chances charts run on environments with little
58 # resources, such as Minikube. If you do want to specify resources, uncomment the following
59 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
60 #
61 # Example:
62 # Configure resource requests and limits
63 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
64 # Minimum memory for development is 2 CPU cores and 4GB memory
65 # Minimum memory for production is 4 CPU cores and 8GB memory
66#resources:
67# limits:
68# cpu: 2
69# memory: 4Gi
70# requests:
71# cpu: 2
72# memory: 4Gi
73resources:
74 small:
75 limits:
76 cpu: 2
77 memory: 4Gi
78 requests:
79 cpu: 1
80 memory: 3Gi
81 large:
82 limits:
83 cpu: 4
84 memory: 8Gi
85 requests:
86 cpu: 2
87 memory: 4Gi
88 unlimited: {}