blob: 8580df2bf931269f55083b87933813b347b44be0 [file] [log] [blame]
MichaelMorris74fda382019-03-17 09:36:27 +00001# Copyright © 2019 Nordix Foundation
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#################################################################
17global:
18 nodePortPrefixExt: 304
19 repository: nexus3.onap.org:10001
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
MichaelMorris74fda382019-03-17 09:36:27 +000021 persistence:
22 mountPath: /dockerdata-nfs
23
24#################################################################
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010025# Secrets metaconfig
26#################################################################
27secrets:
28 - uid: "so-onap-certs"
29 externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
30 type: generic
31 filePaths: '{{ .Values.secretsFilePaths }}'
32
33#secretsFilePaths: |
34# - 'my file 1'
35# - '{{ include "templateThatGeneratesFileName" . }}'
36
37
38#################################################################
MichaelMorris74fda382019-03-17 09:36:27 +000039# Application configuration defaults.
40#################################################################
41repository: nexus3.onap.org:10001
seshukm40ec9fa2020-07-08 14:26:34 +053042image: onap/so/vnfm-adapter:1.6.4
MichaelMorris74fda382019-03-17 09:36:27 +000043pullPolicy: Always
44
45replicaCount: 1
46minReadySeconds: 10
47containerPort: 9092
48logPath: ./logs/vnfm-adapter/
49app: vnfm-adapter
50service:
51 type: NodePort
52 internalPort: 9092
53 externalPort: 9092
54 nodePort: "06"
55 portName: so-vnfm-port
56updateStrategy:
57 type: RollingUpdate
58 maxUnavailable: 1
59 maxSurge: 1
60# Resource Limit flavor -By Default using small
61flavor: small
62# Segregation for Different environment (Small and Large)
63resources:
64 small:
65 limits:
66 memory: 4Gi
67 cpu: 2000m
68 requests:
69 memory: 1Gi
70 cpu: 500m
71 large:
72 limits:
73 memory: 8Gi
74 cpu: 4000m
75 requests:
76 memory: 2Gi
77 cpu: 1000m
78 unlimited: {}
79livenessProbe:
80 port: 9092
81 initialDelaySeconds: 600
82 periodSeconds: 60
83 timeoutSeconds: 10
84 successThreshold: 1
85 failureThreshold: 3
86ingress:
87 enabled: false
Lucjan Bryndza426a82c2019-08-14 09:14:12 +020088 service:
89 - baseaddr: "sovnfmadapter"
90 name: "so-vnfm-adapter"
91 port: 9092
92 config:
93 ssl: "redirect"
MichaelMorris74fda382019-03-17 09:36:27 +000094nodeSelector: {}
95tolerations: []
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010096affinity: {}