bump the SO release version 1.6.1
[oom.git] / kubernetes / so / charts / so-vnfm-adapter / values.yaml
1 # Copyright © 2019 Nordix Foundation
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   nodePortPrefixExt: 304
19   repository: nexus3.onap.org:10001
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.2
22   persistence:
23     mountPath: /dockerdata-nfs
24
25 #################################################################
26 # Secrets metaconfig
27 #################################################################
28 secrets:
29   - uid: "so-onap-certs"
30     externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
31     type: generic
32     filePaths: '{{ .Values.secretsFilePaths }}'
33
34 #secretsFilePaths: |
35 #  - 'my file 1'
36 #  - '{{ include "templateThatGeneratesFileName" . }}'
37
38
39 #################################################################
40 # Application configuration defaults.
41 #################################################################
42 repository: nexus3.onap.org:10001
43 image: onap/so/vnfm-adapter:1.6.1
44 pullPolicy: Always
45
46 replicaCount: 1
47 minReadySeconds: 10
48 containerPort: 9092
49 logPath: ./logs/vnfm-adapter/
50 app: vnfm-adapter
51 service:
52     type: NodePort
53     internalPort: 9092
54     externalPort: 9092
55     nodePort: "06"
56     portName: so-vnfm-port
57 updateStrategy:
58     type: RollingUpdate
59     maxUnavailable: 1
60     maxSurge: 1
61 # Resource Limit flavor -By Default using small
62 flavor: small
63 # Segregation for Different environment (Small and Large)
64 resources:
65   small:
66     limits:
67       memory: 4Gi
68       cpu: 2000m
69     requests:
70       memory: 1Gi
71       cpu: 500m
72   large:
73     limits:
74       memory: 8Gi
75       cpu: 4000m
76     requests:
77       memory: 2Gi
78       cpu: 1000m
79   unlimited: {}
80 livenessProbe:
81     port: 9092
82     initialDelaySeconds: 600
83     periodSeconds: 60
84     timeoutSeconds: 10
85     successThreshold: 1
86     failureThreshold: 3
87 ingress:
88   enabled: false
89   service:
90       - baseaddr: "sovnfmadapter"
91         name: "so-vnfm-adapter"
92         port: 9092
93   config:
94     ssl: "redirect"
95 nodeSelector: {}
96 tolerations: []
97 affinity: {}