bump the SO release version 1.6.1
[oom.git] / kubernetes / so / charts / so-vfc-adapter / values.yaml
1 # 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.
14 #################################################################
15 # Global configuration defaults.
16 #################################################################
17 global:
18   nodePortPrefix: 302
19   nodePortPrefixExt: 304
20   repository: nexus3.onap.org:10001
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.2
23   persistence:
24     mountPath: /dockerdata-nfs
25
26 #################################################################
27 # Secrets metaconfig
28 #################################################################
29 secrets:
30   - uid: db-user-creds
31     type: basicAuth
32     externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
33     login: '{{ .Values.db.userName }}'
34     password: '{{ .Values.db.userPassword }}'
35     passwordPolicy: required
36   - uid: db-admin-creds
37     type: basicAuth
38     externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
39     login: '{{ .Values.db.adminName }}'
40     password: '{{ .Values.db.adminPassword }}'
41     passwordPolicy: required
42   - uid: "so-onap-certs"
43     externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
44     type: generic
45     filePaths: '{{ .Values.secretsFilePaths }}'
46
47 #secretsFilePaths: |
48 #  - 'my file 1'
49 #  - '{{ include "templateThatGeneratesFileName" . }}'
50
51 #################################################################
52 # Application configuration defaults.
53 #################################################################
54 repository: nexus3.onap.org:10001
55 image: onap/so/vfc-adapter:1.6.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 replicaCount: 1
67 minReadySeconds: 10
68 containerPort: 8084
69 logPath: ./logs/vfc/
70 app: vfc-adapter
71 service:
72     type: ClusterIP
73     internalPort: 8084
74     externalPort: 8084
75     portName: so-vfc-port
76 updateStrategy:
77     type: RollingUpdate
78     maxUnavailable: 1
79     maxSurge: 1
80 # Resource Limit flavor -By Default using small
81 flavor: small
82 # Segregation for Different environment (Small and Large)
83 resources:
84   small:
85     limits:
86       memory: 4Gi
87       cpu: 2000m
88     requests:
89       memory: 1Gi
90       cpu: 500m
91   large:
92     limits:
93       memory: 8Gi
94       cpu: 4000m
95     requests:
96       memory: 2Gi
97       cpu: 1000m
98   unlimited: {}
99 livenessProbe:
100     path: /manage/health
101     port: 8084
102     scheme: HTTP
103     initialDelaySeconds: 600
104     periodSeconds: 60
105     timeoutSeconds: 10
106     successThreshold: 1
107     failureThreshold: 3
108 ingress:
109   enabled: false
110 nodeSelector: {}
111 tolerations: []
112 affinity: {}