Merge "make sdnctl user db password configurable for SDNC"
[oom.git] / kubernetes / aai / charts / aai-traversal / values.yaml
1 # Default values for traversal.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4 global: # global defaults
5   nodePortPrefix: 302
6   readinessRepository: oomk8s
7   readinessImage: readiness-check:2.0.0
8
9
10 # application image
11 repository: nexus3.onap.org:10001
12 image: onap/aai-traversal:1.2.2
13 pullPolicy: Always
14 restartPolicy: Always
15
16 # application configuration
17 config:
18   aaicoreversion: 1.1.0-SNAPSHOT
19   userId: 1000
20   groupId: 1000
21   disableUpdateQuery: true
22
23 persistence:
24   mountPath: /dockerdata-nfs
25   mountSubPath: aai/aai-traversal
26
27 # default number of instances
28 replicaCount: 1
29
30 nodeSelector: {}
31
32 affinity: {}
33
34 # probe configuration parameters
35 liveness:
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
42 readiness:
43   initialDelaySeconds: 10
44   periodSeconds: 10
45
46 service:
47   type: ClusterIP
48   portName: aai-traversal-8446
49   internalPort: 8446
50   portName2: aai-traversal-5005
51   internalPort2: 5005
52
53 ingress:
54   enabled: false
55
56 resources: {}
57   # We usually recommend not to specify default resources and to leave this as a conscious
58   # choice for the user. This also increases chances charts run on environments with little
59   # resources, such as Minikube. If you do want to specify resources, uncomment the following
60   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
61   #
62   # Example:
63   # Configure resource requests and limits
64   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
65   # Minimum memory for development is 2 CPU cores and 4GB memory
66   # Minimum memory for production is 4 CPU cores and 8GB memory
67 #resources:
68 #  limits:
69 #    cpu: 2
70 #    memory: 4Gi
71 #  requests:
72 #    cpu: 2
73 #    memory: 4Gi