Update VID in values.yaml to 4.0-STAGING
[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.1
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:4.0-STAGING-latest
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   asdcclientrestauth: "Basic dmlkOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU="
40   asdcclientrestport: "8080"
41   vidaaiport: "8443"
42   onapport: "30225"
43   onapportrest: "8443"
44   portalhost: "portal.api.simpledemo.onap.org"
45   msoport: "8080"
46   vidmsopass: OBF:1ih71i271vny1yf41ymf1ylz1yf21vn41hzj1icz
47   msodme2serverurl: http://localhost:8081
48   vidcontactuslink: https://todo_contact_us_link.com
49   vidmysqlhost: vid-galera
50   vidmysqlport: "3306"
51   vidmysqldbname: vid_openecomp_epsdk
52   vidmysqluser: vidadmin
53   vidmysqlmaxconnections: "5"
54   logstashServiceName: log-ls
55   logstashPort: 5044
56   roleaccesscentralized: remote
57
58 # subchart configuration
59 vid_mariadb_galera:
60 #  nameOverride: vid-mariadb-galera
61   replicaCount: 1
62
63 # default number of instances
64 replicaCount: 1
65
66 nodeSelector: {}
67
68 affinity: {}
69
70 # probe configuration parameters
71 liveness:
72   initialDelaySeconds: 120
73   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
78 readiness:
79   initialDelaySeconds: 10
80   periodSeconds: 10
81
82 service:
83   type: NodePort
84   name: vid
85   portName: vid
86   externalPort: 8443
87   internalPort: 8443
88   nodePort: "00"
89   portName2: vid-http
90   externalPort2: 8080
91   internalPort2: 8080
92   nodePort2: "38"
93
94 ingress:
95   enabled: false
96
97 # Resource Limit flavor -By Default using small
98 flavor: small
99 # Segregation for Different environment (Small and Large)
100 resources:
101   small:
102     limits:
103       cpu: 200m
104       memory: 2Gi
105     requests:
106       cpu: 100m
107       memory: 1Gi
108   large:
109     limits:
110       cpu: 400m
111       memory: 4Gi
112     requests:
113       cpu: 200m
114       memory: 2Gi
115   unlimited: {}