Update APPC OOM helm chart for Beijing release
[oom.git] / kubernetes / appc / charts / appc-cdt / values.yaml
1 #################################################################
2 # Global configuration defaults.
3 #################################################################
4 global:
5   nodePortPrefix: 302
6
7 #################################################################
8 # Application configuration defaults.
9 #################################################################
10 # application image
11 repository: nexus3.onap.org:10001
12 image: onap/appc-cdt-image:1.3.0
13 pullPolicy: Always
14
15 # application configuration
16 config: {}
17
18 # default number of instances
19 replicaCount: 1
20
21 nodeSelector: {}
22
23 affinity: {}
24
25 # probe configuration parameters
26 liveness:
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
33 readiness:
34   initialDelaySeconds: 10
35   periodSeconds: 10
36
37 service:
38   type: NodePort
39   name: appc-cdt
40   externalPort: 80
41   internalPort: 80
42   nodePort: 89
43
44 ingress:
45   enabled: false
46
47 resources: {}
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