blob: 24de2c686234c5931752f8b48706a415c3a86db7 [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00001# Copyright © 2018 AT&T USA
seshukm0df1f8e2020-08-17 21:45:49 +05302# Copyright © 2020 Huawei
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00003# 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
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
seshukm0df1f8e2020-08-17 21:45:49 +053022 aafAgentImage: onap/aaf/aaf_agent:2.1.20
23 envsubstImage: dibi/envsubst
jmacc4f04d32018-10-12 18:24:24 +000024 persistence:
25 mountPath: /dockerdata-nfs
seshukm0df1f8e2020-08-17 21:45:49 +053026 security:
27 aaf:
28 enabled: false
29 aaf:
30 auth:
31 header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
jmacc4f04d32018-10-12 18:24:24 +000032
33#################################################################
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010034# Secrets metaconfig
35#################################################################
36secrets:
37 - uid: db-user-creds
38 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010039 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010040 login: '{{ .Values.db.userName }}'
41 password: '{{ .Values.db.userPassword }}'
42 passwordPolicy: required
43 - uid: db-admin-creds
44 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010045 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010046 login: '{{ .Values.db.adminName }}'
47 password: '{{ .Values.db.adminPassword }}'
48 passwordPolicy: required
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010049
50#secretsFilePaths: |
51# - 'my file 1'
52# - '{{ include "templateThatGeneratesFileName" . }}'
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010053
54#################################################################
jmacc4f04d32018-10-12 18:24:24 +000055# Application configuration defaults.
56#################################################################
57repository: nexus3.onap.org:10001
seshukm40ec9fa2020-07-08 14:26:34 +053058image: onap/so/sdc-controller:1.6.4
jmacc4f04d32018-10-12 18:24:24 +000059pullPolicy: Always
60
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010061db:
62 userName: so_user
63 userPassword: so_User123
64 # userCredsExternalSecret: some secret
65 adminName: so_admin
66 adminPassword: so_Admin123
67 # adminCredsExternalSecret: some secret
68
seshukm0df1f8e2020-08-17 21:45:49 +053069aai:
70 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
71mso:
72 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
73 requestDb:
74 auth: Basic YnBlbDpwYXNzd29yZDEk
75 asdc:
76 config:
77 key: 566B754875657232314F5548556D3665
78 asdc-connections:
79 asdc-controller1:
80 password: 76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F
81
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000082replicaCount: 1
83minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +053084containerPort: &containerPort 8085
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000085logPath: ./logs/sdc/
86app: sdc-controller
87service:
88 type: ClusterIP
seshukm0df1f8e2020-08-17 21:45:49 +053089 internalPort: *containerPort
90 externalPort: *containerPort
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000091 portName: so-sdc-port
92updateStrategy:
93 type: RollingUpdate
94 maxUnavailable: 1
95 maxSurge: 1
seshukm0df1f8e2020-08-17 21:45:49 +053096
97#################################################################
98# soHelpers part
99#################################################################
100soHelpers:
101 nameOverride: so-sdc-cert-init
102 certInitializer:
103 nameOverride: so-sdc-cert-init
104 credsPath: /opt/app/osaaf/local
105 cadi:
106 apiEnforcement: org.onap.so.sdcControllerPerm
107 containerPort: *containerPort
108
vaibhav16dec0da88292018-08-13 06:10:27 +0000109# Resource Limit flavor -By Default using small
110flavor: small
111# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000112resources:
vaibhav16dec0da88292018-08-13 06:10:27 +0000113 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000114 limits:
115 memory: 4Gi
116 cpu: 2000m
vaibhav16dec0da88292018-08-13 06:10:27 +0000117 requests:
118 memory: 1Gi
119 cpu: 500m
120 large:
121 limits:
122 memory: 8Gi
123 cpu: 4000m
124 requests:
125 memory: 2Gi
126 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000127 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000128livenessProbe:
129 path: /manage/health
130 port: 8085
131 scheme: HTTP
132 initialDelaySeconds: 600
133 periodSeconds: 60
134 timeoutSeconds: 10
135 successThreshold: 1
136 failureThreshold: 3
137ingress:
138 enabled: false
139nodeSelector: {}
140tolerations: []
Brian Freeman1a667932018-09-06 14:45:37 -0500141affinity: {}