Merge "VID: Update to version 6.0.1"
[oom.git] / kubernetes / vid / values.yaml
1 # 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
15 # Default values for vid.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.2
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24
25 subChartsOnly:
26   enabled: true
27
28 # application image
29 repository: nexus3.onap.org:10001
30 image: onap/vid:6.0.1
31 pullPolicy: Always
32
33 # mariadb image for initializing
34 mariadb_image: library/mariadb:10
35
36 # application configuration
37 config:
38   vidmysqlpassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
39   vidkeystorepassword: '\^7w\!f+aR\{EJcTRsDuA7x\,+c\!'
40   asdcclientrestauth: "Basic dmlkOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU="
41   asdcclientrestport: "8443"
42   vidaaiport: "8443"
43   onapport: "30225"
44   onapportrest: "8443"
45   portalhost: "portal.api.simpledemo.onap.org"
46   msoport: "8080"
47   vidmsopass: OBF:1ih71i271vny1yf41ymf1ylz1yf21vn41hzj1icz
48   msodme2serverurl: http://localhost:8081
49   vidcontactuslink: https://todo_contact_us_link.com
50   vidmysqlmaxconnections: "5"
51   logstashServiceName: log-ls
52   logstashPort: 5044
53   roleaccesscentralized: remote
54
55 mariadb-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: |-
71     [mysqld]
72     lower_case_table_names = 1
73
74 # default number of instances
75 replicaCount: 1
76
77 nodeSelector: {}
78
79 affinity: {}
80
81 # probe configuration parameters
82 liveness:
83   initialDelaySeconds: 120
84   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
89 readiness:
90   initialDelaySeconds: 10
91   periodSeconds: 10
92
93 service:
94   type: NodePort
95   name: vid
96   portName: vid
97   externalPort: 8443
98   internalPort: 8443
99   nodePort: "00"
100   externalHttpPort: 8080
101   internalHttpPort: 8080
102
103 ingress:
104   enabled: false
105   service:
106        - baseaddr: "vid"
107          name: "vid-http"
108          port: 8080
109   config:
110        ssl: "none"
111
112 # Resource Limit flavor -By Default using small
113 flavor: small
114 # Segregation for Different environment (Small and Large)
115 resources:
116   small:
117     limits:
118       cpu: 200m
119       memory: 2Gi
120     requests:
121       cpu: 100m
122       memory: 1Gi
123   large:
124     limits:
125       cpu: 400m
126       memory: 4Gi
127     requests:
128       cpu: 200m
129       memory: 2Gi
130   unlimited: {}