blob: 733b9209b5a3a2e06ea44f002e6c6e8322790bea [file] [log] [blame]
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04001# Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware
Dileep Ranganathan61225cb2018-10-01 08:14:16 -07002# Modifications Copyright © 2018 Intel Corporation
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04003#
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#################################################################
19global:
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040020 commonConfigPrefix: onap-oof-has
21 image:
malar8c4999a2022-09-22 11:41:32 +000022 optf_has: onap/optf-has:2.3.1
krishnaa96dbcd1ca2020-08-11 10:26:50 +053023 persistence:
24 enabled: true
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040025
krishnaa9624a7ef32020-10-09 12:01:05 +053026#################################################################
27# Secrets metaconfig
28#################################################################
29secrets:
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 }}'
krishnaa9620552e72021-05-18 18:52:56 +053035 - 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
krishnaa9624a7ef32020-10-09 12:01:05 +053047
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040048pullPolicy: Always
49nodePortPrefix: 302
50dataRootDir: /dockerdata-nfs
Ritu Sood3a63d432018-05-24 08:23:14 -070051config:
krishnaa9620552e72021-05-18 18:52:56 +053052 dbBackend: etcd
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070053 aaf:
54 serviceName: aaf-service
55 port: 8100
Ritu Sood3a63d432018-05-24 08:23:14 -070056 aai:
57 serviceName: aai
58 port: 8443
59 msb:
60 serviceName: msb-iag
61 port: 80
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070062 music:
Tschaen, Brendan08d7b632020-04-02 19:49:13 +000063 serviceName: music
64 port: 8443
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070065 sms:
66 serviceName: aaf-sms
67 port: 10443
krishnaa963865d692021-02-22 20:53:44 +053068 sdc:
69 serviceName: sdc-be
70 port: 8443
71 cps:
72 service: cps-tbdmt
73 port: 8080
Krishna56df3132022-03-31 15:40:34 +053074 dcae:
75 service: dcae-slice-analysis-ms
76 port: 8080
krishnaa9620552e72021-05-18 18:52:56 +053077 etcd:
78 serviceName: &etcd-service oof-has-etcd
79 port: 2379
80 appUser: conductor
81# rootPassword:
82# appPassword:
83# userCredentialsExternalSecret:
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070084# Resource Limit flavor -By Default using small
85flavor: small
86# Segregation for Different environment (Small and Large)
87resources:
88 small:
89 limits:
90 memory: 2Gi
91 cpu: 1000m
92 requests:
93 memory: 1Gi
94 cpu: 500m
95 large:
96 limits:
97 memory: 4Gi
98 cpu: 2000m
99 requests:
100 memory: 2Gi
101 cpu: 1000m
102 unlimited: {}
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530103
104#component overrides
krishnaa9620552e72021-05-18 18:52:56 +0530105oof-has-api: &has-config
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530106 enabled: true
krishnaa9624a7ef32020-10-09 12:01:05 +0530107 certSecret: *oof-certs
krishnaa9620552e72021-05-18 18:52:56 +0530108 config:
109 etcd:
110 userCredentialsExternalSecret: *user-creds
111 configJobNameOverride: &job-name oof-has-etcd-config
112oof-has-controller: *has-config
113oof-has-data: *has-config
114oof-has-reservation: *has-config
115oof-has-solver: *has-config
116music:
117 enabled: false
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530118
krishnaa9620552e72021-05-18 18:52:56 +0530119#etcd subchart configurations
120etcd:
121 enabled: true
122 replicaCount: 3
123 nameOverride: &etcd-container oof-has-etcd
124 service:
125 name: *etcd-service
126 persistence:
127 mountSubPath: oof/etcd/data
128 enabled: true
129 flavor: &etcd-flavor large
130 resources: &etcd-resources
131 small:
132 limits:
133 cpu: 100m
134 memory: 300Mi
135 requests:
136 cpu: 10m
137 memory: 75Mi
138 large:
139 limits:
140 cpu: 200m
141 memory: 1Gi
142 requests:
143 cpu: 50m
144 memory: 300Mi
145 unlimited: {}
146
147etcd-init:
148 enabled: true
149 nameOverride: *job-name
150 etcd:
151 serviceName: *etcd-service
152 port : 2379
153 containerName: *etcd-container
154 config:
155 userRootSecret: *root-password
156 userCredentialsExternalSecret: *user-creds
157 appRole: conductor
158 keyPrefix: conductor
159 flavor: *etcd-flavor
160 resources: *etcd-resources
Michal Jagiello259e8762022-03-11 15:15:36 +0000161
162# Python doesn't support well dollar sign in password
malar8c4999a2022-09-22 11:41:32 +0000163passwordStrengthOverride: basic