09e631a6e0dd22cd41e047564389b0123847f21d
[oom.git] / kubernetes / so / components / so-cnf-adapter / values.yaml
1 # Copyright © 2020 Huawei Technologies Co., Ltd.
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.
14 #################################################################
15 # Global configuration defaults.
16 #################################################################
17 global:
18   nodePortPrefix: 302
19   nodePortPrefixExt: 304
20   soCryptoImage: sdesbure/so_crypto:latest
21   persistence:
22     mountPath: /dockerdata-nfs
23   aai:
24     enabled: true
25 #################################################################
26 # Secrets metaconfig
27 #################################################################
28 secrets:
29   - uid: db-user-creds
30     type: basicAuth
31     externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
32     login: '{{ .Values.db.userName }}'
33     password: '{{ .Values.db.userPassword }}'
34     passwordPolicy: required
35   - uid: db-admin-creds
36     type: basicAuth
37     externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
38     login: '{{ .Values.db.adminName }}'
39     password: '{{ .Values.db.adminPassword }}'
40     passwordPolicy: required
41   - uid: server-actuator-creds
42     name: '{{ include "common.release" . }}-so-cnf-actuator-creds'
43     type: basicAuth
44     externalSecret: '{{ tpl (default "" .Values.server.actuatorCredsExternalSecret) . }}'
45     login: '{{ .Values.server.actuator.username }}'
46     password: '{{ .Values.server.actuator.password }}'
47     passwordPolicy: required
48   - uid: so-aai-creds
49     name: '{{ include "common.release" . }}-so-cnf-aai-creds'
50     type: basicAuth
51     externalSecret: '{{ tpl (default "" .Values.server.aaiCredsExternalSecret) . }}'
52     login: '{{ .Values.server.aai.username }}'
53     password: '{{ .Values.server.aai.password }}'
54     passwordPolicy: required
55   - uid: cnf-adapter-mso-key
56     name: '{{ include "common.release" . }}-so-cnf-mso-key'
57     type: password
58     externalSecret: '{{ tpl (default "" .Values.mso.msoKeySecret) . }}'
59     password: '{{ .Values.mso.msoKey }}'
60 #secretsFilePaths: |
61 #  - 'my file 1'
62 #  - '{{ include "templateThatGeneratesFileName" . }}'
63 #################################################################
64 # Application configuration defaults.
65 #################################################################
66 image: onap/so/so-cnf-adapter:1.10.0
67 pullPolicy: Always
68
69 readinessCheck:
70   wait_for:
71     jobs:
72       - '{{ include "common.release" . }}-so-mariadb-config-job'
73
74 db:
75   userName: so_user
76   userPassword: so_User123
77   # userCredsExternalSecret: some secret
78   adminName: so_admin
79   adminPassword: so_Admin123
80   # adminCredsExternalSecret: some secret
81 server:
82   aai:
83     username: aai@aai.onap.org
84     password: demo123456!
85     auth: ${AAI_AUTH}
86   # aaiCredsExternalSecret: some secret
87   actuator:
88     username: mso_admin
89     password: password1$
90   # actuatorCredsExternalSecret: some secret
91 mso:
92   msoKey: 07a7159d3bf51a0e53be7a8f89699be7
93   # msoKeySecret: some secret
94   adapters:
95     requestDb:
96       auth: ${REQUEST_AUTH}
97 replicaCount: 1
98 minReadySeconds: 10
99 containerPort: &containerPort 8090
100 logPath: ./logs/cnf-adapter/
101 app: cnf-adapter
102 service:
103   type: ClusterIP
104   ports:
105     - name: http-api
106       port: *containerPort
107 updateStrategy:
108   type: RollingUpdate
109   maxUnavailable: 1
110   maxSurge: 1
111
112 #################################################################
113 # soHelpers part
114 #################################################################
115 soHelpers:
116   containerPort: *containerPort
117
118 # Resource Limit flavor -By Default using small
119 flavor: small
120 # Segregation for Different environment (Small and Large)
121 resources:
122   small:
123     limits:
124       memory: 1Gi
125       cpu: 999
126     requests:
127       memory: 1Gi
128       cpu: 0.5
129   large:
130     limits:
131       memory: 2Gi
132       cpu: 999
133     requests:
134       memory: 2Gi
135       cpu: 1
136   unlimited: {}
137 livenessProbe:
138   path: /manage/health
139   port: 8090
140   scheme: HTTP
141   initialDelaySeconds: 600
142   periodSeconds: 60
143   timeoutSeconds: 10
144   successThreshold: 1
145   failureThreshold: 3
146 ingress:
147   enabled: false
148 serviceMesh:
149   authorizationPolicy:
150     authorizedPrincipals:
151       - serviceAccount: so-read
152 nodeSelector: {}
153 tolerations: []
154 affinity: {}
155
156 #Pods Service Account
157 serviceAccount:
158   nameOverride: so-cnf-adapter
159   roles:
160     - read