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