[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / so / components / 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 configuration defaults.
16 #################################################################
17 global:
18   repository: nexus3.onap.org:10001
19   readinessImage: onap/oom/readiness:3.0.1
20   aafAgentImage: onap/aaf/aaf_agent:2.1.20
21   envsubstImage: dibi/envsubst
22   persistence:
23     mountPath: /dockerdata-nfs
24
25 readinessCheck:
26   wait_for:
27     - aai
28     - message-router
29
30 #################################################################
31 # Application configuration defaults.
32 #################################################################
33 image: onap/so/ve-vnfm-adapter:1.6.4
34 pullPolicy: Always
35 replicaCount: 1
36 service:
37   name: ve-vnfm-adapter
38   type: ClusterIP
39   annotations:
40     msb.onap.org/service-info: |
41       {{ if not .Values.global.msbDisabled -}}[
42         {
43           "serviceName": "{{ include "common.servicename" . }}",
44           "version": "v1",
45           "url": "/",
46           "protocol": "REST",
47           "port": "{{ include "common.getPort" (dict "global" . "name" "http") }}",
48           "visualRange": "1"
49         }
50       ]{{ end }}
51   ports:
52     - name: http
53       port: 9098
54
55 #################################################################
56 # soHelpers part
57 #################################################################
58 soHelpers:
59   nameOverride: so-vevnfm-cert-init
60   certInitializer:
61     nameOverride: so-vevnfm-cert-init
62     credsPath: /opt/app/osaaf/local
63
64 flavor: small
65 resources:
66   small:
67     limits:
68       memory: 512Mi
69       cpu: 500m
70     requests:
71       memory: 256Mi
72       cpu: 250m
73   large:
74     limits:
75       memory: 8Gi
76       cpu: 4000m
77     requests:
78       memory: 2Gi
79       cpu: 1000m
80   unlimited: {}
81 livenessProbe:
82   port: 9098
83   initialDelaySeconds: 600
84   periodSeconds: 60
85   timeoutSeconds: 10
86   successThreshold: 1
87   failureThreshold: 3
88 nodeSelector: {}
89 tolerations: []
90 affinity: {}