blob: d244f7abf580241d134c0c1bb9d5d02a94121bc2 [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
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010020 persistence:
21 mountPath: /dockerdata-nfs
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010022
23#################################################################
24# Secrets metaconfig
25#################################################################
26secrets:
27 - uid: "so-onap-certs"
28 externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
29 type: generic
30 filePaths: '{{ .Values.secretsFilePaths }}'
31
32#secretsFilePaths: |
33# - 'my file 1'
34# - '{{ include "templateThatGeneratesFileName" . }}'
35
36#################################################################
37# Application configuration defaults.
38#################################################################
seshukm40ec9fa2020-07-08 14:26:34 +053039image: onap/so/ve-vnfm-adapter:1.6.4
Piotr Borelowski145e6dd2020-02-14 16:57:50 +010040pullPolicy: Always
41replicaCount: 1
42service:
43 name: ve-vnfm-adapter
44 type: ClusterIP
45 annotations:
46 msb.onap.org/service-info: |
47 {{ if not .Values.global.msbDisabled -}}[
48 {
49 "serviceName": "{{ include "common.servicename" . }}",
50 "version": "v1",
51 "url": "/",
52 "protocol": "REST",
53 "port": "{{ (index .Values.service.ports 0).port }}",
54 "visualRange": "1"
55 }
56 ]{{ end }}
57 ports:
58 - name: http
59 port: 9098
60flavor: small
61resources:
62 small:
63 limits:
64 memory: 512Mi
65 cpu: 500m
66 requests:
67 memory: 256Mi
68 cpu: 250m
69 large:
70 limits:
71 memory: 8Gi
72 cpu: 4000m
73 requests:
74 memory: 2Gi
75 cpu: 1000m
76 unlimited: {}
77livenessProbe:
78 port: 9098
79 initialDelaySeconds: 600
80 periodSeconds: 60
81 timeoutSeconds: 10
82 successThreshold: 1
83 failureThreshold: 3
84nodeSelector: {}
85tolerations: []
86affinity: {}