blob: aed767c9e20b990328da4d8644232c5780ec191a [file] [log] [blame]
Michael O'Brien294fade2019-05-13 14:46:18 -04001# Copyright © 2018 Amdocs, Bell Canada, AT&T
Jennie Jia20bb5cd2018-08-16 15:50:33 +00002#
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
22global:
23 nodePortPrefix: 302
24 persistence: {}
Sylvain Desbureaux29611a92019-11-05 11:57:01 +010025
Jennie Jia20bb5cd2018-08-16 15:50:33 +000026# application image
Michael O'Brien294fade2019-05-13 14:46:18 -040027image: onap/data-router:1.3.3
Jennie Jia20bb5cd2018-08-16 15:50:33 +000028pullPolicy: Always
29restartPolicy: Always
30
31# BusyBox image
Sylvain Desbureaux23a38b32020-11-20 08:57:12 +010032busyboxRepository: docker.io
Jennie Jia20bb5cd2018-08-16 15:50:33 +000033busyboxImage: library/busybox:latest
34
35
36# application configuration
37config:
38 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
39 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
40
41
42# default number of instances
43replicaCount: 1
44
45nodeSelector: {}
46
47affinity: {}
48
49# probe configuration parameters
50liveness:
Leigh, Phillip (pl876u)72c4aa02019-01-10 16:52:06 -050051 initialDelaySeconds: 60
52 periodSeconds: 30
Jennie Jia20bb5cd2018-08-16 15:50:33 +000053 # necessary to disable liveness probe when setting breakpoints
54 # in debugger so K8s doesn't restart unresponsive container
55 enabled: true
56
57readiness:
Leigh, Phillip (pl876u)72c4aa02019-01-10 16:52:06 -050058 initialDelaySeconds: 60
59 periodSeconds: 30
Jennie Jia20bb5cd2018-08-16 15:50:33 +000060
61service:
62 name: pomba-data-router
63 type: NodePort
64 externalPort: 9502
65 internalPort: 9502
66 nodePort: 49
67
68ingress:
69 enabled: false
Lucjan Bryndzaa7637732019-11-28 11:58:16 +010070 service:
71 - baseaddr: "pombadatarouter"
72 name: "pomba-data-router"
73 port: 9502
74 config:
75 ssl: "none"
Jennie Jia20bb5cd2018-08-16 15:50:33 +000076
77persistence:
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: "-"
Sylvain Desbureaux29611a92019-11-05 11:57:01 +010094 accessMode: ReadWriteOnce
Jennie Jia20bb5cd2018-08-16 15:50:33 +000095 size: 2Gi
96 mountPath: /dockerdata-nfs
97 mountSubPath: pomba/data-router/logs
98
jmacaf645b52018-10-11 12:21:54 +000099# Resource Limit flavor -By Default using small
100flavor: small
101# Segregation for Different environment (Small and Large)
102resources:
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: {}