blob: c96712be4fb48155f7f8969246002736fb3d4747 [file] [log] [blame]
Mike Elliott6ba69cd2018-04-03 16:37:06 -04001# Copyright © 2017 Amdocs, Bell Canada
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#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010020 config:
21 ssl_enabled: false
Mike Elliott6ba69cd2018-04-03 16:37:06 -040022
23#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
GregSulek5fb3bc62018-09-20 08:51:37 -040027flavor: small
28
dengyh20285ba2022-03-31 13:19:02 +080029image: onap/vfc/gvnfmdriver:1.4.4
Mike Elliott6ba69cd2018-04-03 16:37:06 -040030pullPolicy: Always
31
Huabing Zhaoc171ac22018-07-31 06:49:03 +000032#Istio sidecar injection policy
33istioSidecar: true
34
Mike Elliott6ba69cd2018-04-03 16:37:06 -040035# flag to enable debugging - application support required
36debugEnabled: false
37
38# application configuration
mahendrr08c3f452018-04-12 06:57:07 +000039config: {}
Mike Elliott6ba69cd2018-04-03 16:37:06 -040040
41# default number of instances
42replicaCount: 1
43
44nodeSelector: {}
45
46affinity: {}
47
48# probe configuration parameters
49liveness:
yangyand08e6dc2018-08-17 13:28:00 +080050 initialDelaySeconds: 120
Mike Elliott6ba69cd2018-04-03 16:37:06 -040051 periodSeconds: 10
52 # necessary to disable liveness probe when setting breakpoints
53 # in debugger so K8s doesn't restart unresponsive container
54 enabled: true
55
56readiness:
57 initialDelaySeconds: 10
58 periodSeconds: 10
59
60service:
61 type: ClusterIP
62 name: vfc-generic-vnfm-driver
AndrewLambce8a39c2022-07-14 12:51:55 +010063 portName: http
Mike Elliott6ba69cd2018-04-03 16:37:06 -040064 externalPort: 8484
65 internalPort: 8484
66# nodePort: 30484
67
68ingress:
69 enabled: false
70
GregSulek5fb3bc62018-09-20 08:51:37 -040071# Configure resource requests and limits
72resources:
73 small:
74 limits:
Andreas Geissler47537432024-02-27 08:55:23 +010075 cpu: "200m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010076 memory: "500Mi"
GregSulek5fb3bc62018-09-20 08:51:37 -040077 requests:
Andreas Geissler47537432024-02-27 08:55:23 +010078 cpu: "100m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010079 memory: "200Mi"
GregSulek5fb3bc62018-09-20 08:51:37 -040080 large:
81 limits:
Andreas Geissler47537432024-02-27 08:55:23 +010082 cpu: "400m"
83 memory: "1Gi"
GregSulek5fb3bc62018-09-20 08:51:37 -040084 requests:
Andreas Geissler47537432024-02-27 08:55:23 +010085 cpu: "200m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010086 memory: "500Mi"
yangyanf3a057f2019-05-13 14:37:28 +080087 unlimited: {}
Maciej Wereski857687a2021-11-18 16:28:05 +010088
89# Log configuration
90log:
91 path: /var/log/onap
92logConfigMapNamePrefix: '{{ include "common.fullname" . }}'