[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / appc / components / appc-cdt / values.yaml
1 # Copyright © 2018  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24
25 flavor: small
26
27 # application image
28 image: onap/appc-cdt-image:1.7.2
29 pullPolicy: Always
30
31 # application configuration
32 config: {}
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 10
44   periodSeconds: 10
45   # necessary to disable liveness probe when setting breakpoints
46   # in debugger so K8s doesn't restart unresponsive container
47   enabled: true
48
49 readiness:
50   initialDelaySeconds: 10
51   periodSeconds: 10
52
53 service:
54   type: NodePort
55   name: appc-cdt
56   externalPort: 18080
57   internalPort: 18080
58   nodePort: 89
59
60 ingress:
61   enabled: false
62   service:
63     - baseaddr: appccdt
64       name: "appc-cdt"
65       port: 18080
66   config:
67     ssl: "redirect"
68
69 # Configure resource requests and limits
70 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
71 resources:
72   small:
73     limits:
74       cpu: 1
75       memory: 1Gi
76     requests:
77       cpu: 0.5
78       memory: 500Mi
79   large:
80     limits:
81       cpu: 2
82       memory: 2Gi
83     requests:
84       cpu: 1
85       memory: 1Gi
86   unlimited: {}