Merge "make sdnctl user db password configurable for SDNC"
[oom.git] / kubernetes / common / dgbuilder / values.yaml
1 # Global configuration default values that can be inherited by
2 # all subcharts.
3 #################################################################
4 global:
5   # Change to an unused port prefix range to prevent port conflicts
6   # with other instances running within the same k8s cluster
7   nodePortPrefix: 302
8
9   # image repositories
10   repository: nexus3.onap.org:10001
11
12   # readiness check
13   readinessRepository: oomk8s
14   readinessImage: readiness-check:2.0.0
15
16   # logging agent
17   loggingRepository: docker.elastic.co
18   loggingImage: beats/filebeat:5.5.0
19
20   # image pull policy
21   pullPolicy: Always
22
23   # default mount path root directory referenced
24   # by persistent volumes and log files
25   persistence:
26     mountPath: /dockerdata-nfs
27
28   # flag to enable debugging - application support required
29   debugEnabled: true
30
31 #################################################################
32 # Application configuration defaults.
33 #################################################################
34 # application image
35 repository: nexus3.onap.org:10001
36 image: onap/ccsdk-dgbuilder-image:0.2.4
37 pullPolicy: Always
38
39 # flag to enable debugging - application support required
40 debugEnabled: false
41
42 # application configuration
43 config:
44   dbRootPassword: openECOMP1.0
45   dbSdnctlPassword: gamma
46   dbPodName: mysql-db
47   dbServiceName: sdnc-dbhost
48   # MD5 hash of dguser password ( default: test123 )
49   dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5
50
51 # default number of instances
52 replicaCount: 1
53
54 nodeSelector: {}
55
56 affinity: {}
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62   # necessary to disable liveness probe when setting breakpoints
63   # in debugger so K8s doesn't restart unresponsive container
64   enabled: true
65
66 readiness:
67   initialDelaySeconds: 10
68   periodSeconds: 10
69
70 service:
71   type: NodePort
72   name: dgbuilder
73   portName: dgbuilder
74   externalPort: 3000
75   internalPort: 3100
76   nodePort: 28
77
78 ingress:
79   enabled: false
80
81 resources: {}
82   # We usually recommend not to specify default resources and to leave this as a conscious
83   # choice for the user. This also increases chances charts run on environments with little
84   # resources, such as Minikube. If you do want to specify resources, uncomment the following
85   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
86   #
87   # Example:
88   # Configure resource requests and limits
89   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
90   # Minimum memory for development is 2 CPU cores and 4GB memory
91   # Minimum memory for production is 4 CPU cores and 8GB memory
92 #resources:
93 #  limits:
94 #    cpu: 2
95 #    memory: 4Gi
96 #  requests:
97 #    cpu: 2
98 #    memory: 4Gi