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