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