blob: 51fc65a40886e4e51071f222fafe433adf5d2497 [file] [log] [blame]
kj6a8ce802018-03-19 15:07:44 +02001# Default values for data-router.
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
7
8# application image
9repository: nexus3.onap.org:10001
Jimmy Forsyth60677452018-05-30 17:40:40 -040010image: onap/data-router:1.2.2
kj6a8ce802018-03-19 15:07:44 +020011pullPolicy: Always
12restartPolicy: Always
13
Mandeep Khindafe2fee12018-04-09 21:09:51 +000014dockerhubRepository: registry.hub.docker.com
15ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
16
kj6a8ce802018-03-19 15:07:44 +020017# application configuration
18config:
19 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
20 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
kj6a8ce802018-03-19 15:07:44 +020021
22
23# default number of instances
24replicaCount: 1
25
26nodeSelector: {}
27
28affinity: {}
29
30# probe configuration parameters
31liveness:
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
38readiness:
39 initialDelaySeconds: 10
40 periodSeconds: 10
41
42service:
43 name: aai-data-router
44 internalPort: 9502
45
46ingress:
47 enabled: false
48
49persistence:
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
71resources: {}
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