Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / pomba / components / pomba-data-router / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada, AT&T
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 # Default values for data-router.
17 # This is a YAML-formatted file.
18 # Declare variables to be passed into your templates.
19
20
21 # Global configuration defaults
22 global:
23   nodePortPrefix: 302
24   persistence: {}
25
26 # application image
27 image: onap/data-router:1.3.3
28 pullPolicy: Always
29 restartPolicy: Always
30
31 # BusyBox image
32 busyboxRepository: docker.io
33 busyboxImage: library/busybox:latest
34
35
36 # application configuration
37 config:
38   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
39   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
40
41
42 # default number of instances
43 replicaCount: 1
44
45 nodeSelector: {}
46
47 affinity: {}
48
49 # probe configuration parameters
50 liveness:
51   initialDelaySeconds: 60
52   periodSeconds: 30
53   # necessary to disable liveness probe when setting breakpoints
54   # in debugger so K8s doesn't restart unresponsive container
55   enabled: true
56
57 readiness:
58   initialDelaySeconds: 60
59   periodSeconds: 30
60
61 service:
62   name: pomba-data-router
63   type: NodePort
64   externalPort: 9502
65   internalPort: 9502
66   nodePort: 49
67
68 ingress:
69   enabled: false
70   service:
71     - baseaddr: "pombadatarouter"
72       name: "pomba-data-router"
73       port: 9502
74   config:
75     ssl: "none"
76
77 persistence:
78   enabled: true
79
80   ## A manually managed Persistent Volume and Claim
81   ## Requires persistence.enabled: true
82   ## If defined, PVC must be created manually before volume will be bound
83   # existingClaim:
84   volumeReclaimPolicy: Retain
85
86   ## database data Persistent Volume Storage Class
87   ## If defined, storageClassName: <storageClass>
88   ## If set to "-", storageClassName: "", which disables dynamic provisioning
89   ## If undefined (the default) or set to null, no storageClassName spec is
90   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
91   ##   GKE, AWS & OpenStack)
92   ##
93   ## storageClass: "-"
94   accessMode: ReadWriteOnce
95   size: 2Gi
96   mountPath: /dockerdata-nfs
97   mountSubPath: pomba/data-router/logs
98
99 # Resource Limit flavor -By Default using small
100 flavor: small
101 # Segregation for Different environment (Small and Large)
102 resources:
103   small:
104     limits:
105       cpu: 1
106       memory: 1400Mi
107     requests:
108       cpu: 100m
109       memory: 700Mi
110   large:
111     limits:
112       cpu: 2
113       memory: 2800Mi
114     requests:
115       cpu: 200m
116       memory: 1400Mi
117   unlimited: {}