Added properties to so vnfm adapter
[oom.git] / kubernetes / multicloud / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23   prometheus:
24     enabled: false
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/multicloud/framework:1.2.2
32 pullPolicy: Always
33
34 #Istio sidecar injection policy
35 istioSidecar: true
36
37 # application configuration
38 config:
39   msbgateway: msb-iag
40   msbPort: 80
41   logstashServiceName: log-ls
42   logstashPort: 5044
43   aai:
44     port: 8443
45     schemaVersion: v13
46     username: AAI
47     password: AAI
48
49 # default number of instances
50 replicaCount: 1
51
52 nodeSelector: {}
53
54 affinity: {}
55
56 # probe configuration parameters
57 liveness:
58   initialDelaySeconds: 30
59   periodSeconds: 10
60   timeoutSeconds: 10
61   successThreshold: 1
62   failureThreshold: 5
63   enabled: true
64
65 service:
66   type: NodePort
67   name: multicloud
68   portName: multicloud-framework
69   externalPort: 9001
70   internalPort: 9001
71   nodePort: 91
72
73 ingress:
74   enabled: false
75
76 # Resource Limit flavor -By Default using small
77 flavor: small
78 # Segregation for Different environment (Small and Large)
79 resources:
80   small:
81     limits:
82       cpu: 1
83       memory: 4Gi
84     requests:
85       cpu: 10m
86       memory: 1Gi
87   large:
88     limits:
89       cpu: 2
90       memory: 8Gi
91     requests:
92       cpu: 20m
93       memory: 2Gi
94   unlimited: {}