Merge "Add chart for redis cluster"
[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:v1.1.0
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   gerritBranch: master
23   gerritProject: http://gerrit.onap.org/r/aai/test-config
24
25
26 # default number of instances
27 replicaCount: 1
28
29 nodeSelector: {}
30
31 affinity: {}
32
33 # probe configuration parameters
34 liveness:
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
41 readiness:
42   initialDelaySeconds: 10
43   periodSeconds: 10
44
45 service:
46   name: aai-data-router
47   internalPort: 9502
48
49 ingress:
50   enabled: false
51
52 persistence:
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
74 resources: {}
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