blob: 805e337f5728c2da4c6f84f8b71a3c6f90214cbf [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
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
Priyanka5fdca022018-03-13 12:53:06 +000015# Default values for vid.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18global:
19 nodePortPrefix: 302
Priyanka5fdca022018-03-13 12:53:06 +000020 readinessRepository: oomk8s
Sylvain Desbureaux6383c442019-11-14 09:28:12 +010021 readinessImage: readiness-check:2.0.2
Priyanka5fdca022018-03-13 12:53:06 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25subChartsOnly:
26 enabled: true
27
28# application image
29repository: nexus3.onap.org:10001
Ittay Sterne4c52662020-01-27 13:27:48 +020030image: onap/vid:6.0.2
yurynd0707be2017-09-27 14:54:18 +030031pullPolicy: Always
Priyanka5fdca022018-03-13 12:53:06 +000032
Sonsino, Ofir (os0695)2dda01d2018-05-30 18:41:14 +030033# mariadb image for initializing
34mariadb_image: library/mariadb:10
Priyanka5fdca022018-03-13 12:53:06 +000035
36# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030037config:
Priyanka5fdca022018-03-13 12:53:06 +000038 vidmysqlpassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
Ittay Stern2c00e1a2019-10-03 17:18:48 +030039 vidkeystorepassword: '\^7w\!f+aR\{EJcTRsDuA7x\,+c\!'
Priyanka5fdca022018-03-13 12:53:06 +000040 asdcclientrestauth: "Basic dmlkOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU="
k.kedronc784bbd2019-09-05 18:28:16 +020041 asdcclientrestport: "8443"
Priyanka5fdca022018-03-13 12:53:06 +000042 vidaaiport: "8443"
Sonsino, Ofir (os0695)c9a6edf2018-10-18 11:26:03 +030043 onapport: "30225"
44 onapportrest: "8443"
45 portalhost: "portal.api.simpledemo.onap.org"
Alexis de Talhouët6c9efc62018-09-20 11:54:03 -040046 msoport: "8080"
Priyanka5fdca022018-03-13 12:53:06 +000047 vidmsopass: OBF:1ih71i271vny1yf41ymf1ylz1yf21vn41hzj1icz
48 msodme2serverurl: http://localhost:8081
49 vidcontactuslink: https://todo_contact_us_link.com
Priyanka5fdca022018-03-13 12:53:06 +000050 vidmysqlmaxconnections: "5"
BorislavG5f3b6192018-03-25 18:12:38 +030051 logstashServiceName: log-ls
52 logstashPort: 5044
Sonsino, Ofir (os0695)c9a6edf2018-10-18 11:26:03 +030053 roleaccesscentralized: remote
Priyanka5fdca022018-03-13 12:53:06 +000054
Sylvain Desbureaux6383c442019-11-14 09:28:12 +010055mariadb-galera:
56 config:
57 userName: vidadmin
58 userPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
59 mariadbRootPassword: kjgsdhjqhawxvnbpoiawsfgjsqhsgjhjhdqihhjqdvcbxkjchizpw
60 mysqlDatabase: vid_openecomp_epsdk
61 nameOverride: vid-galera
62 service:
63 name: vid-galera
64 portName: mysql-vid
65 internalPort: "3306"
66 replicaCount: 3
67 persistence:
68 enabled: true
69 mountSubPath: vid/maria/data
70 externalConfig: |-
Brian Freeman8a1d3142019-12-06 12:44:53 -050071 [mysqld]
Sylvain Desbureaux6383c442019-11-14 09:28:12 +010072 lower_case_table_names = 1
Priyanka5fdca022018-03-13 12:53:06 +000073
74# default number of instances
75replicaCount: 1
76
77nodeSelector: {}
78
79affinity: {}
80
81# probe configuration parameters
82liveness:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +000083 initialDelaySeconds: 120
Priyanka5fdca022018-03-13 12:53:06 +000084 periodSeconds: 10
85 # necessary to disable liveness probe when setting breakpoints
86 # in debugger so K8s doesn't restart unresponsive container
87 enabled: true
88
89readiness:
90 initialDelaySeconds: 10
91 periodSeconds: 10
92
93service:
94 type: NodePort
95 name: vid
BorislavG1ffbd992018-04-24 07:56:27 +000096 portName: vid
Piotr Daroszd9dc2192018-09-10 10:40:26 +020097 externalPort: 8443
Piotr Daroszaca7aa52018-08-29 14:27:02 +020098 internalPort: 8443
Piotr Daroszd9dc2192018-09-10 10:40:26 +020099 nodePort: "00"
Ittay Stern94094702019-08-04 14:00:22 +0300100 externalHttpPort: 8080
101 internalHttpPort: 8080
Priyanka5fdca022018-03-13 12:53:06 +0000102
103ingress:
104 enabled: false
Lucjan Bryndzaa9a362f2019-08-14 09:53:04 +0200105 service:
106 - baseaddr: "vid"
107 name: "vid-http"
108 port: 8080
109 config:
110 ssl: "none"
Priyanka5fdca022018-03-13 12:53:06 +0000111
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000112# Resource Limit flavor -By Default using small
vaibhavjayasafb925d2018-09-19 09:33:41 +0000113flavor: small
114# Segregation for Different environment (Small and Large)
115resources:
116 small:
117 limits:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000118 cpu: 200m
vaibhavjayasafb925d2018-09-19 09:33:41 +0000119 memory: 2Gi
120 requests:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000121 cpu: 100m
Mandeep Khinda3c134252018-09-19 23:56:37 +0000122 memory: 1Gi
vaibhavjayasafb925d2018-09-19 09:33:41 +0000123 large:
124 limits:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000125 cpu: 400m
vaibhavjayasafb925d2018-09-19 09:33:41 +0000126 memory: 4Gi
127 requests:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000128 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000129 memory: 2Gi
Ittay Stern91751272019-05-05 12:11:47 +0300130 unlimited: {}