blob: cb8ac5580355fbd446f86342224d66bb3a25e673 [file] [log] [blame]
Harish Venkata Kajurcd0d6982019-02-12 23:56:51 -05001# 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 readinessRepository: oomk8s
Mahendra Raghuwanshid06d7822019-03-15 06:42:07 +000021 readinessImage: readiness-check:2.0.2
Harish Venkata Kajurcd0d6982019-02-12 23:56:51 -050022
23# application image
24repository: nexus3.onap.org:10001
25image: onap/aai-schema-service:1.0-STAGING-latest
26pullPolicy: Always
27restartPolicy: Always
28flavor: small
29# default number of instances
30replicaCount: 1
31
32nodeSelector: {}
33
34affinity: {}
35
36# probe configuration parameters
37liveness:
38 initialDelaySeconds: 60
39 periodSeconds: 60
40 # necessary to disable liveness probe when setting breakpoints
41 # in debugger so K8s doesn't restart unresponsive container
42 enabled: false
43
44readiness:
45 initialDelaySeconds: 60
46 periodSeconds: 10
47
48service:
49 type: ClusterIP
50 portName: aai-schema-service-8452
51 internalPort: 8452
52 portName2: aai-schema-service-5005
53 internalPort2: 5005
54
55ingress:
56 enabled: false
57
58 # We usually recommend not to specify default resources and to leave this as a conscious
59 # choice for the user. This also increases chances charts run on environments with little
60 # resources, such as Minikube. If you do want to specify resources, uncomment the following
61 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
62 #
63 # Example:
64 # Configure resource requests and limits
65 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
66 # Minimum memory for development is 2 CPU cores and 4GB memory
67 # Minimum memory for production is 4 CPU cores and 8GB memory
68#resources:
69# limits:
70# cpu: 2
71# memory: 4Gi
72# requests:
73# cpu: 2
74# memory: 4Gi
75resources:
76 small:
77 limits:
78 cpu: 2
79 memory: 4Gi
80 requests:
81 cpu: 1
82 memory: 3Gi
83 large:
84 limits:
85 cpu: 4
86 memory: 8Gi
87 requests:
88 cpu: 2
89 memory: 4Gi
90 unlimited: {}