blob: d29bff28aa1ec796f2f368041ffbbf3ab8e70e4b [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
20 readinessRepository: oomk8s
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000021 readinessImage: readiness-check:2.0.2
MichaelMorris74fda382019-03-17 09:36:27 +000022 persistence:
23 mountPath: /dockerdata-nfs
24
25#################################################################
26# Application configuration defaults.
27#################################################################
28repository: nexus3.onap.org:10001
seshukm630b5232019-09-12 10:26:06 +053029image: onap/so/vnfm-adapter:1.5.2
MichaelMorris74fda382019-03-17 09:36:27 +000030pullPolicy: Always
31
32replicaCount: 1
33minReadySeconds: 10
34containerPort: 9092
35logPath: ./logs/vnfm-adapter/
36app: vnfm-adapter
37service:
38 type: NodePort
39 internalPort: 9092
40 externalPort: 9092
41 nodePort: "06"
42 portName: so-vnfm-port
43updateStrategy:
44 type: RollingUpdate
45 maxUnavailable: 1
46 maxSurge: 1
47# Resource Limit flavor -By Default using small
48flavor: small
49# Segregation for Different environment (Small and Large)
50resources:
51 small:
52 limits:
53 memory: 4Gi
54 cpu: 2000m
55 requests:
56 memory: 1Gi
57 cpu: 500m
58 large:
59 limits:
60 memory: 8Gi
61 cpu: 4000m
62 requests:
63 memory: 2Gi
64 cpu: 1000m
65 unlimited: {}
66livenessProbe:
67 port: 9092
68 initialDelaySeconds: 600
69 periodSeconds: 60
70 timeoutSeconds: 10
71 successThreshold: 1
72 failureThreshold: 3
73ingress:
74 enabled: false
75nodeSelector: {}
76tolerations: []
77affinity: {}