[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / oof / components / oof-has / values.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware
2 # Modifications Copyright © 2018 Intel Corporation
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   commonConfigPrefix: onap-oof-has
21   image:
22     optf_has: onap/optf-has:2.2.1
23   persistence:
24     enabled: true
25
26 #################################################################
27 # Secrets metaconfig
28 #################################################################
29 secrets:
30   - uid: oof-onap-certs
31     name: &oof-certs  '{{ include "common.release" . }}-oof-onap-certs'
32     externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
33     type: generic
34     filePaths: '{{ .Values.secretsFilePaths }}'
35   - uid: oof-has-etcd-root-password
36     name: &root-password '{{ include "common.release" . }}-has-etcd-root-password'
37     type: password
38     password: '{{ .Values.config.etcd.rootPassword }}'
39     policy: generate
40   - uid: oof-has-etcd-secret
41     name: &user-creds '{{ include "common.release" . }}-oof-has-etcd-secret'
42     type: basicAuth
43     externalSecret: '{{ tpl (default "" .Values.config.etcd.userCredentialsExternalSecret) . }}'
44     login: '{{ .Values.config.etcd.appUser }}'
45     password: '{{ .Values.config.etcd.appPassword }}'
46     passwordPolicy: generate
47
48 pullPolicy: Always
49 nodePortPrefix: 302
50 dataRootDir: /dockerdata-nfs
51 config:
52   dbBackend: etcd
53   aaf:
54     serviceName: aaf-service
55     port: 8100
56   aai:
57     serviceName: aai
58     port: 8443
59   msb:
60     serviceName: msb-iag
61     port: 80
62   music:
63     serviceName: music
64     port: 8443
65   sms:
66     serviceName: aaf-sms
67     port: 10443
68   sdc:
69     serviceName: sdc-be
70     port: 8443
71   cps:
72     service: cps-tbdmt
73     port: 8080
74   etcd:
75     serviceName: &etcd-service oof-has-etcd
76     port: 2379
77     appUser: conductor
78 #    rootPassword:
79 #    appPassword:
80 #    userCredentialsExternalSecret:
81 # Resource Limit flavor -By Default using small
82 flavor: small
83 # Segregation for Different environment (Small and Large)
84 resources:
85   small:
86     limits:
87       memory: 2Gi
88       cpu: 1000m
89     requests:
90       memory: 1Gi
91       cpu: 500m
92   large:
93     limits:
94       memory: 4Gi
95       cpu: 2000m
96     requests:
97       memory: 2Gi
98       cpu: 1000m
99   unlimited: {}
100
101 #component overrides
102 oof-has-api: &has-config
103   enabled: true
104   certSecret: *oof-certs
105   config:
106     etcd:
107       userCredentialsExternalSecret: *user-creds
108       configJobNameOverride: &job-name oof-has-etcd-config
109 oof-has-controller: *has-config
110 oof-has-data: *has-config
111 oof-has-reservation: *has-config
112 oof-has-solver: *has-config
113 music:
114   enabled: false
115
116 #etcd subchart configurations
117 etcd:
118   enabled: true
119   replicaCount: 3
120   nameOverride: &etcd-container oof-has-etcd
121   service:
122     name: *etcd-service
123   persistence:
124     mountSubPath: oof/etcd/data
125     enabled: true
126   flavor: &etcd-flavor large
127   resources: &etcd-resources
128     small:
129       limits:
130         cpu: 100m
131         memory: 300Mi
132       requests:
133         cpu: 10m
134         memory: 75Mi
135     large:
136       limits:
137         cpu: 200m
138         memory: 1Gi
139       requests:
140         cpu: 50m
141         memory: 300Mi
142     unlimited: {}
143
144 etcd-init:
145   enabled: true
146   nameOverride: *job-name
147   etcd:
148     serviceName: *etcd-service
149     port : 2379
150     containerName: *etcd-container
151   config:
152     userRootSecret: *root-password
153     userCredentialsExternalSecret: *user-creds
154     appRole: conductor
155     keyPrefix: conductor
156   flavor: *etcd-flavor
157   resources: *etcd-resources
158
159 # Python doesn't support well dollar sign in password
160 passwordStrengthOverride: basic