Merge "Update Keystore cert"
[oom.git] / kubernetes / aai / charts / aai-schema-service / values.yaml
1 # 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.
18 global: # global defaults
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.2
22
23 # application image
24 repository: nexus3.onap.org:10001
25 image: onap/aai-schema-service:1.0-STAGING-latest
26 pullPolicy: Always
27 restartPolicy: Always
28 flavor: small
29 # default number of instances
30 replicaCount: 1
31
32 nodeSelector: {}
33
34 affinity: {}
35
36 # probe configuration parameters
37 liveness:
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
44 readiness:
45   initialDelaySeconds: 60
46   periodSeconds: 10
47
48 service:
49   type: ClusterIP
50   portName: aai-schema-service-8452
51   internalPort: 8452
52   portName2: aai-schema-service-5005
53   internalPort2: 5005
54
55 ingress:
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
75 resources:
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: {}