blob: e7c75036f144143e16044648589429c8042a5f71 [file] [log] [blame]
kj9bf27312018-03-19 15:07:44 +02001# Default values for resources.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
kj9bf27312018-03-19 15:07:44 +02006 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +00007 readinessImage: readiness-check:2.0.0
kj9bf27312018-03-19 15:07:44 +02008
9
10# application image
11repository: nexus3.onap.org:10001
vagrant1a3a3552018-03-10 23:56:32 +000012image: onap/aai-resources:1.2-STAGING-latest
kj9bf27312018-03-19 15:07:44 +020013pullPolicy: Always
14restartPolicy: Always
15
kj9bf27312018-03-19 15:07:44 +020016# default number of instances
17replicaCount: 1
18
vagrant1a3a3552018-03-10 23:56:32 +000019# Configuration for the resources deployment
20config:
21 userId: 1000
22 groupId: 1000
23
kj9bf27312018-03-19 15:07:44 +020024nodeSelector: {}
25
26affinity: {}
27
28# probe configuration parameters
29liveness:
30 initialDelaySeconds: 60
31 periodSeconds: 60
32 # necessary to disable liveness probe when setting breakpoints
33 # in debugger so K8s doesn't restart unresponsive container
34 enabled: false
35
36readiness:
37 initialDelaySeconds: 60
38 periodSeconds: 10
39
40
41service:
42 type: ClusterIP
43 name: aai-resources
44 internalPort: 8447
45 internalPort2: 5005
46
47
48ingress:
49 enabled: false
50
51resources: {}
52 # We usually recommend not to specify default resources and to leave this as a conscious
53 # choice for the user. This also increases chances charts run on environments with little
54 # resources, such as Minikube. If you do want to specify resources, uncomment the following
55 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
56 #
57 # Example:
58 # Configure resource requests and limits
59 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
60 # Minimum memory for development is 2 CPU cores and 4GB memory
61 # Minimum memory for production is 4 CPU cores and 8GB memory
62#resources:
63# limits:
64# cpu: 2
65# memory: 4Gi
66# requests:
67# cpu: 2
68# memory: 4Gi