Merge "DNS add option for display target machine info"
[oom.git] / kubernetes / so / charts / so-ve-vnfm-adapter / values.yaml
1 # Copyright © 2020 Samsung
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:
16   repository: nexus3.onap.org:10001
17   readinessRepository: oomk8s
18   readinessImage: readiness-check:2.0.2
19   persistence:
20     mountPath: /dockerdata-nfs
21 image: onap/so/ve-vnfm-adapter:1.6.0
22 pullPolicy: Always
23 replicaCount: 1
24 service:
25   name: ve-vnfm-adapter
26   type: ClusterIP
27   annotations:
28     msb.onap.org/service-info: |
29       {{ if not .Values.global.msbDisabled -}}[
30         {
31           "serviceName": "{{ include "common.servicename" . }}",
32           "version": "v1",
33           "url": "/",
34           "protocol": "REST",
35           "port": "{{ (index .Values.service.ports 0).port }}",
36           "visualRange": "1"
37         }
38       ]{{ end }}
39   ports:
40     - name: http
41       port: 9098
42 flavor: small
43 resources:
44   small:
45     limits:
46       memory: 512Mi
47       cpu: 500m
48     requests:
49       memory: 256Mi
50       cpu: 250m
51   large:
52     limits:
53       memory: 8Gi
54       cpu: 4000m
55     requests:
56       memory: 2Gi
57       cpu: 1000m
58   unlimited: {}
59 livenessProbe:
60   port: 9098
61   initialDelaySeconds: 600
62   periodSeconds: 60
63   timeoutSeconds: 10
64   successThreshold: 1
65   failureThreshold: 3
66 nodeSelector: {}
67 tolerations: []
68 affinity: {}