blob: 1527f39919c2e72f697cf986dbc02a8b6426d1c5 [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
Mandeep Khinda561a91c2018-08-23 14:08:52 +000021 readinessImage: readiness-check:2.0.1
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
Sonsino, Ofir (os0695)79a18962018-11-05 13:37:56 +020030image: onap/vid:3.2.0
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
39 asdcclientrestauth: "Basic dmlkOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU="
40 asdcclientrestport: "8080"
41 vidaaiport: "8443"
Sonsino, Ofir (os0695)c9a6edf2018-10-18 11:26:03 +030042 onapport: "30225"
43 onapportrest: "8443"
44 portalhost: "portal.api.simpledemo.onap.org"
Alexis de Talhouët6c9efc62018-09-20 11:54:03 -040045 msoport: "8080"
Priyanka5fdca022018-03-13 12:53:06 +000046 vidmsopass: OBF:1ih71i271vny1yf41ymf1ylz1yf21vn41hzj1icz
47 msodme2serverurl: http://localhost:8081
48 vidcontactuslink: https://todo_contact_us_link.com
Sonsino, Ofir (os0695)2dda01d2018-05-30 18:41:14 +030049 vidmysqlhost: vid-galera
Priyanka5fdca022018-03-13 12:53:06 +000050 vidmysqlport: "3306"
51 vidmysqldbname: vid_openecomp_epsdk
52 vidmysqluser: vidadmin
53 vidmysqlmaxconnections: "5"
BorislavG5f3b6192018-03-25 18:12:38 +030054 logstashServiceName: log-ls
55 logstashPort: 5044
Sonsino, Ofir (os0695)c9a6edf2018-10-18 11:26:03 +030056 roleaccesscentralized: remote
Priyanka5fdca022018-03-13 12:53:06 +000057
Priyanka5fdca022018-03-13 12:53:06 +000058# subchart configuration
Mandeep Khinda561a91c2018-08-23 14:08:52 +000059vid_mariadb_galera:
60# nameOverride: vid-mariadb-galera
61 replicaCount: 1
Priyanka5fdca022018-03-13 12:53:06 +000062
63# default number of instances
64replicaCount: 1
65
66nodeSelector: {}
67
68affinity: {}
69
70# probe configuration parameters
71liveness:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +000072 initialDelaySeconds: 120
Priyanka5fdca022018-03-13 12:53:06 +000073 periodSeconds: 10
74 # necessary to disable liveness probe when setting breakpoints
75 # in debugger so K8s doesn't restart unresponsive container
76 enabled: true
77
78readiness:
79 initialDelaySeconds: 10
80 periodSeconds: 10
81
82service:
83 type: NodePort
84 name: vid
BorislavG1ffbd992018-04-24 07:56:27 +000085 portName: vid
Piotr Daroszd9dc2192018-09-10 10:40:26 +020086 externalPort: 8443
Piotr Daroszaca7aa52018-08-29 14:27:02 +020087 internalPort: 8443
Piotr Daroszd9dc2192018-09-10 10:40:26 +020088 nodePort: "00"
89 portName2: vid-http
90 externalPort2: 8080
91 internalPort2: 8080
92 nodePort2: "38"
Priyanka5fdca022018-03-13 12:53:06 +000093
94ingress:
95 enabled: false
96
Mandeep Khinda60d36d42018-09-24 15:15:48 +000097# Resource Limit flavor -By Default using small
vaibhavjayasafb925d2018-09-19 09:33:41 +000098flavor: small
99# Segregation for Different environment (Small and Large)
100resources:
101 small:
102 limits:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000103 cpu: 200m
vaibhavjayasafb925d2018-09-19 09:33:41 +0000104 memory: 2Gi
105 requests:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000106 cpu: 100m
Mandeep Khinda3c134252018-09-19 23:56:37 +0000107 memory: 1Gi
vaibhavjayasafb925d2018-09-19 09:33:41 +0000108 large:
109 limits:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000110 cpu: 400m
vaibhavjayasafb925d2018-09-19 09:33:41 +0000111 memory: 4Gi
112 requests:
Mandeep Khindacef0e3c2018-09-21 03:59:17 +0000113 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000114 memory: 2Gi
115 unlimited: {}