blob: 23f8eea78ec046d6364ec69a02909939113680c2 [file] [log] [blame]
Mike Elliott13fed112018-02-28 08:33:33 -05001# Global configuration default values that can be inherited by
2# all subcharts.
3#################################################################
4global:
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 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
12
13 # readiness check
14 readinessRepository: oomk8s
15 readinessImage: readiness-check:1.0.0
16
17 # logging agent
18 loggingRepository: docker.elastic.co
19 loggingImage: beats/filebeat:5.5.0
20
21 # image pull policy
22 pullPolicy: Always
23
24 # default mount path root directory referenced
25 # by persistent volumes and log files
26 persistence:
27 mountPath: /dockerdata-nfs
28
29 # flag to enable debugging - application support required
30 debugEnabled: true
31
32#################################################################
33# Application configuration defaults.
34#################################################################
35# application image
36repository: nexus3.onap.org:10001
37image: onap/ccsdk-dgbuilder-image:v0.1.0
38pullPolicy: Always
39
40# flag to enable debugging - application support required
41debugEnabled: false
42
43# application configuration
44config:
45 dbRootPassword: openECOMP1.0
46
47# default number of instances
48replicaCount: 1
49
50nodeSelector: {}
51
52affinity: {}
53
54# probe configuration parameters
55liveness:
56 initialDelaySeconds: 10
57 periodSeconds: 10
58 # necessary to disable liveness probe when setting breakpoints
59 # in debugger so K8s doesn't restart unresponsive container
60 enabled: true
61
62readiness:
63 initialDelaySeconds: 10
64 periodSeconds: 10
65
66service:
67 type: NodePort
68 name: dgbuilder
69 externalPort: 3000
70 internalPort: 3100
71 nodePort: 28
72
73ingress:
74 enabled: false
75
76resources: {}
77 # We usually recommend not to specify default resources and to leave this as a conscious
78 # choice for the user. This also increases chances charts run on environments with little
79 # resources, such as Minikube. If you do want to specify resources, uncomment the following
80 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
81 #
82 # Example:
83 # Configure resource requests and limits
84 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
85 # Minimum memory for development is 2 CPU cores and 4GB memory
86 # Minimum memory for production is 4 CPU cores and 8GB memory
87#resources:
88# limits:
89# cpu: 2
90# memory: 4Gi
91# requests:
92# cpu: 2
93# memory: 4Gi