Revert "basic auth for so-monitoring"
[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: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   vidmysqlhost: vid-galera
51   vidmysqlport: "3306"
52   vidmysqldbname: vid_openecomp_epsdk
53   vidmysqluser: vidadmin
54   vidmysqlmaxconnections: "5"
55   logstashServiceName: log-ls
56   logstashPort: 5044
57   roleaccesscentralized: remote
58
59 # subchart configuration
60 vid_mariadb_galera:
61 #  nameOverride: vid-mariadb-galera
62   replicaCount: 1
63
64 # default number of instances
65 replicaCount: 1
66
67 nodeSelector: {}
68
69 affinity: {}
70
71 # probe configuration parameters
72 liveness:
73   initialDelaySeconds: 120
74   periodSeconds: 10
75   # necessary to disable liveness probe when setting breakpoints
76   # in debugger so K8s doesn't restart unresponsive container
77   enabled: true
78
79 readiness:
80   initialDelaySeconds: 10
81   periodSeconds: 10
82
83 service:
84   type: NodePort
85   name: vid
86   portName: vid
87   externalPort: 8443
88   internalPort: 8443
89   nodePort: "00"
90   externalHttpPort: 8080
91   internalHttpPort: 8080
92
93 ingress:
94   enabled: false
95
96 # Resource Limit flavor -By Default using small
97 flavor: small
98 # Segregation for Different environment (Small and Large)
99 resources:
100   small:
101     limits:
102       cpu: 200m
103       memory: 2Gi
104     requests:
105       cpu: 100m
106       memory: 1Gi
107   large:
108     limits:
109       cpu: 400m
110       memory: 4Gi
111     requests:
112       cpu: 200m
113       memory: 2Gi
114   unlimited: {}