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