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