Merge "Add Common Helm Chart "mariadb-galera""
[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   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7
8
9 # application image
10 repository: nexus3.onap.org:10001
11 image: onap/data-router:1.2-STAGING-latest
12 pullPolicy: Always
13 restartPolicy: Always
14
15 dockerhubRepository: registry.hub.docker.com
16 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
17
18 # application configuration
19 config:
20   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
21   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
22
23
24 # default number of instances
25 replicaCount: 1
26
27 nodeSelector: {}
28
29 affinity: {}
30
31 # probe configuration parameters
32 liveness:
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
39 readiness:
40   initialDelaySeconds: 10
41   periodSeconds: 10
42
43 service:
44   name: aai-data-router
45   internalPort: 9502
46
47 ingress:
48   enabled: false
49
50 persistence:
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
72 resources: {}
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