blob: 5854a370a2b188bb88c81c1138ffdc0545c1e049 [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#################################################################
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010024# Secrets metaconfig
25#################################################################
26secrets:
27 - uid: "db-root-pass"
28 externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}'
29 type: password
30 password: '{{ .Values.config.mariadbRootPassword }}'
31 policy: required
32
33#################################################################
Mike Elliott6ba69cd2018-04-03 16:37:06 -040034# Application configuration defaults.
35#################################################################
36# application image
GregSulek5fb3bc62018-09-20 08:51:37 -040037flavor: small
38
dyh130393a2021-03-25 10:12:16 +080039image: onap/vfc/nslcm:1.4.3
Mike Elliott6ba69cd2018-04-03 16:37:06 -040040pullPolicy: Always
41
Huabing Zhaoc171ac22018-07-31 06:49:03 +000042#Istio sidecar injection policy
43istioSidecar: true
44
Mike Elliott6ba69cd2018-04-03 16:37:06 -040045# flag to enable debugging - application support required
46debugEnabled: false
47
48# application configuration
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010049config:
50 mariadbService: vfc-mariadb
51 mariadbPort: 3306
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010052 mariadbRootPassword: secretpassword
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010053 # mariadbRootPasswordExternalSecret: some secret
54
Mike Elliott6ba69cd2018-04-03 16:37:06 -040055
56# default number of instances
57replicaCount: 1
58
59nodeSelector: {}
60
61affinity: {}
62
63# probe configuration parameters
64liveness:
yangyand08e6dc2018-08-17 13:28:00 +080065 initialDelaySeconds: 120
Mike Elliott6ba69cd2018-04-03 16:37:06 -040066 periodSeconds: 10
67 # necessary to disable liveness probe when setting breakpoints
68 # in debugger so K8s doesn't restart unresponsive container
69 enabled: true
70
71readiness:
72 initialDelaySeconds: 10
73 periodSeconds: 10
74
75service:
76 type: ClusterIP
77 name: vfc-nslcm
BorislavG1ffbd992018-04-24 07:56:27 +000078 portName: vfc-nslcm
Mike Elliott6ba69cd2018-04-03 16:37:06 -040079 externalPort: 8403
80 internalPort: 8403
81# nodePort: 30403
82
83ingress:
84 enabled: false
85
GregSulek5fb3bc62018-09-20 08:51:37 -040086
87# Configure resource requests and limits
88resources:
89 small:
90 limits:
91 cpu: 200m
92 memory: 500Mi
93 requests:
94 cpu: 100m
95 memory: 250Mi
96 large:
97 limits:
98 cpu: 400m
99 memory: 1000Mi
100 requests:
101 cpu: 200m
102 memory: 500Mi
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +0100103 unlimited: {}