[SO] London release image updates
[oom.git] / kubernetes / so / components / so-openstack-adapter / values.yaml
1 # Copyright © 2018 AT&T USA
2 # Copyright © 2020 Huawei
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   persistence:
21     mountPath: /dockerdata-nfs
22   mariadbGalera:
23     serviceName: mariadb-galera
24     servicePort: '3306'
25
26 readinessCheck:
27   wait_for:
28     jobs:
29       - '{{ include "common.release" . }}-so-mariadb-config-job'
30
31 #################################################################
32 # Secrets metaconfig
33 #################################################################
34 secrets:
35   - uid: db-user-creds
36     type: basicAuth
37     externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
38     login: '{{ .Values.db.userName }}'
39     password: '{{ .Values.db.userPassword }}'
40     passwordPolicy: required
41   - uid: db-admin-creds
42     type: basicAuth
43     externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
44     login: '{{ .Values.db.adminName }}'
45     password: '{{ .Values.db.adminPassword }}'
46     passwordPolicy: required
47
48 #secretsFilePaths: |
49 #  - 'my file 1'
50 #  - '{{ include "templateThatGeneratesFileName" . }}'
51
52 #################################################################
53 # Application configuration defaults.
54 #################################################################
55 image: onap/so/openstack-adapter:1.12.1
56 pullPolicy: Always
57
58 db:
59   userName: so_user
60   userPassword: so_User123
61   # userCredsExternalSecret: some secret
62   adminName: so_admin
63   adminPassword: so_Admin123
64   # adminCredsExternalSecret: some secret
65
66 aai:
67   auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
68 org:
69   onap:
70     so:
71       adapters:
72         bpelauth: D1A67FA93B6A6419132D0F83CC771AF774FD3C60853C50C22C8C6FC5088CC79E9E81EDE9EA39F22B2F66A0068E
73 mso:
74   msoKey: 07a7159d3bf51a0e53be7a8f89699be7
75   basicUser: poBpmn
76   auth: BEA8637716A7EB617DF472BA6552D22F68C1CB17B0D094D77DDA562F4ADAAC4457CAB848E1A4
77   db:
78     auth: Basic YnBlbDpwYXNzd29yZDEk
79
80 replicaCount: 1
81 minReadySeconds: 10
82 containerPort: &containerPort 8087
83 logPath: ./logs/openstack/
84 app: openstack-adapter
85 service:
86   type: ClusterIP
87   ports:
88     - name: http
89       port: *containerPort
90 updateStrategy:
91   type: RollingUpdate
92   maxUnavailable: 1
93   maxSurge: 1
94
95 #################################################################
96 # soHelpers part
97 #################################################################
98 soHelpers:
99   containerPort: *containerPort
100
101 # Resource Limit flavor -By Default using small
102 flavor: small
103 # Segregation for Different environment (Small and Large)
104 resources:
105   small:
106     limits:
107       memory: 4Gi
108       cpu: 2000m
109     requests:
110       memory: 1Gi
111       cpu: 500m
112   large:
113     limits:
114       memory: 8Gi
115       cpu: 4000m
116     requests:
117       memory: 2Gi
118       cpu: 1000m
119   unlimited: {}
120 livenessProbe:
121   path: /manage/health
122   port: 8087
123   scheme: HTTP
124   initialDelaySeconds: 600
125   periodSeconds: 60
126   timeoutSeconds: 10
127   successThreshold: 1
128   failureThreshold: 3
129 ingress:
130   enabled: false
131 serviceMesh:
132   authorizationPolicy:
133     authorizedPrincipals:
134       - serviceAccount: robot-read
135       - serviceAccount: so-bpmn-infra-read
136       - serviceAccount: so-read
137 config:
138   openStackUserName: "vnf_user"
139   openStackRegion: "RegionOne"
140   openStackKeyStoneUrl: "http://1.2.3.4:5000/v2.0"
141   openStackServiceTenantName: "service"
142   openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
143   openStackTenantId: "d570c718cbc545029f40e50b75eb13df"
144   # "KEYSTONE" for keystone v2, "KEYSTONE_V3" for keystone v3
145   openStackKeystoneVersion: "KEYSTONE"
146 nodeSelector: {}
147 tolerations: []
148 affinity: {}
149
150 #Pods Service Account
151 serviceAccount:
152   nameOverride: so-openstack-adapter
153   roles:
154     - read
155
156 #Logs configuration
157 log:
158   path: /var/log/onap
159 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'