Vid Template alignment.
[oom.git] / kubernetes / aai / charts / aai-data-router / values.yaml
1 # Default values for data-router.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4 global: # global defaults
5   nodePortPrefix: 302
6
7
8 # application image
9 repository: nexus3.onap.org:10001
10 image: onap/data-router:1.2.2
11 pullPolicy: Always
12 restartPolicy: Always
13
14 dockerhubRepository: registry.hub.docker.com
15 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
16
17 # application configuration
18 config:
19   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
20   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
21
22
23 # default number of instances
24 replicaCount: 1
25
26 nodeSelector: {}
27
28 affinity: {}
29
30 # probe configuration parameters
31 liveness:
32   initialDelaySeconds: 10
33   periodSeconds: 10
34   # necessary to disable liveness probe when setting breakpoints
35   # in debugger so K8s doesn't restart unresponsive container
36   enabled: true
37
38 readiness:
39   initialDelaySeconds: 10
40   periodSeconds: 10
41
42 service:
43   name: aai-data-router
44   internalPort: 9502
45
46 ingress:
47   enabled: false
48
49 persistence:
50   enabled: true
51
52   ## A manually managed Persistent Volume and Claim
53   ## Requires persistence.enabled: true
54   ## If defined, PVC must be created manually before volume will be bound
55   # existingClaim:
56   volumeReclaimPolicy: Retain
57
58   ## database data Persistent Volume Storage Class
59   ## If defined, storageClassName: <storageClass>
60   ## If set to "-", storageClassName: "", which disables dynamic provisioning
61   ## If undefined (the default) or set to null, no storageClassName spec is
62   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
63   ##   GKE, AWS & OpenStack)
64   ##
65   ## storageClass: "-"
66   accessMode: ReadWriteMany
67   size: 2Gi
68   mountPath: /dockerdata-nfs
69   mountSubPath: aai/data-router/logs
70
71 resources: {}
72   # We usually recommend not to specify default resources and to leave this as a conscious
73   # choice for the user. This also increases chances charts run on environments with little
74   # resources, such as Minikube. If you do want to specify resources, uncomment the following
75   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
76   #
77   # Example:
78   # Configure resource requests and limits
79   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
80   # Minimum memory for development is 2 CPU cores and 4GB memory
81   # Minimum memory for production is 4 CPU cores and 8GB memory
82 #resources:
83 #  limits:
84 #    cpu: 2
85 #    memory: 4Gi
86 #  requests:
87 #    cpu: 2
88 #    memory: 4Gi