blob: 1d08102ad9ddb1e7f982a33eb47178efc2616e7e [file] [log] [blame]
vaibhavjayasea9aee02018-08-31 06:22:26 +00001# Copyright © 2018 AT&T, 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
Mike Elliott13fed112018-02-28 08:33:33 -050015# Global configuration default values that can be inherited by
16# all subcharts.
17#################################################################
18global:
19 # Change to an unused port prefix range to prevent port conflicts
20 # with other instances running within the same k8s cluster
21 nodePortPrefix: 302
22
23 # image repositories
24 repository: nexus3.onap.org:10001
Mike Elliott13fed112018-02-28 08:33:33 -050025
26 # readiness check
27 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000028 readinessImage: readiness-check:2.0.0
Mike Elliott13fed112018-02-28 08:33:33 -050029
30 # logging agent
31 loggingRepository: docker.elastic.co
32 loggingImage: beats/filebeat:5.5.0
33
34 # image pull policy
35 pullPolicy: Always
36
37 # default mount path root directory referenced
38 # by persistent volumes and log files
39 persistence:
40 mountPath: /dockerdata-nfs
41
42 # flag to enable debugging - application support required
43 debugEnabled: true
jmac4f76af42018-03-28 20:36:47 +000044
Mike Elliott13fed112018-02-28 08:33:33 -050045#################################################################
46# Application configuration defaults.
47#################################################################
48# application image
49repository: nexus3.onap.org:10001
Gary Wu6516dc42019-01-16 17:37:13 -080050image: onap/ccsdk-dgbuilder-image:0.3.3
Mike Elliott13fed112018-02-28 08:33:33 -050051pullPolicy: Always
52
53# flag to enable debugging - application support required
54debugEnabled: false
55
56# application configuration
57config:
58 dbRootPassword: openECOMP1.0
jmac70863e12018-05-16 14:53:03 +000059 dbSdnctlPassword: gamma
jmac4f76af42018-03-28 20:36:47 +000060 dbPodName: mysql-db
61 dbServiceName: sdnc-dbhost
jmac70863e12018-05-16 14:53:03 +000062 # MD5 hash of dguser password ( default: test123 )
63 dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5
Mike Elliott13fed112018-02-28 08:33:33 -050064
65# default number of instances
66replicaCount: 1
67
68nodeSelector: {}
69
70affinity: {}
71
72# probe configuration parameters
73liveness:
74 initialDelaySeconds: 10
75 periodSeconds: 10
76 # necessary to disable liveness probe when setting breakpoints
77 # in debugger so K8s doesn't restart unresponsive container
78 enabled: true
79
80readiness:
81 initialDelaySeconds: 10
82 periodSeconds: 10
83
84service:
85 type: NodePort
86 name: dgbuilder
BorislavG1ffbd992018-04-24 07:56:27 +000087 portName: dgbuilder
Mike Elliott13fed112018-02-28 08:33:33 -050088 externalPort: 3000
89 internalPort: 3100
90 nodePort: 28
91
92ingress:
93 enabled: false
94
95resources: {}
96 # We usually recommend not to specify default resources and to leave this as a conscious
97 # choice for the user. This also increases chances charts run on environments with little
98 # resources, such as Minikube. If you do want to specify resources, uncomment the following
99 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
100 #
101 # Example:
102 # Configure resource requests and limits
103 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
104 # Minimum memory for development is 2 CPU cores and 4GB memory
105 # Minimum memory for production is 4 CPU cores and 8GB memory
106#resources:
107# limits:
108# cpu: 2
109# memory: 4Gi
110# requests:
111# cpu: 2
112# memory: 4Gi