blob: aa327792b3cb9d025d91ba6381bfc5fdb95f35c9 [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/vnfmgr:1.4.0
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
Mike Elliott6ba69cd2018-04-03 16:37:06 -040054
55# default number of instances
56replicaCount: 1
57
58nodeSelector: {}
59
60affinity: {}
61
62# probe configuration parameters
63liveness:
yangyand08e6dc2018-08-17 13:28:00 +080064 initialDelaySeconds: 120
Mike Elliott6ba69cd2018-04-03 16:37:06 -040065 periodSeconds: 10
66 # necessary to disable liveness probe when setting breakpoints
67 # in debugger so K8s doesn't restart unresponsive container
68 enabled: true
69
70readiness:
71 initialDelaySeconds: 10
72 periodSeconds: 10
73
74service:
75 type: ClusterIP
76 name: vfc-vnfmgr
BorislavG1ffbd992018-04-24 07:56:27 +000077 portName: vfc-vnfmgr
Mike Elliott6ba69cd2018-04-03 16:37:06 -040078 externalPort: 8803
79 internalPort: 8803
80# nodePort: 30803
81
82ingress:
83 enabled: false
84
GregSulek5fb3bc62018-09-20 08:51:37 -040085# Configure resource requests and limits
86resources:
87 small:
88 limits:
89 cpu: 200m
90 memory: 500Mi
91 requests:
92 cpu: 100m
93 memory: 250Mi
94 large:
95 limits:
96 cpu: 400m
97 memory: 1000Mi
98 requests:
99 cpu: 200m
100 memory: 500Mi
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +0100101 unlimited: {}