blob: 7703234a667a4ab13927debb03562f981e82d56a [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# 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
mayankg2703ced85142018-03-20 05:42:53 +000020 persistence: {}
21
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
26repository: nexus3.onap.org:10001
Jorge Hernandezd38b89b2018-05-03 14:08:42 -050027image: mariadb:10.2.14
mayankg2703ced85142018-03-20 05:42:53 +000028pullPolicy: Always
29
30# flag to enable debugging - application support required
31debugEnabled: false
32
33# application configuration
34# Example:
35config:
36 mysqlRootPassword: secret
37 mysqlUserName: policy_user
38 mysqlPassword: policy_user
39# default number of instances
40replicaCount: 1
41
42nodeSelector: {}
43
44affinity: {}
45
46# probe configuration parameters
47liveness:
48 initialDelaySeconds: 10
49 periodSeconds: 10
50 # necessary to disable liveness probe when setting breakpoints
51 # in debugger so K8s doesn't restart unresponsive container
52 enabled: true
53
54readiness:
55 initialDelaySeconds: 10
56 periodSeconds: 10
57
58## Persist data to a persitent volume
59persistence:
60 enabled: true
61 volumeReclaimPolicy: Retain
62 accessMode: ReadWriteMany
63 size: 2Gi
64 mountPath: /dockerdata-nfs
65 mountSubPath: mariadb/data
66
67service:
68 type: ClusterIP
BorislavG1ffbd992018-04-24 07:56:27 +000069 name: policydb
70 portName: policydb
mayankg2703ced85142018-03-20 05:42:53 +000071 internalPort: 3306
72
73ingress:
74 enabled: false
75
76resources: {}