blob: 20af3bb5ef98dbef62c0e5488bdbb510c02e8257 [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
Mike Elliott6ba69cd2018-04-03 16:37:06 -040020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mike Elliott6ba69cd2018-04-03 16:37:06 -040022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25#################################################################
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010026# Secrets metaconfig
27#################################################################
28secrets:
29 - uid: "db-root-pass"
30 externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}'
31 type: password
32 password: '{{ .Values.config.mariadbRootPassword }}'
33 policy: required
34
35#################################################################
Mike Elliott6ba69cd2018-04-03 16:37:06 -040036# Application configuration defaults.
37#################################################################
38# application image
GregSulek5fb3bc62018-09-20 08:51:37 -040039flavor: small
40
Mike Elliott6ba69cd2018-04-03 16:37:06 -040041repository: nexus3.onap.org:10001
yangyan44331f72020-03-09 10:28:05 +080042image: onap/vfc/vnfmgr:1.3.8
Mike Elliott6ba69cd2018-04-03 16:37:06 -040043pullPolicy: Always
44
Huabing Zhaoc171ac22018-07-31 06:49:03 +000045#Istio sidecar injection policy
46istioSidecar: true
47
Mike Elliott6ba69cd2018-04-03 16:37:06 -040048# flag to enable debugging - application support required
49debugEnabled: false
50
51# application configuration
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010052config:
53 mariadbService: vfc-mariadb
54 mariadbPort: 3306
55 # mariadbRootPassword: secretpassword
56 # mariadbRootPasswordExternalSecret: some secret
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-vnfmgr
BorislavG1ffbd992018-04-24 07:56:27 +000080 portName: vfc-vnfmgr
Mike Elliott6ba69cd2018-04-03 16:37:06 -040081 externalPort: 8803
82 internalPort: 8803
83# nodePort: 30803
84
85ingress:
86 enabled: false
87
GregSulek5fb3bc62018-09-20 08:51:37 -040088# Configure resource requests and limits
89resources:
90 small:
91 limits:
92 cpu: 200m
93 memory: 500Mi
94 requests:
95 cpu: 100m
96 memory: 250Mi
97 large:
98 limits:
99 cpu: 400m
100 memory: 1000Mi
101 requests:
102 cpu: 200m
103 memory: 500Mi
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +0100104 unlimited: {}