blob: fafef0c5f03ebd77e573895b7d2a55666f7e2a74 [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 Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
Mike Elliott6ba69cd2018-04-03 16:37:06 -040021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23
24#################################################################
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010025# Secrets metaconfig
26#################################################################
27secrets:
28 - uid: "db-root-pass"
29 externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}'
30 type: password
31 password: '{{ .Values.config.mariadbRootPassword }}'
32 policy: required
33
34#################################################################
Mike Elliott6ba69cd2018-04-03 16:37:06 -040035# Application configuration defaults.
36#################################################################
37# application image
GregSulek5fb3bc62018-09-20 08:51:37 -040038flavor: small
39
Mike Elliott6ba69cd2018-04-03 16:37:06 -040040repository: nexus3.onap.org:10001
dengyh428f6052020-09-23 15:31:26 +080041image: onap/vfc/vnflcm:1.4.0
Mike Elliott6ba69cd2018-04-03 16:37:06 -040042pullPolicy: Always
43
Huabing Zhaoc171ac22018-07-31 06:49:03 +000044#Istio sidecar injection policy
45istioSidecar: true
46
Mike Elliott6ba69cd2018-04-03 16:37:06 -040047# flag to enable debugging - application support required
48debugEnabled: false
49
50# application configuration
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010051config:
52 mariadbService: vfc-mariadb
53 mariadbPort: 3306
54 # mariadbRootPassword: secretpassword
55 # mariadbRootPasswordExternalSecret: some secret
56
Mike Elliott6ba69cd2018-04-03 16:37:06 -040057
58# default number of instances
59replicaCount: 1
60
61nodeSelector: {}
62
63affinity: {}
64
65# probe configuration parameters
66liveness:
yangyand08e6dc2018-08-17 13:28:00 +080067 initialDelaySeconds: 120
Mike Elliott6ba69cd2018-04-03 16:37:06 -040068 periodSeconds: 10
69 # necessary to disable liveness probe when setting breakpoints
70 # in debugger so K8s doesn't restart unresponsive container
71 enabled: true
72
73readiness:
74 initialDelaySeconds: 10
75 periodSeconds: 10
76
77service:
78 type: ClusterIP
79 name: vfc-vnflcm
BorislavG1ffbd992018-04-24 07:56:27 +000080 portName: vfc-vnflcm
Mike Elliott6ba69cd2018-04-03 16:37:06 -040081 externalPort: 8801
82 internalPort: 8801
83# nodePort: 30801
84
85ingress:
86 enabled: false
87
GregSulek5fb3bc62018-09-20 08:51:37 -040088
89# Configure resource requests and limits
90resources:
91 small:
92 limits:
93 cpu: 200m
94 memory: 500Mi
95 requests:
96 cpu: 100m
97 memory: 250Mi
98 large:
99 limits:
100 cpu: 400m
101 memory: 1000Mi
102 requests:
103 cpu: 200m
104 memory: 500Mi
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +0100105 unlimited: {}