Merge "[AAI] Add model-loader tracing config"
[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   artifactImage: onap/multicloud/framework-artifactbroker:1.9.0
22   prometheus:
23     enabled: false
24   persistence: {}
25   centralizedLoggingEnabled: true
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 image: onap/multicloud/framework:1.8.1
32 pullPolicy: Always
33
34 #Istio sidecar injection policy
35 istioSidecar: true
36
37 multicloud-fcaps:
38   enabled: true
39   logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
40 multicloud-k8s:
41   enabled: true
42 multicloud-pike:
43   enabled: true
44   logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
45 multicloud-prometheus:
46   enabled: false
47 multicloud-starlingx:
48   enabled: false
49   logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
50 multicloud-vio:
51   enabled: false
52   logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
53 multicloud-windriver:
54   enabled: false
55   logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
56
57 # application configuration
58 config:
59   msbgateway: msb-iag
60   logstashServiceName: log-ls
61   logstashPort: 5044
62   msbPort: 80
63   aai:
64     aaiPort: 80
65     schemaVersion: v13
66     username: AAI
67     password: AAI
68
69 # default number of instances
70 replicaCount: 1
71
72 nodeSelector: {}
73
74 affinity: {}
75
76 # probe configuration parameters
77 liveness:
78   initialDelaySeconds: 30
79   periodSeconds: 10
80   timeoutSeconds: 10
81   successThreshold: 1
82   failureThreshold: 5
83   enabled: true
84
85 service:
86   type: NodePort
87   internalPort: 9001
88   ports:
89     - name: http
90       port: 9001
91       nodePort: '91'
92   annotations:
93     msb.onap.org/service-info: |
94       {{ if .Values.global.msbEnabled -}}[
95         {
96           "serviceName": "multicloud",
97           "version": "v0",
98           "url": "/api/multicloud/v0",
99           "protocol": "REST",
100           "port": "{{ .Values.service.internalPort }}",
101           "enable_ssl": false,
102           "visualRange": "1"
103         },
104         {
105           "serviceName": "multicloud",
106           "version": "v1",
107           "url": "/api/multicloud/v1",
108           "protocol": "REST",
109           "port": "{{ .Values.service.internalPort }}",
110           "enable_ssl": false,
111           "visualRange": "1"
112         }
113       ]{{ end }}
114
115 ingress:
116   enabled: false
117   service:
118     - baseaddr: 'multicloud-api'
119       name: 'multicloud'
120       port: 9001
121
122 # Resource Limit flavor -By Default using small
123 flavor: small
124 # Segregation for Different environment (Small and Large)
125 resources:
126   small:
127     limits:
128       cpu: "1"
129       memory: "4Gi"
130     requests:
131       cpu: "10m"
132       memory: "1Gi"
133   large:
134     limits:
135       cpu: "2"
136       memory: "8Gi"
137     requests:
138       cpu: "20m"
139       memory: "2Gi"
140   unlimited: {}
141
142 #Pods Service Account
143 serviceAccount:
144   nameOverride: multicloud
145   roles:
146     - read
147
148 #Log configuration
149 log:
150   path: /var/log/onap