blob: a3d5e2f3631a8f8dd7c32b53bc33b48aa93474e4 [file] [log] [blame]
Mandeep Khinda60d36d42018-09-24 15:15:48 +00001# Copyright © 2018 AT&T USA
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
jmacc4f04d32018-10-12 18:24:24 +000014#################################################################
15# Global configuration defaults.
16#################################################################
17global:
18 nodePortPrefix: 302
19 nodePortPrefixExt: 304
20 repository: nexus3.onap.org:10001
21 readinessRepository: oomk8s
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000022 readinessImage: readiness-check:2.0.2
jmacc4f04d32018-10-12 18:24:24 +000023 persistence:
24 mountPath: /dockerdata-nfs
25
26#################################################################
Krzysztof Opasiak72018df2020-03-02 22:18:41 +010027# Secrets metaconfig
28#################################################################
29secrets:
30 - uid: db-user-creds
31 name: '{{ include "common.release" . }}-so-catalog-db-adapter-db-user-creds'
32 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010033 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiak72018df2020-03-02 22:18:41 +010034 login: '{{ .Values.db.userName }}'
35 password: '{{ .Values.db.userPassword }}'
36 passwordPolicy: required
37 - uid: db-admin-creds
38 name: '{{ include "common.release" . }}-so-catalog-db-adapter-db-admin-creds'
39 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010040 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiak72018df2020-03-02 22:18:41 +010041 login: '{{ .Values.db.adminName }}'
42 password: '{{ .Values.db.adminPassword }}'
43 passwordPolicy: required
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010044 - uid: "so-onap-certs"
45 externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
46 type: generic
47 filePaths: '{{ .Values.secretsFilePaths }}'
48
49#secretsFilePaths: |
50# - 'my file 1'
51# - '{{ include "templateThatGeneratesFileName" . }}'
Krzysztof Opasiak72018df2020-03-02 22:18:41 +010052
53#################################################################
jmacc4f04d32018-10-12 18:24:24 +000054# Application configuration defaults.
55#################################################################
Mandeep Khinda60d36d42018-09-24 15:15:48 +000056repository: nexus3.onap.org:10001
seshukmfb56d712019-10-14 10:46:52 +053057image: onap/so/catalog-db-adapter:1.5.3
jmacc4f04d32018-10-12 18:24:24 +000058pullPolicy: Always
59
Krzysztof Opasiak72018df2020-03-02 22:18:41 +010060db:
61 userName: so_user
62 userPassword: so_User123
63 # userCredsExternalSecret: some secret
64 adminName: so_admin
65 adminPassword: so_Admin123
66 # adminCredsExternalSecret: some secret
67
Mandeep Khinda60d36d42018-09-24 15:15:48 +000068replicaCount: 1
69minReadySeconds: 10
70containerPort: 8082
71logPath: ./logs/catdb/
72app: catalog-db-adapter
73service:
74 type: ClusterIP
75 internalPort: 8082
76 externalPort: 8082
77 portName: so-catdb-port
78updateStrategy:
79 type: RollingUpdate
80 maxUnavailable: 1
81 maxSurge: 1
82# Resource Limit flavor -By Default using small
83flavor: small
84# Segregation for Different environment (Small and Large)
85resources:
86 small:
87 limits:
88 memory: 4Gi
89 cpu: 2000m
90 requests:
91 memory: 1Gi
92 cpu: 500m
93 large:
94 limits:
95 memory: 8Gi
96 cpu: 4000m
97 requests:
98 memory: 2Gi
99 cpu: 1000m
100 unlimited: {}
101livenessProbe:
102 path: /manage/health
103 port: 8082
104 scheme: HTTP
105 initialDelaySeconds: 600
106 periodSeconds: 60
107 timeoutSeconds: 10
108 successThreshold: 1
109 failureThreshold: 3
110ingress:
111 enabled: false
Ramesh Parthasarathybef9c7b2019-03-01 21:21:20 +0000112config:
113 openStackUserName: "vnf_user"
114 openStackRegion: "RegionOne"
115 openStackKeyStoneUrl: "http://1.2.3.4:5000/v2.0"
116 openStackServiceTenantName: "service"
117 openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
118 openStackTenantId: "d570c718cbc545029f40e50b75eb13df"
AndrewLamb43687c02019-10-25 10:29:49 +0100119 openStackProjectDomainName: "openStackProjectDomainName"
120 openStackUserDomainName: "openStackUserDomainName"
Sylvain Desbureaux04f765e2020-02-13 11:08:06 +0100121 # "KEYSTONE" for keystone v2, "KEYSTONE_V3" for keystone v3
122 openStackKeystoneVersion: "KEYSTONE"
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000123nodeSelector: {}
124tolerations: []
125affinity: {}