blob: 123098cdd294475a07876f503b4014d66ee7c6e2 [file] [log] [blame]
BorislavG12b61582018-03-28 19:31:32 +03001#################################################################
2# Global configuration defaults.
3#################################################################
4global:
5 nodePortPrefix: 302
BorislavG12b61582018-03-28 19:31:32 +03006
7#################################################################
8# Application configuration defaults.
9#################################################################
10# application image
11repository: nexus3.onap.org:10001
12image: onap/appc-cdt-image:1.3.0-SNAPSHOT-latest
13pullPolicy: Always
14
15# application configuration
16config: {}
17
18# default number of instances
19replicaCount: 1
20
21nodeSelector: {}
22
23affinity: {}
24
25# probe configuration parameters
26liveness:
27 initialDelaySeconds: 10
28 periodSeconds: 10
29 # necessary to disable liveness probe when setting breakpoints
30 # in debugger so K8s doesn't restart unresponsive container
31 enabled: true
32
33readiness:
34 initialDelaySeconds: 10
35 periodSeconds: 10
36
37service:
38 type: NodePort
39 name: appc-cdt
40 externalPort: 80
41 internalPort: 80
42 nodePort: 89
43
44ingress:
45 enabled: false
46
47resources: {}
48 # We usually recommend not to specify default resources and to leave this as a conscious
49 # choice for the user. This also increases chances charts run on environments with little
50 # resources, such as Minikube. If you do want to specify resources, uncomment the following
51 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
52 #
53 # Example:
54 # Configure resource requests and limits
55 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
56 # Minimum memory for development is 2 CPU cores and 4GB memory
57 # Minimum memory for production is 4 CPU cores and 8GB memory
58#resources:
59# limits:
60# cpu: 2
61# memory: 4Gi
62# requests:
63# cpu: 2
64# memory: 4Gi