blob: f6800f1e520c82e5ba2220f3cf332ab5aa24eafe [file] [log] [blame]
kj6a8ce802018-03-19 15:07:44 +02001# Default values for traversal.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
kj6a8ce802018-03-19 15:07:44 +02006 readinessRepository: oomk8s
BorislavGf2b49662018-04-15 11:55:39 +00007 readinessImage: readiness-check:2.0.0
kj6a8ce802018-03-19 15:07:44 +02008
9
10# application image
11repository: nexus3.onap.org:10001
vagrant62ddc7d2018-03-10 23:56:32 +000012image: onap/aai-traversal:1.2-STAGING-latest
kj6a8ce802018-03-19 15:07:44 +020013pullPolicy: Always
14restartPolicy: Always
15
16# application configuration
17config:
18 aaicoreversion: 1.1.0-SNAPSHOT
vagrant62ddc7d2018-03-10 23:56:32 +000019 userId: 1000
20 groupId: 1000
21 disableUpdateQuery: true
kj6a8ce802018-03-19 15:07:44 +020022
vagrant62ddc7d2018-03-10 23:56:32 +000023persistence:
24 mountPath: /dockerdata-nfs
25 mountSubPath: aai/aai-traversal
kj6a8ce802018-03-19 15:07:44 +020026
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: 10
44 periodSeconds: 10
45
46service:
47 type: ClusterIP
48 name: aai-traversal
49 internalPort: 8446
50 internalPort2: 5005
51
52ingress:
53 enabled: false
54
55resources: {}
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