Update to latest SDNC and CCSDK containers
[oom.git] / kubernetes / common / dgbuilder / values.yaml
1 # 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
15 # Global configuration default values that can be inherited by
16 # all subcharts.
17 #################################################################
18 global:
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
25
26   # readiness check
27   readinessRepository: oomk8s
28   readinessImage: readiness-check:2.0.0
29
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
44
45 #################################################################
46 # Application configuration defaults.
47 #################################################################
48 # application image
49 repository: nexus3.onap.org:10001
50 image: onap/ccsdk-dgbuilder-image:0.4.3
51 pullPolicy: Always
52
53 # flag to enable debugging - application support required
54 debugEnabled: false
55
56 # application configuration
57 config:
58   dbRootPassword: openECOMP1.0
59   dbSdnctlPassword: gamma
60   dbPodName: mysql-db
61   dbServiceName: sdnc-dbhost
62   # MD5 hash of dguser password ( default: test123 )
63   dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5
64
65 # default number of instances
66 replicaCount: 1
67
68 nodeSelector: {}
69
70 affinity: {}
71
72 # probe configuration parameters
73 liveness:
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
80 readiness:
81   initialDelaySeconds: 10
82   periodSeconds: 10
83
84 service:
85   type: NodePort
86   name: dgbuilder
87   portName: dgbuilder
88   externalPort: 3000
89   internalPort: 3100
90   nodePort: 28
91
92 ingress:
93   enabled: false
94
95 resources: {}
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