Merge "Add ingress configuration for vid"
[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:5.0.3
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     lower_case_table_names = 1
72
73 # default number of instances
74 replicaCount: 1
75
76 nodeSelector: {}
77
78 affinity: {}
79
80 # probe configuration parameters
81 liveness:
82   initialDelaySeconds: 120
83   periodSeconds: 10
84   # necessary to disable liveness probe when setting breakpoints
85   # in debugger so K8s doesn't restart unresponsive container
86   enabled: true
87
88 readiness:
89   initialDelaySeconds: 10
90   periodSeconds: 10
91
92 service:
93   type: NodePort
94   name: vid
95   portName: vid
96   externalPort: 8443
97   internalPort: 8443
98   nodePort: "00"
99   externalHttpPort: 8080
100   internalHttpPort: 8080
101
102 ingress:
103   enabled: false
104   service:
105        - baseaddr: "vid"
106          name: "vid-http"
107          port: 8080
108   config:
109        ssl: "none"
110
111 # Resource Limit flavor -By Default using small
112 flavor: small
113 # Segregation for Different environment (Small and Large)
114 resources:
115   small:
116     limits:
117       cpu: 200m
118       memory: 2Gi
119     requests:
120       cpu: 100m
121       memory: 1Gi
122   large:
123     limits:
124       cpu: 400m
125       memory: 4Gi
126     requests:
127       cpu: 200m
128       memory: 2Gi
129   unlimited: {}