blob: 9237b994ac646af4db0298de4552897f2c5e2ede [file] [log] [blame]
Piotr Borelowski145e6dd2020-02-14 16:57:50 +01001# 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.
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010014#################################################################
15# Global configuration defaults.
16#################################################################
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010017global:
18 repository: nexus3.onap.org:10001
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020019 readinessImage: onap/oom/readiness:3.0.1
seshukm0df1f8e2020-08-17 21:45:49 +053020 aafAgentImage: onap/aaf/aaf_agent:2.1.20
21 envsubstImage: dibi/envsubst
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010022 persistence:
23 mountPath: /dockerdata-nfs
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010024
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010025readinessCheck:
26 wait_for:
27 - aai
28 - message-router
29
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010030#################################################################
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010031# Application configuration defaults.
32#################################################################
seshukm40ec9fa2020-07-08 14:26:34 +053033image: onap/so/ve-vnfm-adapter:1.6.4
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010034pullPolicy: Always
35replicaCount: 1
36service:
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",
Krzysztof Opasiak28d372a2020-09-09 13:14:27 +020047 "port": "{{ include "common.getPort" (dict "global" . "name" "http") }}",
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010048 "visualRange": "1"
49 }
50 ]{{ end }}
51 ports:
52 - name: http
53 port: 9098
seshukm0df1f8e2020-08-17 21:45:49 +053054
55#################################################################
56# soHelpers part
57#################################################################
58soHelpers:
59 nameOverride: so-vevnfm-cert-init
60 certInitializer:
61 nameOverride: so-vevnfm-cert-init
62 credsPath: /opt/app/osaaf/local
63
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010064flavor: small
65resources:
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: {}
81livenessProbe:
82 port: 9098
83 initialDelaySeconds: 600
84 periodSeconds: 60
85 timeoutSeconds: 10
86 successThreshold: 1
87 failureThreshold: 3
88nodeSelector: {}
89tolerations: []
90affinity: {}