blob: 1e4ecbc33aa1bf84da2375b17ee37149bdb8f6b3 [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#################################################################
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010026# Secrets metaconfig
27#################################################################
28secrets:
29 - uid: "so-onap-certs"
30 externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
31 type: generic
32 filePaths: '{{ .Values.secretsFilePaths }}'
33
34#secretsFilePaths: |
35# - 'my file 1'
36# - '{{ include "templateThatGeneratesFileName" . }}'
37
38
39#################################################################
MichaelMorris74fda382019-03-17 09:36:27 +000040# Application configuration defaults.
41#################################################################
42repository: nexus3.onap.org:10001
seshukmfb56d712019-10-14 10:46:52 +053043image: onap/so/vnfm-adapter:1.5.3
MichaelMorris74fda382019-03-17 09:36:27 +000044pullPolicy: Always
45
46replicaCount: 1
47minReadySeconds: 10
48containerPort: 9092
49logPath: ./logs/vnfm-adapter/
50app: vnfm-adapter
51service:
52 type: NodePort
53 internalPort: 9092
54 externalPort: 9092
55 nodePort: "06"
56 portName: so-vnfm-port
57updateStrategy:
58 type: RollingUpdate
59 maxUnavailable: 1
60 maxSurge: 1
61# Resource Limit flavor -By Default using small
62flavor: small
63# Segregation for Different environment (Small and Large)
64resources:
65 small:
66 limits:
67 memory: 4Gi
68 cpu: 2000m
69 requests:
70 memory: 1Gi
71 cpu: 500m
72 large:
73 limits:
74 memory: 8Gi
75 cpu: 4000m
76 requests:
77 memory: 2Gi
78 cpu: 1000m
79 unlimited: {}
80livenessProbe:
81 port: 9092
82 initialDelaySeconds: 600
83 periodSeconds: 60
84 timeoutSeconds: 10
85 successThreshold: 1
86 failureThreshold: 3
87ingress:
88 enabled: false
Lucjan Bryndza426a82c2019-08-14 09:14:12 +020089 service:
90 - baseaddr: "sovnfmadapter"
91 name: "so-vnfm-adapter"
92 port: 9092
93 config:
94 ssl: "redirect"
MichaelMorris74fda382019-03-17 09:36:27 +000095nodeSelector: {}
96tolerations: []
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010097affinity: {}