blob: 6511af320bdf58975468f54e1baee026da545de7 [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
25#################################################################
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010026# Application configuration defaults.
27#################################################################
seshukm40ec9fa2020-07-08 14:26:34 +053028image: onap/so/ve-vnfm-adapter:1.6.4
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010029pullPolicy: Always
30replicaCount: 1
31service:
32 name: ve-vnfm-adapter
33 type: ClusterIP
34 annotations:
35 msb.onap.org/service-info: |
36 {{ if not .Values.global.msbDisabled -}}[
37 {
38 "serviceName": "{{ include "common.servicename" . }}",
39 "version": "v1",
40 "url": "/",
41 "protocol": "REST",
Krzysztof Opasiak28d372a2020-09-09 13:14:27 +020042 "port": "{{ include "common.getPort" (dict "global" . "name" "http") }}",
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010043 "visualRange": "1"
44 }
45 ]{{ end }}
46 ports:
47 - name: http
48 port: 9098
seshukm0df1f8e2020-08-17 21:45:49 +053049
50#################################################################
51# soHelpers part
52#################################################################
53soHelpers:
54 nameOverride: so-vevnfm-cert-init
55 certInitializer:
56 nameOverride: so-vevnfm-cert-init
57 credsPath: /opt/app/osaaf/local
58
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010059flavor: small
60resources:
61 small:
62 limits:
63 memory: 512Mi
64 cpu: 500m
65 requests:
66 memory: 256Mi
67 cpu: 250m
68 large:
69 limits:
70 memory: 8Gi
71 cpu: 4000m
72 requests:
73 memory: 2Gi
74 cpu: 1000m
75 unlimited: {}
76livenessProbe:
77 port: 9098
78 initialDelaySeconds: 600
79 periodSeconds: 60
80 timeoutSeconds: 10
81 successThreshold: 1
82 failureThreshold: 3
83nodeSelector: {}
84tolerations: []
85affinity: {}